import { z } from "zod"; export declare const lifecycleStateSchema: z.ZodEnum<{ active: "active"; suspending: "suspending"; suspended: "suspended"; resuming: "resuming"; }>; export declare const stateRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"state">; }, z.core.$strip>; export declare const stateResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"state">; state: z.ZodEnum<{ active: "active"; suspending: "suspending"; suspended: "suspended"; resuming: "resuming"; }>; }, z.core.$strip>; export type LifecycleState = z.infer; export type StateRequest = z.infer; export type StateResponse = z.infer; //# sourceMappingURL=state.d.ts.map