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