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 } * ]; * *