import * as z from "zod"; export type MetricValuesDto = { /** * Metric value for the given unit_type */ value: number; /** * Unit of the metric: stableID, userID, and other custom ids */ unitType: string; /** * Row count for imported metric, optional */ rowCount?: number | undefined; /** * Numerator of a ratio metric, optional */ numerator?: number | undefined; /** * Denominator of a ratio metric, optional */ denominator?: number | undefined; }; /** @internal */ export declare const MetricValuesDto$inboundSchema: z.ZodType; /** @internal */ export type MetricValuesDto$Outbound = { value: number; unit_type: string; row_count?: number | undefined; numerator?: number | undefined; denominator?: number | undefined; }; /** @internal */ export declare const MetricValuesDto$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 MetricValuesDto$ { /** @deprecated use `MetricValuesDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MetricValuesDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MetricValuesDto$Outbound` instead. */ type Outbound = MetricValuesDto$Outbound; } //# sourceMappingURL=metricvaluesdto.d.ts.map