/** * The coverage number that counts what a run never touched. * * `steps`/`declared` measure how much of what a run DROVE it actually proved — both go up when the * suite gets more rigorous about the routes it already visits, and neither ever notices a route no * flow goes near. A perfect score on two of eleven routes is not a green app, and nothing else here * says so. * * Known routes are what the app has been SEEN to have, accumulated across runs, so this is the one * figure that grows by exploring rather than by writing more assertions. */ export declare function unreachedRoutes(known: readonly string[], visited: readonly string[]): string[];