import { z } from 'zod'; /** * Zod schema for the Notification 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 notification: z.ZodLazy>; archivedAt: z.ZodNullable>; category: z.ZodNullable>; content: z.ZodNullable>; createdAt: z.ZodString; customAttributes: z.ZodNullable>; discardedAt: z.ZodNullable>; id: z.ZodString; readAt: z.ZodNullable>; seenAt: z.ZodNullable>; sentAt: z.ZodNullable>; title: z.ZodString; topic: z.ZodNullable>; updatedAt: z.ZodString; userId: z.ZodString; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }>>; /** * * @typedef {Notification} notification * @property {string} - The link associated with the notification. * @property {string} - The timestamp when the notification was archived. * @property {string} - The category grouping for the notification. * @property {string} - The body content of the notification. * @property {string} - The timestamp when the notification was created. * @property {any} - The custom data stored with the notification. * @property {string} - The timestamp when the notification was discarded. * @property {string} - The unique identifier for the notification. * @property {string} - The timestamp when the notification was marked as read. * @property {string} - The timestamp when the notification was seen. * @property {string} - The timestamp when the notification was sent. * @property {string} - The title that is displayed to recipients. * @property {string} - The topic for additional classification. * @property {string} - The timestamp when the notification was last updated. * @property {string} - The user that should receive the notification. */ export type Notification = z.infer; /** * Zod schema for mapping API responses to the Notification 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 notificationResponse: z.ZodLazy>; archived_at: z.ZodNullable>; category: z.ZodNullable>; content: z.ZodNullable>; created_at: z.ZodString; custom_attributes: z.ZodNullable>; discarded_at: z.ZodNullable>; id: z.ZodString; read_at: z.ZodNullable>; seen_at: z.ZodNullable>; sent_at: z.ZodNullable>; title: z.ZodString; topic: z.ZodNullable>; updated_at: z.ZodString; user_id: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; created_at: string; updated_at: string; title: string; user_id: string; custom_attributes?: any; content?: string | null | undefined; action_url?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discarded_at?: string | null | undefined; archived_at?: string | null | undefined; read_at?: string | null | undefined; seen_at?: string | null | undefined; sent_at?: string | null | undefined; }, { id: string; created_at: string; updated_at: string; title: string; user_id: string; custom_attributes?: any; content?: string | null | undefined; action_url?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discarded_at?: string | null | undefined; archived_at?: string | null | undefined; read_at?: string | null | undefined; seen_at?: string | null | undefined; sent_at?: string | null | undefined; }>, { actionUrl: string | null | undefined; archivedAt: string | null | undefined; category: string | null | undefined; content: string | null | undefined; createdAt: string; customAttributes: any; discardedAt: string | null | undefined; id: string; readAt: string | null | undefined; seenAt: string | null | undefined; sentAt: string | null | undefined; title: string; topic: string | null | undefined; updatedAt: string; userId: string; }, { id: string; created_at: string; updated_at: string; title: string; user_id: string; custom_attributes?: any; content?: string | null | undefined; action_url?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discarded_at?: string | null | undefined; archived_at?: string | null | undefined; read_at?: string | null | undefined; seen_at?: string | null | undefined; sent_at?: string | null | undefined; }>>; /** * Zod schema for mapping the Notification 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 notificationRequest: z.ZodLazy>; archivedAt: z.ZodNullable>; category: z.ZodNullable>; content: z.ZodNullable>; createdAt: z.ZodString; customAttributes: z.ZodNullable>; discardedAt: z.ZodNullable>; id: z.ZodString; readAt: z.ZodNullable>; seenAt: z.ZodNullable>; sentAt: z.ZodNullable>; title: z.ZodString; topic: z.ZodNullable>; updatedAt: z.ZodString; userId: z.ZodString; }, "strip", z.ZodTypeAny, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }>, { action_url: string | null | undefined; archived_at: string | null | undefined; category: string | null | undefined; content: string | null | undefined; created_at: string; custom_attributes: any; discarded_at: string | null | undefined; id: string; read_at: string | null | undefined; seen_at: string | null | undefined; sent_at: string | null | undefined; title: string; topic: string | null | undefined; updated_at: string; user_id: string; }, { createdAt: string; id: string; updatedAt: string; title: string; userId: string; customAttributes?: any; actionUrl?: string | null | undefined; content?: string | null | undefined; category?: string | null | undefined; topic?: string | null | undefined; discardedAt?: string | null | undefined; archivedAt?: string | null | undefined; readAt?: string | null | undefined; seenAt?: string | null | undefined; sentAt?: string | null | undefined; }>>; //# sourceMappingURL=notification.d.ts.map