export declare enum ERROR_CODE { UNKNOWN = "UNKNOWN", EPERM = "EPERM", ERROR = "ERROR", OTHER = "OTHER" } export declare enum SUPPORTED_EDITTORS { 'vscode' = "code", 'sublime' = "subl", 'atom' = "atom", 'webstorm' = "webstorm", 'idea' = "idea" } export declare type IEditor = keyof typeof SUPPORTED_EDITTORS; export declare type IEditorExec = string[]; export declare type ISupportedEditor = { [key in IEditor]: { command: IEditorExec; }; }; export declare type SYSTEMS = 'osx' | 'linux' | 'windows';