import type { EncryptedBlob } from "./crypto.js"; export declare const VAULT_VERSION: 1; export type EncryptedWalletEntry = { address: string; evm_private_key: EncryptedBlob; label?: string; created_at: string; }; export type VaultFile = { version: typeof VAULT_VERSION; wallet: EncryptedWalletEntry | null; }; export type WalletSummary = { address: string; label?: string; }; //# sourceMappingURL=types.d.ts.map