import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; export declare const DomainRouteDtoType: { readonly Agent: "agent"; readonly Webhook: "webhook"; }; export type DomainRouteDtoType = ClosedEnum; export type DomainRouteDto = { /** * Inbox address local part (e.g. "support", "*") */ address: string; /** * Agent identifier; required when type is agent, unused for webhook */ agentId?: string | undefined; type: DomainRouteDtoType; /** * Optional string key-value metadata (max 10 keys, 500 characters total for keys+values). */ data?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const DomainRouteDtoType$outboundSchema: z.ZodNativeEnum; /** @internal */ export type DomainRouteDto$Outbound = { address: string; agentId?: string | undefined; type: string; data?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const DomainRouteDto$outboundSchema: z.ZodType; export declare function domainRouteDtoToJSON(domainRouteDto: DomainRouteDto): string; //# sourceMappingURL=domainroutedto.d.ts.map