import { z } from 'zod'; /** * The shape of the model inside the application code - what the users use */ export declare const on: z.ZodObject<{ on1: z.ZodOptional; }, "strip", z.ZodTypeAny, { on1?: boolean | undefined; }, { on1?: boolean | undefined; }>; /** * * @typedef {On} on * @property {boolean} - On/Off state of the light on=true, off=false */ export type On = 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 onResponse: z.ZodEffects; }, "strip", z.ZodTypeAny, { on?: boolean | undefined; }, { on?: boolean | undefined; }>, { on1: boolean | undefined; }, { on?: boolean | 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 onRequest: z.ZodEffects>; }, "strip", z.ZodTypeAny, { on1?: boolean | null | undefined; }, { on1?: boolean | null | undefined; }>, { on: boolean | null | undefined; }, { on1?: boolean | null | undefined; }>; //# sourceMappingURL=on.d.ts.map