export declare type IkasSalesChannel = { id: string; name: string; priceListId: string | null; stockLocations: IkasSalesChannelStockLocation[] | null; paymentGateways: IkasSalesChannelPaymentGateway[] | null; }; export declare type IkasSalesChannelStockLocation = { id: string; order: number; }; export declare type IkasSalesChannelPaymentGateway = { id: string; order: number; };