declare type Option = { value: string; text: string; }; interface ISelectProps { name: string; value: string; onChange: (e?: any) => any; options: Option[]; label: string; error?: string; css?: any; } export declare const Select: ({ name, label, value, onChange, options, error, css, }: ISelectProps) => any; export {};