export declare const config: {
    root: boolean;
    parser: string;
    parserOptions: {
        project: string;
        sourceType: string;
        ecmaVersion: number;
        ecmaFeatures: {
            jsx: boolean;
        };
    };
    extends: string[];
    env: {
        node: boolean;
        es6: boolean;
        jest: boolean;
        browser: boolean;
        commonjs: boolean;
    };
    rules: {
        '@typescript-eslint/no-explicit-any': string;
        '@typescript-eslint/ban-ts-comment': (string | {
            'ts-expect-error': boolean;
            'ts-ignore': boolean;
            'ts-nocheck': boolean;
            'ts-check': boolean;
        })[];
        '@typescript-eslint/ban-ts-ignore': string;
        '@typescript-eslint/explicit-function-return-type': string;
        '@typescript-eslint/explicit-module-boundary-types': string;
    };
};
export default config;
//# sourceMappingURL=index.d.ts.map