import ts from "typescript"; import type { Options } from "./options"; export { defaultOptions } from "./options/index.js"; export type { Options }; /** * Result of transpiling a single source file. */ export declare type Result = { code: string; filepath: string; tsOutput: ts.TranspileOutput; }; /** * Transpile files in `srcDir` and save the outputs in `outDir`. */ export declare const transpileModules: ( srcDir: string, outDir: string, options?: Partial | undefined ) => Promise; //# sourceMappingURL=index.d.ts.map