export interface TSBootTestCase { getCaseName(): string; start(): Promise; } export declare const TSBootTestCaseRunner: { run(testCase: TSBootTestCase): Promise; };