/**
* Severity Level list
* It is used in configuration and message
*/type none = 0;
type info = 0;
type warning = 1;
typeerror = 2;
export type TextlintRuleSeverityLevel = none | info | warning | error;
export {};
//# sourceMappingURL=TextlintRuleSeverityLevel.d.ts.map