/**
 * Const object version of this union type: TSESLint.RuleMetaData<''>['type'];
 */
export declare const RULE_TYPE: {
    readonly problem: "problem";
    readonly suggestion: "suggestion";
    readonly layout: "layout";
};
export type RULE_TYPE = (typeof RULE_TYPE)[keyof typeof RULE_TYPE];
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;
};
