import { TextFile } from './TextFile'; export declare class MarkdownFile extends TextFile { constructor(srcPath: string, outPath: string); /** * Get the title of this file (generally used for html page title and tree view) */ get title(): string; /** * If the markdown code starts with a h1 header, return its text */ private getH1Text; publish(): void; }