import { TSESTree, ESLintUtils } from '@typescript-eslint/utils'; type Create = Parameters>[0]['create']; type Context = Parameters[0]; type Options = Parameters[1]; type Helpers = { isSpecificTanstackRouterImport: (node: TSESTree.Identifier, source: string) => boolean; isTanstackRouterImport: (node: TSESTree.Identifier) => boolean; }; type EnhancedCreate = (context: Context, options: Options, helpers: Helpers) => ReturnType; export declare function detectTanstackRouterImports(create: EnhancedCreate): Create; export {};