import { SelectHTMLAttributes, default as React } from 'react'; export interface SelectProps extends SelectHTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Assigns an identifier to link the UISelect component and its label. */ id: string; /** * Defines the options available in the select. The SelectOptions object * keys are the property names, while the values correspond to the text that * will be displayed in the UI. */ options: Record; } declare const Select: React.ForwardRefExoticComponent>; export default Select; //# sourceMappingURL=Select.d.ts.map