import React from 'react'; import { IColumnTypes } from '../common-table/index.type'; export interface ICommonSearch { columns: IColumnTypes[]; onSearch?: (e: any) => void; onSearchFailed?: (e: any) => void; onReset?: (e: any) => void; colCount?: number; initialSearchValues?: Record; tools?: React.ReactNode[]; operations?: React.ReactNode[]; searchCollapsedThreshold?: number; }