export declare interface FwDropdownOption { label: string; value: string; image_url?: string; description?: string; } export declare interface FwDropdownProps { name: string; label?: string; rules?: string | Record | (() => boolean); options: FwDropdownOption[]; hint?: string; placeholder?: string; enableErrors?: boolean; required?: boolean; }