import type { SourceCode } from 'eslint'; /** * Returns the module name of an identifier, if one exists. * * getModuleOfIdentifier(source, 'Button'); // "@atlaskit/button" */ export declare const getModuleOfIdentifier: (source: SourceCode, identifierName: string) => { moduleName: string; importName: string; } | undefined;