/** * Write an artifact file under the saga's artifacts/ directory. */ export declare function writeArtifact(stateRoot: string, sagaId: string, relativePath: string, content: string): Promise; /** * Write a stage-level artifact (e.g., stage-01-report.md). */ export declare function writeStageArtifact(stateRoot: string, sagaId: string, stageId: string, suffix: string, content: string): Promise; /** * Read an artifact file. Returns undefined if not found. */ export declare function readArtifact(stateRoot: string, sagaId: string, relativePath: string): Promise; /** * Check if an artifact file exists. */ export declare function artifactExists(stateRoot: string, sagaId: string, relativePath: string): Promise; //# sourceMappingURL=artifact-store.d.ts.map