import { z } from 'zod'; /** * The shape of the model inside the application code - what the users use */ export declare const timeZone: z.ZodObject<{ timeZone1: z.ZodOptional; }, "strip", z.ZodTypeAny, { timeZone1?: string | undefined; }, { timeZone1?: string | undefined; }>; /** * * @typedef {TimeZone} timeZone * @property {string} - Time zone where the user's home is located (as Olson ID). */ export type TimeZone = z.infer; /** * The shape of the model mapping from the api schema into the application shape. * Is equal to application shape if all property names match the api schema */ export declare const timeZoneResponse: z.ZodEffects; }, "strip", z.ZodTypeAny, { time_zone?: string | undefined; }, { time_zone?: string | undefined; }>, { timeZone1: string | undefined; }, { time_zone?: string | undefined; }>; /** * The shape of the model mapping from the application shape into the api schema. * Is equal to application shape if all property names match the api schema */ export declare const timeZoneRequest: z.ZodEffects>; }, "strip", z.ZodTypeAny, { timeZone1?: string | null | undefined; }, { timeZone1?: string | null | undefined; }>, { time_zone: string | null | undefined; }, { timeZone1?: string | null | undefined; }>; //# sourceMappingURL=time-zone.d.ts.map