import * as z from "zod/v3"; export type StopProcessGlobals = { appId?: string | undefined; }; export type StopProcessRequest = { appId?: string | undefined; processId: string; }; /** @internal */ export type StopProcessRequest$Outbound = { appId?: string | undefined; processId: string; }; /** @internal */ export declare const StopProcessRequest$outboundSchema: z.ZodType; export declare function stopProcessRequestToJSON(stopProcessRequest: StopProcessRequest): string; //# sourceMappingURL=stopprocess.d.ts.map