import { OptionHTMLAttributes, SelectHTMLAttributes } from 'react';
export interface SelectProps extends SelectHTMLAttributes {
busy?: boolean;
invalid?: boolean;
/**
* `noscript`: Don't let it affect CSS :invalid
*/
noscript?: boolean;
}
export declare const Select: import("react").ForwardRefExoticComponent>;
export interface SelectOptionProps extends OptionHTMLAttributes {
disabled?: boolean;
invalid?: boolean;
value?: string;
}
export declare const SelectOption: import("react").ForwardRefExoticComponent>;
//# sourceMappingURL=Select.d.ts.map