import { PageFilterKeys } from "../../../shared/graphql/graphql"; type Props = { skip?: boolean; first?: number; query?: string | null; filterKeys?: PageFilterKeys; }; export declare const usePages: (props?: Props) => { pages: { __typename: "Page"; _id?: string | null; title?: string | null; image?: { __typename: "Media"; _id?: string | null; url?: string | null; } | null; }[] | undefined; isLoadingPages: boolean; error: import("@apollo/client").ErrorLike | undefined; fetchMorePages: () => void; pageInfo: { __typename: "PageInfo"; endCursor?: string | null; hasNextPage?: boolean | null; hasPreviousPage?: boolean | null; startCursor?: string | null; } | null | undefined; }; export {};