interface IGetProductsParams { schedule_date?: string; customer_id?: number; menu_list_ids?: number[]; schedule_datetime?: string; } interface IGetScheduleTimePointsParams { menu_list_ids?: number[]; } export declare const useProducts: (notAvailableRef: any) => { getScheduleTimePoints: (this: unknown, params?: IGetScheduleTimePointsParams | undefined) => Promise; getProducts: (this: unknown, params?: IGetProductsParams | undefined) => Promise; products: any[]; loading: boolean; }; export {};