/** * Optional base class for grouping common test utilities. */ export declare abstract class TestCase { /** * Runs once before the suite (override in subclasses). */ static beforeAll(): Promise; /** * Runs once after the suite (override in subclasses). */ static afterAll(): Promise; } //# sourceMappingURL=TestCase.d.ts.map