import * as z from "zod"; import { TestResultClassification, TestResultClassification$Outbound } from "./testresultclassification.js"; export type TestFailureDetails = { errorMessage: string; errorStack?: string | undefined; classification?: TestResultClassification | undefined; }; /** @internal */ export declare const TestFailureDetails$inboundSchema: z.ZodType; /** @internal */ export type TestFailureDetails$Outbound = { errorMessage: string; errorStack?: string | undefined; classification?: TestResultClassification$Outbound | undefined; }; /** @internal */ export declare const TestFailureDetails$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TestFailureDetails$ { /** @deprecated use `TestFailureDetails$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TestFailureDetails$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TestFailureDetails$Outbound` instead. */ type Outbound = TestFailureDetails$Outbound; } //# sourceMappingURL=testfailuredetails.d.ts.map