import * as z from "zod/v4-mini"; import * as models from "../index.js"; export type ReportTelemetrySecurity = { apiKey: string; }; export type ReportTelemetryRequest = { releaseSlug: string; /** * Per-step timings and the outcome of one release-pipeline run. Steps not reached before a failure report zero. */ body: models.ReleasesTelemetryRequest; }; /** @internal */ export type ReportTelemetrySecurity$Outbound = { apiKey: string; }; /** @internal */ export declare const ReportTelemetrySecurity$outboundSchema: z.ZodMiniType; export declare function reportTelemetrySecurityToJSON(reportTelemetrySecurity: ReportTelemetrySecurity): string; /** @internal */ export type ReportTelemetryRequest$Outbound = { releaseSlug: string; body: models.ReleasesTelemetryRequest$Outbound; }; /** @internal */ export declare const ReportTelemetryRequest$outboundSchema: z.ZodMiniType; export declare function reportTelemetryRequestToJSON(reportTelemetryRequest: ReportTelemetryRequest): string;