import React from 'react'; export interface SelectProps extends React.ComponentPropsWithRef<'select'> { /** * Defines the color of the select */ valid?: boolean; } declare const Select: React.ForwardRefExoticComponent & React.RefAttributes>; export default Select; //# sourceMappingURL=Select.d.ts.map