import { ModuleType } from './modules.types'; /** * Adapted from https://github.com/formatjs/js-module-formats * * Analyze JavaScript source, collecting the module or modules information when possible. * @method extract * @default * @param {string} path The JavaScript source path to be analyzed * @return {object|array} an object or a collection of object with the info gathered from the analysis, it usually includes objects with `type` and `name` per module. **/ export declare function getModuleTypes(path: string): Array; //# sourceMappingURL=getModuleTypes.d.ts.map