import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DocumentSection = { /** * The title of the document section (e.g. the section header). */ title?: string | undefined; /** * The permalink of the document section. */ url?: string | undefined; }; /** @internal */ export declare const DocumentSection$inboundSchema: z.ZodType; /** @internal */ export type DocumentSection$Outbound = { title?: string | undefined; url?: string | undefined; }; /** @internal */ export declare const DocumentSection$outboundSchema: z.ZodType; export declare function documentSectionToJSON(documentSection: DocumentSection): string; export declare function documentSectionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=documentsection.d.ts.map