import { ReactNode } from 'react'; export type WalletDropdownFundLinkProps = { /** Optional className override for the element */ className?: string; /** Optional icon override */ icon?: ReactNode; /** Whether to open the funding flow in a tab or a popup window */ openIn?: 'popup' | 'tab'; /** * Note: popupSize is only respected when providing your own funding link, or when a Coinbase Smart Wallet is * connected. For any other wallet popupSize will be ignored as the Coinbase Onramp widget requires a fixed size * popup window. */ popupSize?: 'sm' | 'md' | 'lg'; /** Specifies the relationship between the current document and the linked document */ rel?: string; /** Where to open the target if `openIn` is set to tab */ target?: string; /** Optional text override */ text?: string; /** Optional funding URL override */ fundingUrl?: string; }; export declare function WalletDropdownFundLink({ className, fundingUrl, icon, openIn, popupSize, rel, target, text, }: WalletDropdownFundLinkProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=WalletDropdownFundLink.d.ts.map