import { TokenData } from "@0xsquid/sdk"; import type { ButtonHTMLAttributes } from "react"; interface Props extends ButtonHTMLAttributes { iconUrl?: string; label: string; } export declare const DropdownBtn: ({ iconUrl, label, ...props }: Props) => JSX.Element; export declare const TokenAndChainDropdown: ({ token, ...props }: { token?: TokenData | undefined; disabled: boolean; } & ButtonHTMLAttributes) => JSX.Element; export {};