import type { ESLint, Linter } from 'eslint';
export interface EslintConfig extends Linter.Config {
    rules: Linter.RulesRecord;
}
export interface EslintConfigPlugin extends ESLint.Plugin {
}
interface IPath {
    name: string;
    importNames?: string[];
    message: string;
}
export declare const getNoRestrictedImportsPaths: (paths?: IPath[]) => IPath[];
export declare const baseConfig: EslintConfig;
export {};
