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