import { FC } from 'react'; import './index.less'; interface Props { onChange?(value: string): void; defaultActiveKey?: string; hostTabKeys: { key: string; text: string; }[]; } declare const HostPick: FC; export default HostPick;