import { GridApi } from 'ag-grid-enterprise'; /** * Returns the number of selected rows in the grid. * @param gridApi - The grid API. * @returns The number of selected rows. */ export declare function getSelectedRowsCount(gridApi: GridApi): number; /** * Selects all rows in the grid. * @param gridApi - The grid API. */ export declare function selectAll(gridApi: GridApi): void; /** * Deselects all rows in the grid. * @param gridApi - The grid API. */ export declare function deselectAll(gridApi: GridApi): void; /** * Returns the total number of rows in the grid. * @param gridApi - The grid API. * @returns The total number of rows. */ export declare function getTotalRowsCount(gridApi: GridApi): number; /** * Returns true if selection is enabled in the grid. * @param gridApi - The grid API. * @returns True if selection is enabled. */ export declare function isSelectionEnabled(gridApi: GridApi): boolean; //# sourceMappingURL=selection.d.ts.map