import { As, Options, Props } from "ariakit-utils/types"; import { PaginationState } from "./pagination-state"; export declare const usePagination: import("ariakit-utils").Hook>; export declare const Pagination: import("ariakit-utils").Component>; export declare type PaginationOptions = Options & { /** * Object returned by the `usePaginationState` hook. */ state: PaginationState; }; export declare type PaginationProps = Props>;