import { DocExample, DocGeneral, DocLink, DocModel, DocParam } from '../code-parser'; export declare enum TAG_TYPES { DESCRIPTION = 0, EXAMPLE = 1, INPUT = 2, OUTPUT = 3, MODEL = 4, LINK = 5, UNKNOWN = 6, } export declare class CommentParsed { globalInfo: DocGeneral; inputs: DocParam[]; outputs: DocParam[]; examples: DocExample[]; models: DocModel[]; links: DocLink[]; constructor(comments: string[], originalFilePath: string); private build(comments, originalFilePath); }