import { CustomerFilterKeys } from "../../../shared/graphql/graphql"; type Props = { skip?: boolean; first?: number; query?: string | null; filterKeys?: CustomerFilterKeys | null; }; export declare const useCustomers: (props?: Props) => { customers: { __typename: "Customer"; _id?: string | null; first_name?: string | null; last_name?: string | null; email?: { __typename: "CustomerEmail"; address?: string | null; } | null; }[] | undefined; pageInfo: { __typename: "PageInfo"; endCursor?: string | null; hasNextPage?: boolean | null; hasPreviousPage?: boolean | null; startCursor?: string | null; } | null | undefined; isLoadingCustomers: boolean; error: import("@apollo/client").ErrorLike | undefined; fetchMoreCustomers: () => void; }; export {};