import { TSESLint } from '@typescript-eslint/utils';
import { default as parser } from '@typescript-eslint/parser';
declare const plugin: {
    meta: {
        name: string;
        version: string;
    };
    rules: {
        "import-export": TSESLint.RuleModule<"shortMultiline" | "longOneLiner", [], unknown, TSESLint.RuleListener>;
    };
    configs: typeof configs;
    processors: {};
};
declare const configs: {
    recommended: {
        languageOptions: {
            ecmaVersion: "latest";
            parser: typeof parser;
        };
        plugins: TSESLint.FlatConfig.Plugins;
        rules: {
            "@lesnoypudge/eslint-plugin-import-export/import-export": "warn";
        };
    };
};
export default plugin;
