import { Rule, SourceCode } from "eslint"; //#region src/utils/import-fixer.d.ts /** * Check if a given symbol is already imported from functype */ declare function hasFunctypeSymbol(sourceCode: SourceCode, symbolName: string): boolean; /** * Create a fixer function that adds a symbol to the functype import. * Returns a factory compatible with ESLint suggest[].fix signature. */ declare function createImportFixer(sourceCode: SourceCode, symbolName: string): (fixer: Rule.RuleFixer) => Rule.Fix | null; //#endregion export { createImportFixer, hasFunctypeSymbol }; //# sourceMappingURL=import-fixer.d.ts.map