import type { CustomerInfos } from '../types'; export interface UseCustomerInfosOptions { customerId?: string | null; enabled?: boolean; } export interface UseCustomerInfosResult { data: CustomerInfos | null; isLoading: boolean; error: Error | null; refetch: () => Promise; } /** * useCustomerInfos - Fetches customer infos from `/api/v1/customers/{customerId}` with `storeId` param */ export declare function useCustomerInfos(options: UseCustomerInfosOptions): UseCustomerInfosResult;