import { FC } from "react"; interface LabelSelectProps { onChange?: (value: any) => void; prefix?: string; options: any[]; value?: string[]; isMulti?: boolean; } declare const LabelSelect: FC; export default LabelSelect;