export declare function getArcsYonPath(vaultPath: string): string; export interface ArcRecord { ridSlug: string; name: string; category: string; lastTouched?: string; } export interface ArcMemberRecord { arcRidSlug: string; figmentPath: string; position: number; } export interface ArcsDoc { vaultName: string; arcs: readonly ArcRecord[]; members: readonly ArcMemberRecord[]; } export declare function renderArcsYon(doc: ArcsDoc): string; export declare function writeArcsDoc(vaultPath: string, doc: ArcsDoc): string; //# sourceMappingURL=arcs-write.d.ts.map