import { z } from 'zod'; /** * Zod schema for the FcmToken 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 fcmToken: z.ZodLazy>; id: z.ZodString; updatedAt: z.ZodNullable>; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; }, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; }>>; /** * * @typedef {FcmToken} fcmToken * @property {string} - The timestamp when the token was created. * @property {string} - The Firebase Cloud Messaging device registration token to associate with the user. * @property {string} - The timestamp when the token was discarded, if applicable. * @property {string} - The unique identifier for the token. * @property {string} - The timestamp when the token metadata last changed. */ export type FcmToken = z.infer; /** * Zod schema for mapping API responses to the FcmToken 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 fcmTokenResponse: z.ZodLazy>; id: z.ZodString; updated_at: z.ZodNullable>; }, "strip", z.ZodTypeAny, { id: string; created_at: string; device_token: string; updated_at?: string | null | undefined; discarded_at?: string | null | undefined; }, { id: string; created_at: string; device_token: string; updated_at?: string | null | undefined; discarded_at?: string | null | undefined; }>, { createdAt: string; deviceToken: string; discardedAt: string | null | undefined; id: string; updatedAt: string | null | undefined; }, { id: string; created_at: string; device_token: string; updated_at?: string | null | undefined; discarded_at?: string | null | undefined; }>>; /** * Zod schema for mapping the FcmToken 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 fcmTokenRequest: z.ZodLazy>; id: z.ZodString; updatedAt: z.ZodNullable>; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; }, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; }>, { created_at: string; device_token: string; discarded_at: string | null | undefined; id: string; updated_at: string | null | undefined; }, { createdAt: string; id: string; deviceToken: string; updatedAt?: string | null | undefined; discardedAt?: string | null | undefined; }>>; //# sourceMappingURL=fcm-token.d.ts.map