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