export declare function getLanesYonPath(vaultPath: string): string; export interface LaneRecord { ridSlug: string; name: string; sourceKeywords: readonly string[]; memCount: number; lastBuilt?: string; } export interface LaneMemberRecord { laneRidSlug: string; figmentPath: string; } export interface LanesDoc { vaultName: string; lanes: readonly LaneRecord[]; members: readonly LaneMemberRecord[]; } export declare function renderLanesYon(doc: LanesDoc): string; export declare function writeLanesDoc(vaultPath: string, doc: LanesDoc): string; //# sourceMappingURL=lanes-write.d.ts.map