export type SelectOption = { value: string; label: string; }; export interface DropdownProps { hasError?: boolean; options?: SelectOption[]; label?: string; filter?: boolean; value?: string; fieldValue?: string; disabled?: boolean; onChange?: (value: string | null) => void; onSelect?: (selected: SelectOption | null) => void; } export declare const Dropdown: ({ hasError, options, value, label, filter, onChange, onSelect, disabled }: DropdownProps) => JSX.Element;