import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AuthStartRequestDeliveryPushNotification, AuthStartRequestDeliveryPushNotification$Outbound } from "./authstartrequestdeliverypushnotification.js"; export type AuthStartRequestDeliveryPush = { notification: AuthStartRequestDeliveryPushNotification; }; /** @internal */ export declare const AuthStartRequestDeliveryPush$inboundSchema: z.ZodType; /** @internal */ export type AuthStartRequestDeliveryPush$Outbound = { notification: AuthStartRequestDeliveryPushNotification$Outbound; }; /** @internal */ export declare const AuthStartRequestDeliveryPush$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 AuthStartRequestDeliveryPush$ { /** @deprecated use `AuthStartRequestDeliveryPush$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestDeliveryPush$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AuthStartRequestDeliveryPush$Outbound` instead. */ type Outbound = AuthStartRequestDeliveryPush$Outbound; } export declare function authStartRequestDeliveryPushToJSON(authStartRequestDeliveryPush: AuthStartRequestDeliveryPush): string; export declare function authStartRequestDeliveryPushFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authstartrequestdeliverypush.d.ts.map