import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Summary = { text?: string | undefined; /** * Follow-up prompts based on the summarized doc */ followUpPrompts?: Array | undefined; }; /** @internal */ export declare const Summary$inboundSchema: z.ZodType; export declare function summaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=summary.d.ts.map