import { type SelectProps as UISelectProps, SelectItem } from '@utima/ui'; import { type NamedExoticComponent, type ReactNode } from 'react'; import { type ConsumeFormControlProps } from '../../formControl/FormControl'; export interface SelectProps extends ConsumeFormControlProps { renderValue?: (value: unknown) => ReactNode; } interface SelectComponent extends NamedExoticComponent { Item: typeof SelectItem; } /** * Select component that is controlled by Informed. It is a wrapped in the * `FormControl` component, which provides the necessary props for Informed to * work along with label and error message handling. */ export declare const Select: SelectComponent; export {}; //# sourceMappingURL=Select.d.ts.map