import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { Summary } from "./summary.js"; export type ErrorT = { message?: string | undefined; }; export type SummarizeResponse = { error?: ErrorT | undefined; summary?: Summary | undefined; /** * An opaque token that represents this summary in this particular query. To be used for /feedback reporting. */ trackingToken?: string | undefined; }; /** @internal */ export declare const ErrorT$inboundSchema: z.ZodType; export declare function errorFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const SummarizeResponse$inboundSchema: z.ZodType; export declare function summarizeResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=summarizeresponse.d.ts.map