import { FC } from 'react'; export declare const InputSelect: FC<{ value?: string; change?: (value?: string) => void; filter?: (value: string) => void; placeholder?: string; options?: Array<{ value: string; label: string; helper?: string; }>; }>;