import { default as React } from 'react'; import { WalletMenuProps } from '../WalletMenu'; export interface BtcEthWalletMenuProps extends Omit { /** Whether inscriptions/ordinals are excluded */ ordinalsExcluded: boolean; /** Handler for including ordinals */ onIncludeOrdinals: () => void; /** Handler for excluding ordinals */ onExcludeOrdinals: () => void; /** Bitcoin public key (no coordinates) */ publicKeyNoCoord: string; /** * Show the "Using Inscriptions" toggle. Defaults to true. Pass false to hide * it when the connected wallet has no inscription UTXOs, so users without * Ordinals/Runes aren't shown a control that does nothing. */ showInscriptionsToggle?: boolean; } /** * BtcEthWalletMenu - Wallet menu preset for Vault (BTC + ETH) * * Features: * - BTC wallet card * - ETH wallet card * - Using Inscriptions toggle * - Bitcoin Public Key display * * Does NOT include: * - Linked Wallet Stakes toggle */ export declare const BtcEthWalletMenu: React.FC;