import { type Linter } from 'eslint'; import { type XoConfigItem } from './types.js'; /** Takes an XO flat config and returns an ESLint flat config. */ export declare function xoToEslintConfig(flatXoConfig: XoConfigItem[] | undefined): Linter.Config[]; export default xoToEslintConfig;