import { z } from "zod/v4"; /** * The base event schema all events extend from. * Implements the [Standard Webhook Spec](https://github.com/standard-webhooks/standard-webhooks/blob/main/spec/standard-webhooks.md). */ export declare const EventSchema: z.ZodObject<{ type: z.ZodEnum<{ "command.failed": "command.failed"; "command.scheduled": "command.scheduled"; "command.succeeded": "command.succeeded"; "command.overridden": "command.overridden"; "connection.failed": "connection.failed"; "device.connected": "device.connected"; "device.disconnected": "device.disconnected"; "device.discovered": "device.discovered"; "device.updated": "device.updated"; "enrollment.submitted": "enrollment.submitted"; "enrollment.approved": "enrollment.approved"; "enrollment.rejected": "enrollment.rejected"; "customer.created": "customer.created"; "customer.updated": "customer.updated"; "customer.deleted": "customer.deleted"; "site.created": "site.created"; "site.updated": "site.updated"; "site.deleted": "site.deleted"; "alert.created": "alert.created"; "alert.updated": "alert.updated"; "manufacturer.command.issued": "manufacturer.command.issued"; }>; version: z.ZodString; key: z.ZodString; timestamp: z.ZodString; data: z.ZodObject<{}, z.core.$strip>; }, z.core.$strip>; //# sourceMappingURL=event.base.d.ts.map