import { z } from 'zod'; /** * Zod schema for the ApnsConfigPayload model. * Defines the structure and validation rules for this data type. * This is the shape used in application code - what developers interact with. */ export declare const apnsConfigPayload: z.ZodLazy; teamId: z.ZodString; }, "strip", z.ZodTypeAny, { appId: string; badge: string; certificate: string; keyId: string; teamId: string; payloadVersion?: string | undefined; }, { appId: string; badge: string; certificate: string; keyId: string; teamId: string; payloadVersion?: string | undefined; }>>; /** * * @typedef {ApnsConfigPayload} apnsConfigPayload * @property {string} - The default bundle identifier of the application that is configured with this project. It can be overriden on a per token basis, when registering device tokens. * @property {Badge} - Controls whether the app icon badge counts unread or unseen notifications. * @property {string} - The APNs certificate in P8 format. Generate it at [developer.apple.com](https://developer.apple.com/account/resources/authkeys/add) with the 'Apple Push Notification service (APNs)' option selected. * @property {string} - The 10-character Key ID from your Apple Developer account used with the P8 certificate. * @property {PayloadVersion} - Internal payload format version used by MagicBell. * @property {string} - The Apple Developer Team ID that owns the configured key. */ export type ApnsConfigPayload = z.infer; /** * Zod schema for mapping API responses to the ApnsConfigPayload application shape. * Handles any property name transformations from the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const apnsConfigPayloadResponse: z.ZodLazy; team_id: z.ZodString; }, "strip", z.ZodTypeAny, { app_id: string; badge: string; certificate: string; key_id: string; team_id: string; payload_version?: string | undefined; }, { app_id: string; badge: string; certificate: string; key_id: string; team_id: string; payload_version?: string | undefined; }>, { appId: string; badge: string; certificate: string; keyId: string; payloadVersion: string | undefined; teamId: string; }, { app_id: string; badge: string; certificate: string; key_id: string; team_id: string; payload_version?: string | undefined; }>>; /** * Zod schema for mapping the ApnsConfigPayload application shape to API requests. * Handles any property name transformations required by the API schema. * If property names match the API schema exactly, this is identical to the application shape. */ export declare const apnsConfigPayloadRequest: z.ZodLazy; teamId: z.ZodString; }, "strip", z.ZodTypeAny, { appId: string; badge: string; certificate: string; keyId: string; teamId: string; payloadVersion?: string | undefined; }, { appId: string; badge: string; certificate: string; keyId: string; teamId: string; payloadVersion?: string | undefined; }>, { app_id: string; badge: string; certificate: string; key_id: string; payload_version: string | undefined; team_id: string; }, { appId: string; badge: string; certificate: string; keyId: string; teamId: string; payloadVersion?: string | undefined; }>>; //# sourceMappingURL=apns-config-payload.d.ts.map