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