import type { Rule } from 'eslint'; import type * as ESTree from 'eslint-codemod-utils'; export declare function isSafeUsage({ context, specifier, supportedImports, }: { context: Rule.RuleContext; specifier: ESTree.ImportSpecifier; supportedImports: Set; }): boolean;