import React from 'react'; import { ValidatorOptions } from '../validator'; type Option = { value: string; label: string; }; interface SelectProps extends Omit, 'onBlur'> { style?: React.CSSProperties; name: string; options: Option[]; inputRef?: React.RefObject; initialValue?: Option; validatorOptions?: ValidatorOptions; label?: string; placeholder?: string; disabled?: boolean; onBlur?: (e: React.FocusEvent, data: { value: string; label: string; }) => void; } export declare const Select: React.FC; export {};