import { Config } from '../rules'; declare type RuleLevel = string | number; declare type RuleVelue = RuleLevel | { level: RuleLevel; option: unknown; }; export declare type RawConfig = { rules: { [key: string]: RuleVelue; }; }; export declare function convertToConfig(rawConfig: RawConfig): Config; export declare function loadConfig(directoryOrFile: string): Config; export {};