/** * Returns a navigate callback that updates the `?page=` query param while * preserving every other search param. Used as the default `navigate` * for Pagination when the consumer doesn't pass one explicitly. * * Mirrors v1 neeto-ui Pagination's auto URL sync behavior. Must be * rendered inside a react-router-dom v5 history context. */ export declare const usePaginationQueryParams: () => { updatePageInQueryParam: (page: number) => void; };