import type { FragmentReference } from "./types"; import type { RefetchFn, Disposable, RefetchOptions } from "./useCompiledRefetchableFragment"; import type { CompiledArtefactModule } from "@graphitation/apollo-react-relay-duct-tape-compiler"; export type PaginationFn = (count: number, options?: RefetchOptions) => Disposable; export declare function useCompiledPaginationFragment(documents: CompiledArtefactModule, fragmentReference: FragmentReference): { data: any; loadNext: PaginationFn; loadPrevious: PaginationFn; hasNext: boolean; hasPrevious: boolean; isLoadingNext: boolean; isLoadingPrevious: boolean; refetch: RefetchFn; }; //# sourceMappingURL=useCompiledPaginationFragment.d.ts.map