declare const isFullWallet: (obj: unknown) => obj is {
    id: any;
    name: any;
    icon: any;
    version: any;
    request: any;
    on: any;
    off: any;
};
declare const isVirtualWallet: (obj: unknown) => obj is {
    id: any;
    name: any;
    icon: any;
    windowKey: any;
    loadWallet: any;
    hasSupport: any;
};
declare function isWalletObject(wallet: unknown): boolean;
export { isVirtualWallet, isFullWallet, isWalletObject };
