/** * Get a timestamp for the plan file */ export declare function getNow(): string; export interface PlanEntry { change: string; dependencies: string[]; comment?: string; } export interface GeneratePlanOptions { moduleName: string; uri?: string; entries: PlanEntry[]; } /** * Generate a plan file content from structured data */ export declare function generatePlan(options: GeneratePlanOptions): string; /** * Write a generated plan file to disk */ export declare function writePlan(planPath: string, plan: string): void;