import { FilteringConfig, TableConfig } from '../types/table-config.type'; import { ColumnConfig, ObjectForExtending } from '../types'; export declare function inputStopPropagation(event: React.KeyboardEvent): void; export declare function selectStopPropagation(event: React.KeyboardEvent): void; export declare function getClearedFilters(filtering?: FilteringConfig): T | undefined; export type HasFiltersParams = { tableConfig: TableConfig; columnConfig: readonly ColumnConfig[]; }; export declare const isHasFilters: (params: HasFiltersParams) => boolean;