/** * File System Operations for Progress Files */ /** * Ensure directory exists, creating it if necessary */ export declare function ensureDirectory(dir: string): Promise; /** * Read progress file content */ export declare function readProgressFile(path: string): Promise; /** * Write progress file content */ export declare function writeProgressFile(path: string, content: string): Promise; /** * Get progress file path for an issue * * Standard structure: `.orchestrator/tickets/{type}/{key}-{slug}.md` */ export declare function getProgressFilePath(issueKey: string, baseDir: string, options?: { status?: string | null; type?: string | null; title?: string | null; epicKey?: string; }): string; /** * Check if file exists */ export declare function fileExists(path: string): boolean; //# sourceMappingURL=filesystem.d.ts.map