import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthStartRequestDeliveryPush, AuthStartRequestDeliveryPush$Outbound } from "./authstartrequestdeliverypush.js"; import { AuthStartRequestDeliveryScan, AuthStartRequestDeliveryScan$Outbound } from "./authstartrequestdeliveryscan.js"; export type AuthStartRequestDelivery = { push?: AuthStartRequestDeliveryPush | undefined; scan?: AuthStartRequestDeliveryScan | undefined; }; /** @internal */ export declare const AuthStartRequestDelivery$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestDelivery$Outbound = { push?: AuthStartRequestDeliveryPush$Outbound | undefined; scan?: AuthStartRequestDeliveryScan$Outbound | undefined; }; /** @internal */ export declare const AuthStartRequestDelivery$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AuthStartRequestDelivery$ { /** @deprecated use `AuthStartRequestDelivery$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestDelivery$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestDelivery$Outbound` instead. */ type Outbound = AuthStartRequestDelivery$Outbound; } export declare function authStartRequestDeliveryToJSON(authStartRequestDelivery: AuthStartRequestDelivery): string; export declare function authStartRequestDeliveryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestdelivery.d.ts.map