import { DataObject } from 'json2md'; import { Content } from './model'; export declare class ArticleContent extends Content<'article', { title: string; content: DataObject[] | Content[]; /** Markdown tag for the title (`h3` default) */ tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'b'; }> { render(): string; static build(payload: ArticleContent['TSchema']): ArticleContent; } //# sourceMappingURL=article.d.ts.map