import Tabular from '../../tabular'; import { PipelineProcessor, PipelineProcessorProps, ProcessorType } from '../processor'; import { OneDArray, TCell, TColumn } from '../../types'; interface GlobalSearchFilterProps extends PipelineProcessorProps { keyword: string; columns: OneDArray; ignoreHiddenColumns: boolean; selector?: (cell: TCell, rowIndex: number, cellIndex: number) => string; } declare class GlobalSearchFilter extends PipelineProcessor { get type(): ProcessorType; _process(data: Tabular): Tabular; } export default GlobalSearchFilter;