import { FC, HTMLProps, SelectHTMLAttributes } from "react"; export interface IOption { value: string; label: string; } export interface SelectProps extends HTMLProps> { options: IOption[]; errors?: string[]; helperText?: string[]; label: any; } export declare const Select: FC; export default Select;