export interface ParsedVaultHomeMesh { vaultRid: string; meshRid: string; meshName: string; assignedAt: string; } export interface ParsedVaultYon { rid: string; name: string; desc: string | null; parentVault: string | null; shareWith: string[]; acceptsFrom: string[]; tierHint: string | null; memscopeRid: string | null; createdAt: string | null; version: string | null; gitUrl: string | null; primaryOwner: string | null; lifecycle: string | null; topics: string[]; agentTemplateVersion: number | null; templateVersion: number | null; contractVersion: number | null; frozenAt: string | null; frozenUntil: string | null; homeMesh: ParsedVaultHomeMesh | null; } export declare function parseVaultYon(content: string): ParsedVaultYon; //# sourceMappingURL=parse.d.ts.map