import type { PropsWithChildren } from 'react';
export interface WalletMenuProps {
    open: boolean;
    onClose: () => void;
}
export declare const WalletMenuModal: React.FC<PropsWithChildren<WalletMenuProps>>;
