import * as SWC from "./swc"; export interface ModuleInfo { imported: string[]; importedBy: string[]; withTopLevelAwait: boolean; transformNeeded: boolean; } export type BundleInfo = Record; export declare function parseBundleAsts(bundleChunks: Record): Promise>; export declare function parseBundleInfo(bundleAsts: Record): Promise;