import { ReactNode } from 'react'; export type WalletDropdownLinkProps = { children: string; /** Optional className override for the element */ className?: string; href: string; icon?: 'wallet' | ReactNode; rel?: string; target?: string; }; export declare function WalletDropdownLink({ children, className, icon, href, rel, target, }: WalletDropdownLinkProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=WalletDropdownLink.d.ts.map