interface GetCustomerListsParams { with_cup_count_flag?: number; search?: string; skip?: number; num?: number; goal_shop_id?: number; order_by?: string; sort?: 'asc' | 'desc'; } export declare const useCustomerListsApi: () => { loading: boolean; data: any; run: (params: GetCustomerListsParams) => Promise; }; export {};