/** The expected output from the processor, if the processor is used to process or stringify a tree. */ export declare enum DendronASTDest { /** * @deprecated - no longer needed since we don't use the markdown preview * enhanced anymore */ MD_ENHANCED_PREVIEW = "MD_ENHANCED_PREVIEW", MD_REGULAR = "MD_REGULAR", MD_DENDRON = "MD_DENDRON", HTML = "HTML" } /** * If processor should run in an alternative flavor */ export declare enum ProcFlavor { /** * No special processing */ REGULAR = "REGULAR", /** * Apply publishing rules */ PUBLISHING = "PUBLISHING", /** * Apply preview rules */ PREVIEW = "PREVIEW", /** * Apply hover preview rules (used for the preview when hovering over a link) */ HOVER_PREVIEW = "HOVER_PREVIEW", /** * Apply special hover preview rules for the backlinks panel. */ BACKLINKS_PANEL_HOVER = "BACKLINK_HOVER" }