export declare const AGENTS_MD_TEMPLATE_VERSION = 3; export declare const MESH_CONTEXT_AUTO_BANNER = ""; export declare const AGENTS_MD_PATTERNS_BEGIN = ""; export declare const AGENTS_MD_PATTERNS_END = ""; export declare const AGENTS_MD_PRIMER_BEGIN = ""; export declare const AGENTS_MD_PRIMER_END = ""; export declare function scaffoldFrontmatter(title: string, purpose: string, dates?: ScaffoldDates | undefined): string; export interface ScaffoldDates { created: string; modified?: string | undefined; } export interface LytOverviewInput { vaultName: string; desc: string | null | undefined; owner: string; dates?: ScaffoldDates | undefined; } export declare function getLytOverviewContent(input: LytOverviewInput): string; export interface InstalledPatternSummary { id: string; name: string; version: string; verbIds: readonly string[]; skills?: readonly string[] | undefined; } export interface AgentsMdInput { vaultName: string; installedPatterns?: readonly InstalledPatternSummary[] | undefined; dates?: ScaffoldDates | undefined; } export declare function getAgentsMdContent(input: AgentsMdInput): string; export declare function regenInstalledPatternsSection(existingContent: string, vaultName: string, installed: readonly InstalledPatternSummary[], filePath?: string | undefined): string; export declare function regenInstalledPrimerSection(existingContent: string, vaultName: string): string; //# sourceMappingURL=priming.d.ts.map