import type { ConsumedImport, DynamicImport } from '../types/BundleInfo.js'; /** * Get info about imports and exports from a file. * Returns undefined if the file doesn't exist or can't be parsed. */ export declare function getImportsAndExports(filePath: string, packagePath?: string): Promise<{ exportNames: Set; imports: ConsumedImport[]; /** Dynamic (async) imports with non-literal paths consumed by this file. */ dynamicImports: DynamicImport[]; } | undefined>; //# sourceMappingURL=getImportsAndExports.d.ts.map