import type { HarnessCapturedArtifact, HarnessStoredArtifact } from '../types'; export declare function normalizeArtifact(input: { runId: string; stepId?: string; artifact: HarnessCapturedArtifact; now?: () => Date; idFactory?: () => string; }): HarnessStoredArtifact; export declare function normalizeArtifacts(input: { runId: string; stepId?: string; artifacts: HarnessCapturedArtifact[] | undefined; now?: () => Date; idFactory?: () => string; }): HarnessStoredArtifact[];