import * as z from "zod/v3"; export type EmailValidationInteractiveValidateGlobals = { source?: string | undefined; }; export type EmailValidationInteractiveValidateRequest = { /** * The key to use to authenticate to the service. */ key?: string | undefined; /** * The email address to verify. */ email: string; /** * The time (in milliseconds) you want to give for the valiation attempt to be executed within. Value must be between 1 and 15000 (values outside of these ranges will fallback to the default of 15000). */ timeout?: number | undefined; /** * The option to return additional fields */ additionalFields?: string | undefined; }; /** @internal */ export type EmailValidationInteractiveValidateRequest$Outbound = { Key?: string | undefined; Email: string; Timeout?: number | undefined; AdditionalFields?: string | undefined; }; /** @internal */ export declare const EmailValidationInteractiveValidateRequest$outboundSchema: z.ZodType; export declare function emailValidationInteractiveValidateRequestToJSON(emailValidationInteractiveValidateRequest: EmailValidationInteractiveValidateRequest): string; //# sourceMappingURL=emailvalidationinteractivevalidate.d.ts.map