export type MeshPushKind = "handle" | "org"; export interface MeshRecord { rid: Uint8Array; name: string; pushTarget?: string | undefined; pushKind?: MeshPushKind | undefined; mainVaultRid: Uint8Array; createdAt: string; } export interface MeshHomeRecord { meshRid: Uint8Array; vaultRid: Uint8Array; vaultName: string; } export interface MeshDoc { mesh: MeshRecord; homeVaults: readonly MeshHomeRecord[]; } export declare function renderMeshYon(doc: MeshDoc): string; //# sourceMappingURL=mesh-write.d.ts.map