import { type Dependencies, type ESLintConfig, type TopLevelESLintConfig } from '../types';
/**
 * @see https://www.npmjs.com/org/testing-library
 */
export declare const testingLibFamily: string[];
export declare const detectEnv: (dependencies: Dependencies, customEnv?: ESLintConfig['env']) => Required<TopLevelESLintConfig['env']>;
export declare const detectParserOptions: (customParserOptions?: ESLintConfig['parserOptions']) => Required<TopLevelESLintConfig['parserOptions']>;
export declare const detectPlugins: (dependencies: Dependencies, customPlugins?: string[]) => string[];
