import Rule from './rule.js'; export declare const rulesNames: { ENT_SHORTER_DECL: string; ENT_OPTIONAL_TABLE_NAME: string; ENT_DUPLICATED: string; FLD_OPTIONAL_COMMAS: string; REL_INDIVIDUAL_DECL: string; AIGC_INDIVIDUAL_DECL: string; FLD_DUPLICATED: string; ENUM_DUPLICATED: string; ENUM_UNUSED: string; }; type RuleNames = keyof typeof rulesNames; export declare const rules: Record; export declare function getRule(ruleName: RuleNames): Rule; export {};