/// declare type Option = { value: number | string; label: string; }; interface Props { name: string; label?: string; placeholder?: string; options: Option[]; returnType?: 'key' | 'option'; menuPlacement?: 'top' | 'bottom' | 'auto'; onChange?: (options: Option[]) => void; } declare type SelectProps = JSX.IntrinsicElements['input'] & Props; export declare function SelectMulti({ name, label, disabled, options, placeholder, returnType, menuPlacement, onChange, }: SelectProps): JSX.Element; export {};