import { FormControlProps } from './FormControl';
import { IconicTypes } from '@clubmed/trident-icons';
import { 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;
