import * as z from "zod"; export type ConsoleV1MetricsControllerDeleteMetricRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Delete metric response */ export type ConsoleV1MetricsControllerDeleteMetricResponseBody = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1MetricsControllerDeleteMetricRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricsControllerDeleteMetricRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1MetricsControllerDeleteMetricRequest$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1MetricsControllerDeleteMetricRequest$ { /** @deprecated use `ConsoleV1MetricsControllerDeleteMetricRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerDeleteMetricRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerDeleteMetricRequest$Outbound` instead. */ type Outbound = ConsoleV1MetricsControllerDeleteMetricRequest$Outbound; } /** @internal */ export declare const ConsoleV1MetricsControllerDeleteMetricResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricsControllerDeleteMetricResponseBody$Outbound = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1MetricsControllerDeleteMetricResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1MetricsControllerDeleteMetricResponseBody$ { /** @deprecated use `ConsoleV1MetricsControllerDeleteMetricResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerDeleteMetricResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerDeleteMetricResponseBody$Outbound` instead. */ type Outbound = ConsoleV1MetricsControllerDeleteMetricResponseBody$Outbound; } //# sourceMappingURL=consolev1metricscontrollerdeletemetric.d.ts.map