import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ImportHistoricalEvalResultsRequest = { /** * Caller-owned Hugging Face token with read access to the source dataset repository. Gateway does not use its server-side Hugging Face token for historical imports. */ xHuggingFaceToken: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; importHistoricalEvalResultsRequest: components.ImportHistoricalEvalResultsRequest; }; /** @internal */ export declare const ImportHistoricalEvalResultsRequest$inboundSchema: z.ZodType; /** @internal */ export type ImportHistoricalEvalResultsRequest$Outbound = { "X-HuggingFace-Token": string; "X-On-Behalf-Of"?: string | undefined; ImportHistoricalEvalResultsRequest: components.ImportHistoricalEvalResultsRequest$Outbound; }; /** @internal */ export declare const ImportHistoricalEvalResultsRequest$outboundSchema: z.ZodType; export declare function importHistoricalEvalResultsRequestToJSON(importHistoricalEvalResultsRequest: ImportHistoricalEvalResultsRequest): string; export declare function importHistoricalEvalResultsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=importhistoricalevalresults.d.ts.map