export type TestResult = {
    name: string;
    totalPass: number;
    totalFail: number;
    status: string;
    results: Array<{
        name: string;
        allTests: Array<{
            [testName: string]: {
                status: boolean;
                error?: {
                    name: string;
                    message: string;
                };
            };
        }>;
    }>;
};
export interface TestOutputBuffers {
    testZipBuffer: Buffer | undefined;
    buildZipBuffer: Buffer | undefined;
}
//# sourceMappingURL=test-response-model.d.ts.map