import * as z from "zod/v3"; import * as components from "../components/index.js"; export type GetMetricsDeprecatedGlobals = { appId?: string | undefined; }; export type GetMetricsDeprecatedRequest = { appId?: string | undefined; processId: string; /** * Available metrics to query over time. */ metrics?: Array | undefined; /** * Unix timestamp. Default is current time. */ end?: number | undefined; /** * Unix timestamp. Default is -1 hour from `end`. */ start?: number | undefined; step?: number | undefined; }; /** @internal */ export type GetMetricsDeprecatedRequest$Outbound = { appId?: string | undefined; processId: string; metrics?: Array | undefined; end?: number | undefined; start?: number | undefined; step: number; }; /** @internal */ export declare const GetMetricsDeprecatedRequest$outboundSchema: z.ZodType; export declare function getMetricsDeprecatedRequestToJSON(getMetricsDeprecatedRequest: GetMetricsDeprecatedRequest): string; //# sourceMappingURL=getmetricsdeprecated.d.ts.map