/// interface TransactionDropdownProps { defaultValue: string; label: string; onChange: (value: string) => void; options: Array<{ label: string; value: string; }>; } export default function Dropdown2({ defaultValue, label, onChange, options }: TransactionDropdownProps): import("react").JSX.Element; export {};