import { As, Options, Props } from "ariakit-utils/types"; import { PaginationState } from "./pagination-state"; export declare const usePaginationButton: import("ariakit-utils").Hook>; export declare const PaginationButton: import("ariakit-utils").Component>; export declare type Goto = "nextPage" | "prevPage" | "lastPage" | "firstPage" | number; export declare type PaginationButtonOptions = Options & { /** * Object returned by the `usePaginationButtonState` hook. */ state?: PaginationState; goto: Goto; }; export declare type PaginationButtonProps = Props>;