import type { MemoryVolume } from "./memory-volume"; export declare function prepareTransformer(): Promise; export declare function isTransformerLoaded(): boolean; export declare function convertFile(source: string, filePath: string): Promise; export declare function convertFileDirect(source: string, filePath: string): Promise; export declare function convertPackage(vol: MemoryVolume, packageDir: string, onProgress?: (msg: string) => void): Promise;