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