import { z } from 'zod'; /** * The shape of the model inside the application code - what the users use */ export declare const dynamics2: z.ZodObject<{ duration: z.ZodOptional; }, "strip", z.ZodTypeAny, { duration?: number | undefined; }, { duration?: number | undefined; }>; /** * * @typedef {Dynamics2} dynamics2 * @property {number} - Duration of a light transition or timed effects in ms. */ export type Dynamics2 = 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 dynamics2Response: z.ZodEffects; }, "strip", z.ZodTypeAny, { duration?: number | undefined; }, { duration?: number | undefined; }>, { duration: number | undefined; }, { duration?: number | 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 dynamics2Request: z.ZodEffects>; }, "strip", z.ZodTypeAny, { duration?: number | null | undefined; }, { duration?: number | null | undefined; }>, { duration: number | null | undefined; }, { duration?: number | null | undefined; }>; //# sourceMappingURL=dynamics-2.d.ts.map