import type { ExportedWildcardVariableJS, ModuleJS } from '../typings';
export declare function analyze(code: string, id: string): ModuleJS;
export declare function getDependencyStatements(code: string): RegExpMatchArray;
export declare function replaceNamelessDefaultExport(code: string): string;
export declare function replaceWildcardDefaultExport(code: string, wildcard: ExportedWildcardVariableJS): string;
export declare function tempFix(id: string, code: string, fromWorker: boolean): string;
