import type { SemanticTddSourceSnapshot } from "./workflow-semantic-tdd-transition-types.js"; export declare function parseSemanticTddSourceSnapshot(source: string): { readonly ok: true; readonly value: SemanticTddSourceSnapshot; } | { readonly ok: false; };