import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Smtp = { /** * The server's response to the EHLO command. */ ehlo?: string | undefined; /** * The server's response to the STARTTLS command. */ startTls?: string | undefined; }; /** @internal */ export declare const Smtp$inboundSchema: z.ZodType; export declare function smtpFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=smtp.d.ts.map