import type { RuleConfig } from '../rule-config';

/**
 *
 * @deprecated
 *
 * @see [no-fn-reference-in-iterator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v48.0.1/docs/deprecated-rules.md#no-fn-reference-in-iterator)
 */
export type NoFnReferenceInIteratorRuleConfig = RuleConfig<[]>;

/**
 *
 * @deprecated
 *
 * @see [no-fn-reference-in-iterator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v48.0.1/docs/deprecated-rules.md#no-fn-reference-in-iterator)
 */
export interface NoFnReferenceInIteratorRule {
  /**
   *
   * @deprecated
   *
   * @see [no-fn-reference-in-iterator](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/v48.0.1/docs/deprecated-rules.md#no-fn-reference-in-iterator)
   */
  'unicorn/no-fn-reference-in-iterator': NoFnReferenceInIteratorRuleConfig;
}
