export function moveSpecifiers(specifiersToMove: any, fromPackage: any, toPackage: any, messageAfterSpecifierPathChange: any): (context: any) => { ImportDeclaration?: undefined; ExportNamedDeclaration?: undefined; } | { ImportDeclaration(node: any): void; ExportNamedDeclaration(node: any): void; }; export function splitSpecifiers(declaration: any, specifiersToSplit: any): any[]; /** * * @param {*} specifiers * @returns {String[]} an array of alias imports */ export function createAliasImportSpecifiers(specifiers: any): string[]; export function renameComponents(componentMap: any, condition?: (_context: any, _package: any) => boolean, message?: (prevName: any, newName: any) => string, packageName?: string): (context: any) => { ImportDeclaration(node: any): void; JSXIdentifier(node: any): void; ExportNamedDeclaration(node: any): void; }; export function ensureImports(context: any, node: any, packageName: any, imports: any): void; export function addCallbackParam(componentsArray: any, propMap: any, message?: (propName: any, componentName: any, paramName: any) => string): (context: any) => { JSXOpeningElement?: undefined; } | { JSXOpeningElement(node: any): void; }; /** * * @param context * @returns {JSXElement[]} an array of all JSXElements in the file */ export function getAllJSXElements(context: any): JSXElement[]; //# sourceMappingURL=helpers.d.ts.map