import * as z from "zod/v3"; import { TestDomainRouteFromDto, TestDomainRouteFromDto$Outbound } from "./testdomainroutefromdto.js"; export type TestDomainRouteDto = { from: TestDomainRouteFromDto; subject: string; text?: string | undefined; html?: string | undefined; /** * When true, returns the payload that would be delivered without invoking outbound webhooks or the agent HTTP endpoint. */ dryRun?: boolean | undefined; }; /** @internal */ export type TestDomainRouteDto$Outbound = { from: TestDomainRouteFromDto$Outbound; subject: string; text?: string | undefined; html?: string | undefined; dryRun?: boolean | undefined; }; /** @internal */ export declare const TestDomainRouteDto$outboundSchema: z.ZodType; export declare function testDomainRouteDtoToJSON(testDomainRouteDto: TestDomainRouteDto): string; //# sourceMappingURL=testdomainroutedto.d.ts.map