import type { Rule } from 'eslint'; import type { RuleConfig } from './types'; type Suggestion = { shouldReturnSuggestion: boolean; } & Rule.SuggestionReportDescriptor; export declare const getTokenSuggestion: (node: Rule.Node, reference: string, config: RuleConfig) => Suggestion[]; export {};