import { type Linter } from 'eslint'; export interface RegexpOptions { files?: string[]; } /** * ESLint configuration for `eslint-plugin-regexp`. */ declare const _default: ({ files, }?: RegexpOptions) => Linter.FlatConfig[]; export default _default;