/// type WalletDetailsCardProps = { /** String representation of a wallet address */ address: string; /** Whether the overview should be open or closed */ open: boolean; /** Callback when the overlay is closed */ onClose: VoidFunction; }; /** Component for wallet detail overlays */ export declare const WalletDetailsCard: ({ address, open, onClose, }: WalletDetailsCardProps) => JSX.Element; export {};