import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TopLogProb, TopLogProb$Outbound } from "./toplogprob.js"; export type LogProb = { token: string; logprob: number; bytes: Array; topLogprobs: Array; }; /** @internal */ export declare const LogProb$inboundSchema: z.ZodType; /** @internal */ export type LogProb$Outbound = { token: string; logprob: number; bytes: Array; top_logprobs: Array; }; /** @internal */ export declare const LogProb$outboundSchema: z.ZodType; export declare function logProbToJSON(logProb: LogProb): string; export declare function logProbFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=logprob.d.ts.map