import { SelectProps } from './Select.types';
/**
* Select component - Accessible dropdown select using Headless UI
*
* @example
* ```tsx
* const options = [
* { value: '1', label: 'Option 1' },
* { value: '2', label: 'Option 2' },
* { value: '3', label: 'Option 3', disabled: true }
* ];
*
*
* ```
*/
export declare const Select: import('react').ForwardRefExoticComponent>;
export default Select;
//# sourceMappingURL=Select.d.ts.map