import { z } from 'zod'; /** * Zod schema for the DiscardResult 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 discardResult: z.ZodLazy; id: z.ZodOptional; }, "strip", z.ZodTypeAny, { id?: string | undefined; discardedAt?: string | undefined; }, { id?: string | undefined; discardedAt?: string | undefined; }>>; /** * * @typedef {DiscardResult} discardResult * @property {string} - The timestamp when the token was discarded. * @property {string} - The unique identifier for the discarded token. */ export type DiscardResult = z.infer; /** * Zod schema for mapping API responses to the DiscardResult 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 discardResultResponse: z.ZodLazy; id: z.ZodOptional; }, "strip", z.ZodTypeAny, { id?: string | undefined; discarded_at?: string | undefined; }, { id?: string | undefined; discarded_at?: string | undefined; }>, { discardedAt: string | undefined; id: string | undefined; }, { id?: string | undefined; discarded_at?: string | undefined; }>>; /** * Zod schema for mapping the DiscardResult 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 discardResultRequest: z.ZodLazy; id: z.ZodOptional; }, "strip", z.ZodTypeAny, { id?: string | undefined; discardedAt?: string | undefined; }, { id?: string | undefined; discardedAt?: string | undefined; }>, { discarded_at: string | undefined; id: string | undefined; }, { id?: string | undefined; discardedAt?: string | undefined; }>>; //# sourceMappingURL=discard-result.d.ts.map