import type { Plugin, RenderContent, RenderParams } from '../types.js'; /** * Generates the content to be rendered in an HTML page. * @param plugins - An array of plugins. * @param params - An object containing various parameters for rendering the content. * @returns An object containing the generated content for an HTML page. */ export declare function generateRenderContent(plugins: Plugins | undefined, params: RenderParams): RenderContent;