import React from 'react'; import './index.less'; interface ColSearchListProps { checkable?: boolean; colData: any[]; onClickItem?: (col: any, index?: number) => void; isActive?: (col: any) => boolean; isDisabled?: (col: any) => boolean; rowKey?: string; labelKey?: string; codeKey?: string; title?: string; onChecked?: (col: any, checked: boolean, index?: number) => void; placeholder?: string; } declare const ColSearchListRef: React.ForwardRefExoticComponent>; export default ColSearchListRef;