import type { Rule } from 'eslint';
export interface ESLintDeprecationImportCfg {
    /** Alias name */
    alias: string;
    /** Deprecated name */
    deprecationPath: string;
    /** Recommended path */
    recommendedPath: string;
}
/** Builds deprecation rule from {@link ESLintDeprecationCfg} object */
export declare function buildRule(configs: ESLintDeprecationImportCfg | ESLintDeprecationImportCfg[]): Rule.RuleModule;
