import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthFinishResponsePushDelivery, AuthFinishResponsePushDelivery$Outbound } from "./authfinishresponsepushdelivery.js"; import { AuthFinishResponseScanDelivery, AuthFinishResponseScanDelivery$Outbound } from "./authfinishresponsescandelivery.js"; export type AuthFinishResponseDelivery = { push?: AuthFinishResponsePushDelivery | undefined; scan?: AuthFinishResponseScanDelivery | undefined; }; /** @internal */ export declare const AuthFinishResponseDelivery$inboundSchema: z.ZodType; /** @internal */ export type AuthFinishResponseDelivery$Outbound = { push?: AuthFinishResponsePushDelivery$Outbound | undefined; scan?: AuthFinishResponseScanDelivery$Outbound | undefined; }; /** @internal */ export declare const AuthFinishResponseDelivery$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 AuthFinishResponseDelivery$ { /** @deprecated use `AuthFinishResponseDelivery$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthFinishResponseDelivery$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthFinishResponseDelivery$Outbound` instead. */ type Outbound = AuthFinishResponseDelivery$Outbound; } export declare function authFinishResponseDeliveryToJSON(authFinishResponseDelivery: AuthFinishResponseDelivery): string; export declare function authFinishResponseDeliveryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authfinishresponsedelivery.d.ts.map