import { MLRule, Ruleset } from '@markuplint/ml-core';
import { RuleConfigValue } from '@markuplint/ml-config';
export declare function moduleAutoLoader<T extends RuleConfigValue, O = unknown>(ruleset: Ruleset): Promise<{
rules: MLRule<T, O>[];
errors: unknown[];
}>;