import { FC } from 'react'; import '../index.less'; interface DropdownHeadProps { defaultActiveKey?: string; onSearch: (val?: string) => void; onTabChange: (key: 'loop' | 'customFunction') => void; onRefresh: (val?: string) => Promise; } declare const Head: FC; export default Head;