import type * as eslint from 'eslint'; export type { Preset } from './presets'; export type { DefinePreset } from './presets/util/standard-schema-preset'; export declare const processors: { '.md': eslint.Linter.Processor; '.yml': eslint.Linter.Processor; '.yaml': eslint.Linter.Processor; processor: eslint.Linter.Processor; }; /** Legacy non-flat configs */ export declare const configs: eslint.ESLint.Plugin['configs']; export declare const rules: { codegen: eslint.Rule.RuleModule; }; export * from './flat-config'; export * as presets from './presets'; export * as flatConfig from './config'; export * as dependencies from './dependencies';