import { z } from "zod/v4"; export declare const DeviceBasePayloadSchema: z.ZodObject<{ deviceId: z.ZodCUID; workspaceId: z.ZodCUID; organizationId: z.ZodCUID; manufacturer: z.ZodObject<{ slug: z.ZodString; displayName: z.ZodString; }, z.core.$strip>; deviceModel: z.ZodObject<{ slug: z.ZodString; displayName: z.ZodString; }, z.core.$strip>; deviceType: z.ZodEnum<{ unknown: "unknown"; battery: "battery"; charger: "charger"; inverter: "inverter"; meter: "meter"; thermostat: "thermostat"; vehicle: "vehicle"; water_heater: "water_heater"; other: "other"; }>; tags: z.ZodArray; customer: z.ZodOptional; lastName: z.ZodOptional; email: z.ZodOptional; referenceId: z.ZodOptional; phone: z.ZodOptional; }, z.core.$strip>>; site: z.ZodOptional; city: z.ZodString; state: z.ZodString; postalCode: z.ZodString; country: z.ZodString; }, z.core.$strip>; }, z.core.$strip>>; updatedAt: z.ZodString; createdAt: z.ZodString; }, z.core.$strip>; //# sourceMappingURL=device.base.d.ts.map