import { SelectHTMLAttributes } from 'react';
export type SelectOption = {
    value: string;
    label: string;
    disabled?: boolean;
};
export type SelectProps = SelectHTMLAttributes<HTMLSelectElement> & {
    options?: SelectOption[];
    placeholder?: string;
};
export declare const Select: import('react').ForwardRefExoticComponent<SelectHTMLAttributes<HTMLSelectElement> & {
    options?: SelectOption[];
    placeholder?: string;
} & import('react').RefAttributes<HTMLSelectElement>>;
//# sourceMappingURL=select.d.ts.map