import type { CommonInputProps } from '../types'; export declare type DropdownOption = { label: string; value: string; }; export interface DropdownProps extends CommonInputProps { autoComplete?: HTMLSelectElement['autocomplete']; defaultValue?: string; onBlur?: () => void; onChange?: (value: string) => void; onFocus?: () => void; options: DropdownOption[]; value?: string; }