/// import type { SecondaryDropdownProps } from '../@unbounce/ui-components/dropdown/types'; export interface ReadOnlyOption { readonly value: string; readonly label: string; } export interface Props { inputValue: string; options: ReadOnlyOption[]; onUpdate: (value: string) => void; inputId: string; fullWidth?: boolean; label?: string; secondaryDropdownOptions?: SecondaryDropdownProps; } export declare const Dropdown: ({ inputValue, options, onUpdate, fullWidth, inputId, label, secondaryDropdownOptions, }: Props) => JSX.Element;