import { type Linter } from 'eslint'; export interface ReactHooksOptions { files?: string[]; } /** * Rational * [eslint-plugin-react](https://www.npmjs.com/package/eslint-plugin-react) * configuration. */ declare const _default: ({ files, }?: ReactHooksOptions) => Linter.FlatConfig[]; export default _default;