export declare const enum Linter {
    EsLint = "eslint",
    None = "none"
}
export type LinterType = 'eslint' | 'none';
