import { TMarkdownHeadingProps } from "../types"; export declare class BlogArticleEntity { id: number; article_title: string; article_user_id: number; article_summary: string; article_summary_html: string; article_content: string; article_cover: string; article_code: string; article_category: number; article_read_count: number; article_original: boolean; article_source_url: string; article_html: string; article_headings: TMarkdownHeadingProps[]; article_md5: string; gmt_create: Date; gmt_modified: Date; }