/**
 * Enum version of this union type: TSESLint.RuleMetaData<''>['type'];
 */
export declare enum RULE_TYPE {
    'problem' = "problem",
    'suggestion' = "suggestion",
    'layout' = "layout"
}
export declare const RULE_TYPES: readonly ["problem", "suggestion", "layout"];
export declare const EMOJIS_TYPE: {
    [key in RULE_TYPE]: string;
};
export declare const RULE_TYPE_MESSAGES_LEGEND: {
    [key in RULE_TYPE]: string;
};
export declare const RULE_TYPE_MESSAGES_NOTICES: {
    [key in RULE_TYPE]: string;
};
