export declare class PosStore {
    id: number;
    branch_id: number;
    code: string;
    name: string;
    address: string;
    phone: string;
    timezone: string;
    currency: string;
    region_code: string;
    store_type: string;
    manager_user_id: number;
    default_inventory_location_id: number;
    default_price_book_id: number;
    allow_offline_sales: number;
    max_offline_days: number;
    status: string;
    business_hours_json: Record<string, unknown> | null;
    contact_json: Record<string, unknown> | null;
    created_at: Date;
    updated_at: Date;
}
