/** * Every user-visible name lives here so renaming the product is one edit. * * Naming rule we are holding to: this must read as a *test*, not as a security * tool. Developers run tests; they defer security. That governs the CLI verb, * the noun in the output ("14 crossline checks, 3 failing"), and the docs. */ export declare const BRAND: { /** npm package + binary name */ readonly name: "crossline"; /** Capitalised, for prose and report headers */ readonly display: "Crossline"; /** The unit shown in output: "14 s, 3 failing" */ readonly unit: "check"; /** Config file written by `crossline init` */ readonly configFile: "crossline.config.json"; /** Directory for the inferred model, baselines, and reports */ readonly stateDir: ".crossline"; readonly tagline: "Prove that no user can see another user's data."; readonly docsUrl: "https://github.com/jdora09769-bot/crossline"; }; /** Prefix for planted canary values. Recognisable in any response body. */ export declare const CANARY_PREFIX = "CROSSLINE"; /** * The published version of this package. * * Here rather than in `run.ts` because the read-only assurance path needs it * and must not import the module that carries the seeder. `run.ts` re-exports * it, so every existing importer is unchanged, and the install smoke test still * reads it from there and compares it to `package.json`. */ export declare const VERSION = "0.2.2";