export declare class TestAssertionError extends Error { constructor(message: string); } /** * Lightweight assertion that throws under vitest and is a no-op in production. * Use as a one-liner in pipeline code to catch regressions during tests. */ export declare function testAssert(condition: boolean, message: string): void;