///
import { type PaginationProps } from '../Pagination';
export type DataGridPaginationProps = Omit & {
/**
* Количество всех записей
*/
totalCount: number;
/**
* Текущая страница
*/
page: number;
/**
* Максимальное количество записей на страницу
*/
rowsPerPage?: number;
/**
* Конфигурация списка кол-ва элементов, отображаемых на одной странице
*/
rowsPerPageOptions?: number[];
isForceCounter?: boolean;
/**
* Коллбэк для установки количества отображаемых элементов на странице
*/
onSetCountPerPage?: (rowsPerPage: number) => void;
};
export declare const DataGridPagination: (props: DataGridPaginationProps) => JSX.Element | null;