import { ImportSpecifier } from "estree-jsx"; /** Can be used to extract a specific specifier from an array of imports, such as to only * run logic if X and Y imports are present or to use the specifier properties in other logic. */ export declare function getSpecifierFromImports(imports: ImportSpecifier[], importedName: string): ImportSpecifier | undefined; //# sourceMappingURL=getSpecifierFromImports.d.ts.map