import * as React from 'react'; interface TablePaginationProps { className?: string; style?: React.CSSProperties; total: number; pagination?: { page: number; pageSize?: number; }; isShowSetPageSize?: boolean; isShowDivider?: boolean; isShowTotalCount?: boolean; isShowPagination?: boolean; autoResetPageIndex?: boolean; onChange?: (pagination: { page: number; pageSize: number; }) => void; } export declare const Pagination: ({ className, style, total, autoResetPageIndex, pagination: { page, pageSize }, onChange: onChangeProp, isShowSetPageSize, isShowDivider, isShowTotalCount, isShowPagination, }: TablePaginationProps) => React.JSX.Element; export type { TablePaginationProps }; //# sourceMappingURL=Pagination.d.ts.map