import type { SpecLinkIndexSpecInput } from './spec-link-index.js'; export declare const SCENARIO_PATH_CAVEAT = "a verification path existing means a test reaches the anchored code, never that the test asserts the scenario's behavior."; export interface ScenarioShapeFinding { specFile: string; requirement: string; scenario: string; clause: string; reason: 'missing-when' | 'missing-then' | 'unobservable-then'; } export declare function checkScenarioShape(text: string): Pick | null; export declare function lintScenarioCorpus(specs: readonly SpecLinkIndexSpecInput[]): ScenarioShapeFinding[]; //# sourceMappingURL=scenario-checkability.d.ts.map