import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetProcessesCountExperimentalV2DeprecatedGlobals = { appId?: string | undefined; }; export type GetProcessesCountExperimentalV2DeprecatedRequest = { appId?: string | undefined; status?: Array | undefined; region?: Array | undefined; }; /** * Ok */ export type GetProcessesCountExperimentalV2DeprecatedResponseBody = { count: number; }; /** @internal */ export type GetProcessesCountExperimentalV2DeprecatedRequest$Outbound = { appId?: string | undefined; status?: Array | undefined; region?: Array | undefined; }; /** @internal */ export declare const GetProcessesCountExperimentalV2DeprecatedRequest$outboundSchema: z.ZodType; export declare function getProcessesCountExperimentalV2DeprecatedRequestToJSON(getProcessesCountExperimentalV2DeprecatedRequest: GetProcessesCountExperimentalV2DeprecatedRequest): string; /** @internal */ export declare const GetProcessesCountExperimentalV2DeprecatedResponseBody$inboundSchema: z.ZodType; export declare function getProcessesCountExperimentalV2DeprecatedResponseBodyFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getprocessescountexperimentalv2deprecated.d.ts.map