import { VSRange } from "./compat"; /** Lists all known decoration types. */ export declare enum DECORATION_TYPES { timestamp = "timestamp", blockAnchor = "blockAnchor", wikiLink = "wikiLink", brokenWikilink = "brokenWikilink", noteRef = "noteRef", brokenNoteRef = "brokenNoteRef", alias = "alias", taskNote = "taskNote" } export declare type Decoration = { type: DECORATION_TYPES; range: VSRange; data?: T; };