export type WalletProps = { children?: React.ReactNode; /** Whether to sponsor transactions for Send feature of advanced wallet implementation */ isSponsored?: boolean; className?: string; } & ({ draggable?: true; draggableStartingPosition?: { x: number; y: number; }; } | { draggable?: false; draggableStartingPosition?: never; }); export declare function Wallet({ children, className, draggable, draggableStartingPosition, isSponsored, }: WalletProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Wallet.d.ts.map