import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SummaryText = { type: "summary_text"; text: string; }; /** @internal */ export declare const SummaryText$inboundSchema: z.ZodType; /** @internal */ export type SummaryText$Outbound = { type: "summary_text"; text: string; }; /** @internal */ export declare const SummaryText$outboundSchema: z.ZodType; export declare function summaryTextToJSON(summaryText: SummaryText): string; export declare function summaryTextFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=summarytext.d.ts.map