import type { FC, DetailedHTMLProps, HTMLAttributes } from 'react';
import type { PaginationVariant } from '../../components/pagination/pharos-pagination';
export interface PharosPaginationProps extends DetailedHTMLProps, HTMLElement> {
/**
* Indicates the total number of results.
*/
totalResults?: number;
/**
* Indicates the maximum number of results on a page.
*/
pageSize?: number;
/**
* Indicates the current page number.
*/
currentPage?: number;
/**
* Indicates the pagination variant.
*/
variant?: PaginationVariant;
}
export declare const PharosPagination: FC;
//# sourceMappingURL=pharos-pagination.d.ts.map