import { type QueryKey, type UseQueryOptions, type UseQueryResult } from "@tanstack/react-query"; /** * Query wrapper for paginated lists (put the page params in the query key): * while the next page loads, the previous page's data stays on screen as * placeholder data (`isPlaceholderData` is true) instead of flashing a * loading state. */ export declare function usePaginatedQueryPipeline(options: UseQueryOptions): UseQueryResult; //# sourceMappingURL=usePaginatedQueryPipeline.d.ts.map