import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { NewLogProbsContentTopLogProbs, NewLogProbsContentTopLogProbs$Outbound } from "./newlogprobscontenttoplogprobs.js"; import { SDKValidationError } from "./sdkvalidationerror.js"; export type NewLogProbsContent = { token?: string | undefined; logprob?: number | undefined; bytes?: Array | undefined; topLogprobs?: Array | undefined; tokenId?: number | undefined; textOffset?: number | undefined; }; /** @internal */ export declare const NewLogProbsContent$inboundSchema: z.ZodType; /** @internal */ export type NewLogProbsContent$Outbound = { token?: string | undefined; logprob?: number | undefined; bytes?: Array | undefined; top_logprobs?: Array | undefined; token_id?: number | undefined; text_offset?: number | undefined; }; /** @internal */ export declare const NewLogProbsContent$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 NewLogProbsContent$ { /** @deprecated use `NewLogProbsContent$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NewLogProbsContent$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NewLogProbsContent$Outbound` instead. */ type Outbound = NewLogProbsContent$Outbound; } export declare function newLogProbsContentToJSON(newLogProbsContent: NewLogProbsContent): string; export declare function newLogProbsContentFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=newlogprobscontent.d.ts.map