import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TestDomainRouteWebhookResultDto = { /** * True when outbound webhooks are disabled for this environment (nothing was emitted). */ skipped?: boolean | undefined; latencyMs: number; }; /** @internal */ export declare const TestDomainRouteWebhookResultDto$inboundSchema: z.ZodType; export declare function testDomainRouteWebhookResultDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=testdomainroutewebhookresultdto.d.ts.map