import { z } from 'zod'; import type { ApiReferenceConfigurationWithSources } from './api-reference-configuration.js'; /** * Zod schema for HTML rendering configuration */ export declare const htmlRenderingConfigurationSchema: z.ZodObject<{ cdn: z.ZodDefault>; pageTitle: z.ZodDefault>; }, z.core.$strip>; /** * The configuration for the static HTML rendering using the CDN. * * It's the ApiReferenceConfiguration, but extended with the `pageTitle` and `cdn` options. */ export type HtmlRenderingConfiguration = Partial & z.infer; //# sourceMappingURL=html-rendering-configuration.d.ts.map