import { z } from 'zod'; /** * Zod schema for the InboxToken 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 inboxToken: z.ZodLazy>; token: z.ZodString; }, "strip", z.ZodTypeAny, { token: string; connectionId?: string | null | undefined; }, { token: string; connectionId?: string | null | undefined; }>>; /** * * @typedef {InboxToken} inboxToken * @property {string} - Realtime connection ID to restrict delivery to a specific Ably connection. * @property {string} - The in-app inbox token generated for this user. */ export type InboxToken = z.infer; /** * Zod schema for mapping API responses to the InboxToken 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 inboxTokenResponse1: z.ZodLazy>; token: z.ZodString; }, "strip", z.ZodTypeAny, { token: string; connection_id?: string | null | undefined; }, { token: string; connection_id?: string | null | undefined; }>, { connectionId: string | null | undefined; token: string; }, { token: string; connection_id?: string | null | undefined; }>>; /** * Zod schema for mapping the InboxToken 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 inboxTokenRequest: z.ZodLazy>; token: z.ZodString; }, "strip", z.ZodTypeAny, { token: string; connectionId?: string | null | undefined; }, { token: string; connectionId?: string | null | undefined; }>, { connection_id: string | null | undefined; token: string; }, { token: string; connectionId?: string | null | undefined; }>>; //# sourceMappingURL=inbox-token.d.ts.map