export declare const CODE_EDITOR_LANGUAGE_PROVIDER: string; export declare const CODE_EDITOR_THEME_RULES_PROVIDER: string; export declare const CODE_EDITOR_COMPLETION_ITEM_PROVIDER: string; export declare const CMF_CUSTOM_THEME: string; /** * Code editor Modes */ export declare enum CodeEditorMode { /** * Single file editor */ Editor = 0, /** * Diff editor */ Diff = 1 } export declare enum CustomEditorThemes { /** * Default theme */ LightBlue = "cmf.style.light.blue", /** * Cmf dark blue theme */ DarkBlue = "cmf.style.dark.blue", /** * Cmf blue theme */ Blue = "cmf.style.blue", /** * Cmf Blue Gray */ BlueGrey = "cmf.style.blue.gray" } /** * Code editor languages */ export declare enum CodeEditorLanguage { Javascript = 0, Typescript = 1, CSharp = 2, HTML = 3, LESS = 4, JSON = 5, LOG = 6, EXPR = 7, SQL = 8 }