import { type FormControlProps } from './FormControl.js';
import { type IconicTypes } from '../../atoms/Icons';
import { type SelectHTMLAttributes } from 'react';
export interface SelectProps<Value> extends FormControlProps<Value, SelectHTMLAttributes<HTMLSelectElement>> {
    description?: string;
    iconType?: IconicTypes;
    errorMessage?: string;
    dataTestId?: string;
}
export declare const Select: <Value = string>(props: SelectProps<Value>) => import("react/jsx-runtime").JSX.Element;
