import { CommentInfo } from '../../extractors/comment/CommentInfo'; import { CommentToMdOption } from './CommentToMdOption'; import { TagInfo } from '../../extractors/comment/TagInfo'; import { TemplateOption } from '../TemplateOption'; export declare class CommentToMdConverter { convertAll(commentInfo: CommentInfo[], commentOption?: CommentToMdOption, option?: TemplateOption): string[]; convert(commentInfo: CommentInfo, commentOption?: CommentToMdOption, option?: TemplateOption): string; toMdTable(tags: TagInfo[], headers: string[], append?: boolean): string[][]; }