import { CollectionFilterKeys } from "../../../shared/graphql/graphql"; type Props = { skip?: boolean; query?: string | null; filterKeys?: CollectionFilterKeys; }; export declare const useCollections: (props?: Props) => { collections: { __typename: "Collection"; _id?: string | null; title?: string | null; image?: { __typename: "Media"; _id?: string | null; url?: string | null; } | null; }[] | undefined; pageInfo: { __typename: "PageInfo"; endCursor?: string | null; hasNextPage?: boolean | null; hasPreviousPage?: boolean | null; startCursor?: string | null; } | null | undefined; isLoadingCollections: boolean; error: import("@apollo/client").ErrorLike | undefined; fetchMoreCollections: () => void; }; export {};