import IAddress from '../Address'; export default interface IStore { readonly id?: string; readonly personnal_id?: string; readonly store_num?: string; readonly type: StoreTypeEnum; readonly name: string; readonly can_ship: boolean; readonly can_sell_online: boolean; readonly is_pickup_point?: boolean; readonly show_on_contact?: boolean; readonly no_inventory_for_store?: boolean; readonly hide_inventory_on_website?: boolean; readonly order?: number; readonly address: IAddress; readonly phone: string; readonly store_customer_id?: string; readonly email?: string; readonly position?: { readonly lat: number; readonly lng: number; }; readonly tax_numbers?: { tax_family_id: string; tax_label_fr: string; tax_number: string; }[]; readonly allow_immediate_pickup?: boolean; readonly payment_ref_is_mandatory?: boolean; readonly payment_shortcuts?: { display_text: string; url: string; }[]; readonly is_default_pos_store?: boolean; } export declare enum StoreTypeEnum { STORE = "store", WAREHOUSE = "warehouse" } export declare const getDefaultStore: () => { id: string; type: StoreTypeEnum; name: string; can_ship: boolean; can_sell_online: boolean; is_pickup_point: boolean; show_on_contact: boolean; address: { id: string; name: string; line1: string; line2: string; city: string; state: string; postal_code: string; country: string; }; phone: string; email: string; allow_immediate_pickup: boolean; payment_ref_is_mandatory: boolean; payment_shortcuts: never[]; };