import { VariantFilterKeys } from "../../../shared/graphql/graphql"; type Props = { skip?: boolean; first?: number; query?: string | null; filterKeys?: VariantFilterKeys; }; export declare const useVariants: (props?: Props) => { variants: { __typename: "Variant"; _id?: string | null; option1?: string | null; option2?: string | null; option3?: string | null; image?: { __typename: "Media"; _id?: string | null; url?: string | null; } | null; product?: { __typename: "Product"; _id?: string | null; title?: string | null; } | null; }[] | undefined; pageInfo: { __typename: "PageInfo"; endCursor?: string | null; hasNextPage?: boolean | null; hasPreviousPage?: boolean | null; startCursor?: string | null; } | null | undefined; isLoadingVariants: boolean; error: import("@apollo/client").ErrorLike | undefined; fetchMoreVariants: () => void; }; export {};