import { z } from "zod"; export declare const suspendRequestSchema: z.ZodObject<{ type: z.ZodLiteral<"suspend">; }, z.core.$strip>; export declare const suspendResponseSchema: z.ZodObject<{ type: z.ZodLiteral<"suspend">; }, z.core.$strip>; export type SuspendRequest = z.infer; export type SuspendResponse = z.infer; //# sourceMappingURL=suspend.d.ts.map