import { GridRowId } from '../../../models/gridRows'; import { GridFilterItem } from '../../../models/gridFilterItem'; import { GridStateCommunity } from '../../../models/gridStateCommunity'; /** * Get the current filter model. * @category Filtering */ export declare const gridFilterModelSelector: import("../../..").OutputSelector; /** * Get the current quick filter values. * @category Filtering */ export declare const gridQuickFilterValuesSelector: import("../../..").OutputSelector; /** * @category Visible rows * @ignore - do not document. */ export declare const gridVisibleRowsLookupSelector: (state: GridStateCommunity) => import("./gridFilterState").GridVisibleRowsLookupState; /** * @category Filtering * @ignore - do not document. */ export declare const gridFilteredRowsLookupSelector: import("../../..").OutputSelector>; /** * @category Filtering * @ignore - do not document. */ export declare const gridFilteredChildrenCountLookupSelector: import("../../..").OutputSelector>; /** * @category Filtering * @ignore - do not document. */ export declare const gridFilteredDescendantCountLookupSelector: import("../../..").OutputSelector>; /** * Get the id and the model of the rows accessible after the filtering process. * Does not contain the collapsed children. * @category Filtering */ export declare const gridExpandedSortedRowEntriesSelector: import("../../..").OutputSelector[]>; /** * Get the id of the rows accessible after the filtering process. * Does not contain the collapsed children. * @category Filtering */ export declare const gridExpandedSortedRowIdsSelector: import("../../..").OutputSelector; /** * Get the id and the model of the rows accessible after the filtering process. * Contains the collapsed children. * @category Filtering */ export declare const gridFilteredSortedRowEntriesSelector: import("../../..").OutputSelector[]>; /** * Get the id of the rows accessible after the filtering process. * Contains the collapsed children. * @category Filtering */ export declare const gridFilteredSortedRowIdsSelector: import("../../..").OutputSelector; /** * Get the ids to position in the current tree level lookup of the rows accessible after the filtering process. * Does not contain the collapsed children. * @category Filtering * @ignore - do not document. */ export declare const gridExpandedSortedRowTreeLevelPositionLookupSelector: import("../../..").OutputSelector>; /** * Get the id and the model of the top level rows accessible after the filtering process. * @category Filtering */ export declare const gridFilteredSortedTopLevelRowEntriesSelector: import("../../..").OutputSelector[]>; /** * Get the amount of rows accessible after the filtering process. * @category Filtering */ export declare const gridExpandedRowCountSelector: import("../../..").OutputSelector; /** * Get the amount of top level rows accessible after the filtering process. * @category Filtering */ export declare const gridFilteredTopLevelRowCountSelector: import("../../..").OutputSelector; /** * Get the amount of rows accessible after the filtering process. * Includes top level and descendant rows. * @category Filtering */ export declare const gridFilteredRowCountSelector: import("../../..").OutputSelector; /** * Get the amount of descendant rows accessible after the filtering process. * @category Filtering */ export declare const gridFilteredDescendantRowCountSelector: import("../../..").OutputSelector; /** * @category Filtering * @ignore - do not document. */ export declare const gridFilterActiveItemsSelector: import("../../..").OutputSelector; export type GridFilterActiveItemsLookup = { [field: string]: GridFilterItem[]; }; /** * @category Filtering * @ignore - do not document. */ export declare const gridFilterActiveItemsLookupSelector: import("../../..").OutputSelector;