import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; /** * Filter by session state */ export declare const DebugSessionState: { readonly Pending: "pending"; readonly Running: "running"; readonly Stopping: "stopping"; readonly Stopped: "stopped"; readonly Expired: "expired"; readonly Failed: "failed"; }; /** * Filter by session state */ export type DebugSessionState = ClosedEnum; /** @internal */ export declare const DebugSessionState$inboundSchema: z.ZodEnum; /** @internal */ export declare const DebugSessionState$outboundSchema: z.ZodEnum; //# sourceMappingURL=debugsessionstate.d.ts.map