/// export declare type DropdownOption = { name: string; value: string; }; declare type Props = { label: string; name: string; horizontal?: boolean; value?: string; onChange?: (_: any) => void; error?: string; required?: boolean; options: DropdownOption[]; }; export default function DropdownSelect({ label, name, horizontal, value, onChange, error, required, options, }: Props): JSX.Element; export {};