import type { PaginationProps as PaginationUiComponentProps } from '../ui/Pagination'; import type { UsePaginationProps } from 'react-instantsearch-hooks'; declare type UiProps = Pick; export declare type PaginationProps = Omit & UsePaginationProps; export declare function Pagination({ showFirst, showPrevious, showNext, showLast, padding, totalPages, ...props }: PaginationProps): JSX.Element; export {};