import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; export type NewLogProbsContentTopLogProbs = { token?: string | undefined; logprob?: number | undefined; tokenId?: number | undefined; /** * The byte representation of the token. */ bytes?: Array | undefined; }; /** @internal */ export declare const NewLogProbsContentTopLogProbs$inboundSchema: z.ZodType; /** @internal */ export type NewLogProbsContentTopLogProbs$Outbound = { token?: string | undefined; logprob?: number | undefined; token_id?: number | undefined; bytes?: Array | undefined; }; /** @internal */ export declare const NewLogProbsContentTopLogProbs$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 NewLogProbsContentTopLogProbs$ { /** @deprecated use `NewLogProbsContentTopLogProbs$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NewLogProbsContentTopLogProbs$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NewLogProbsContentTopLogProbs$Outbound` instead. */ type Outbound = NewLogProbsContentTopLogProbs$Outbound; } export declare function newLogProbsContentTopLogProbsToJSON(newLogProbsContentTopLogProbs: NewLogProbsContentTopLogProbs): string; export declare function newLogProbsContentTopLogProbsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=newlogprobscontenttoplogprobs.d.ts.map