import { ProblemMessageObject } from '../classes/errors'; import { OutlineEntry } from './outliner'; /** * Convert a TODO or FIXME OutlineEntry to ProblemMessageObject, so that they can show in the problems panel. * This checks the entry and all its children recursively. * @param entry * @param textDocumentPath path of the text document the outline entry belongs to * @param problemsArray an array to collect the resulting ProblemMessageObjects */ export declare function outlineEntryToProblemMessageObject(entry: OutlineEntry, textDocumentPath: string, problemsArray: ProblemMessageObject[]): void;