import { FC, ReactNode } from 'react'; export declare const InputSelectMany: FC<{ value?: string[]; change?: (value: string[]) => void; options?: Array<{ value: string; icon?: string; prefix?: string; label: string; helper?: string; }>; }>; export declare const Container: FC<{ children: ReactNode; }>;