import type { PfeConfig } from '../config.js';
import { Manifest } from '../custom-elements-manifest/lib/Manifest.js';
interface DocsPageOptions extends PfeConfig {
docsTemplatePath?: string;
tagName?: string;
title?: string;
/** When true, renders an
with the element's title in the element docs overview */
renderTitleInOverview?: boolean;
}
export declare class DocsPage {
manifest: Manifest;
static isDocsPage: boolean;
tagName: string;
title: string;
slug: string;
description?: string | null;
summary?: string | null;
docsTemplatePath?: string;
constructor(manifest: Manifest, options?: DocsPageOptions);
}
export {};