import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdk-validation-error.js"; import * as models from "../index.js"; export type IngestTraceBatchRequest = { traces: Array; }; /** * Response for status 200 */ export type IngestTraceBatchResponse = { /** * Records written */ accepted: number; /** * Records the receiver could not store */ rejected: number; /** * Why records were rejected */ note?: string | undefined; }; /** @internal */ export type IngestTraceBatchRequest$Outbound = { traces: Array; }; /** @internal */ export declare const IngestTraceBatchRequest$outboundSchema: z.ZodMiniType; export declare function ingestTraceBatchRequestToJSON(ingestTraceBatchRequest: IngestTraceBatchRequest): string; /** @internal */ export declare const IngestTraceBatchResponse$inboundSchema: z.ZodMiniType; export declare function ingestTraceBatchResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ingest-trace-batch.d.ts.map