import * as React from "react"; import { InputProps } from "../../../types"; export interface UserData { walletName: string; walletAddress: string; networkName: string; networkIcon: string; currencyName: string; currencySymbol: string; currencyIcon: string; } export interface DropdownSearchProps extends InputProps { onOptionSelected(option: UserData): void; addWalletSelected(): void; options?: UserData[]; title?: string; buttonLabel?: string; placeholder?: string; } declare const DropdownWalletSearch: ({ options, onOptionSelected, addWalletSelected, title, placeholder, ...inputProps }: DropdownSearchProps) => React.ReactElement | null; export default DropdownWalletSearch;