/// export interface PaginationProps { [key: string]: any; /** The total number of pages. */ count?: number; /** If true, the pagination component will be disabled. */ disabled?: boolean; /** Callback fired when the page is changed. */ onChange?: (page: number) => void; /** The current page. */ page?: number; /** * Used to locate this view in end-to-end tests. */ testID?: string; } /** * Default props for Pagination component */ export declare const PaginationDefaultProps: { count: number; disabled: boolean; page: number; }; /** * 📑 The Pagination component enables the user to select a specific * page from a range of pages. * * ## Usage * ```jsx * * ``` */ export declare const Pagination: import("react").ComponentType;