import { GridStateCommunity } from '../../../models/gridStateCommunity'; /** * @category Pagination * @ignore - do not document. */ export declare const gridPaginationSelector: (state: GridStateCommunity) => import("./gridPaginationInterfaces").GridPaginationState; /** * Get the pagination model * @category Pagination */ export declare const gridPaginationModelSelector: import("../../..").OutputSelector; /** * Get the row count * @category Pagination */ export declare const gridPaginationRowCountSelector: import("../../..").OutputSelector; /** * Get the pagination meta * @category Pagination */ export declare const gridPaginationMetaSelector: import("../../..").OutputSelector; /** * Get the index of the page to render if the pagination is enabled * @category Pagination */ export declare const gridPageSelector: import("../../..").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("../../..").OutputSelector; /** * Get the amount of pages needed to display all the rows if the pagination is enabled * @category Pagination */ export declare const gridPageCountSelector: import("../../..").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("../../..").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("../../..").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("../../..").OutputSelector;