import { GridStateCommunity } from '../../../models/gridStateCommunity'; /** * @category Pagination * @ignore - do not document. */ export declare const gridPaginationSelector: (state: GridStateCommunity) => import("./gridPaginationInterfaces").GridPaginationState; /** * Get the index of the page to render if the pagination is enabled * @category Pagination */ export declare const gridPageSelector: import("../../../utils/createSelector").OutputSelector; /** * Get the maximum amount of rows to display on a single page if the pagination is enabled * @category Pagination */ export declare const gridPageSizeSelector: import("../../../utils/createSelector").OutputSelector; /** * Get the amount of pages needed to display all the rows if the pagination is enabled * @category Pagination */ export declare const gridPageCountSelector: import("../../../utils/createSelector").OutputSelector; /** * Get the index of the first and the last row to include in the current page if the pagination is enabled. * @category Pagination */ export declare const gridPaginationRowRangeSelector: import("../../../utils/createSelector").OutputSelector; /** * Get the id and the model of each row to include in the current page if the pagination is enabled. * @category Pagination */ export declare const gridPaginatedVisibleSortedGridRowEntriesSelector: import("../../../utils/createSelector").OutputSelector; /** * Get the id of each row to include in the current page if the pagination is enabled. * @category Pagination */ export declare const gridPaginatedVisibleSortedGridRowIdsSelector: import("../../../utils/createSelector").OutputSelector;