import tsc from 'typescript'; export interface CompileOptions { tsPath: string; jsPath: string; compilerOptions: tsc.CompilerOptions; } export declare const compile: (options: CompileOptions) => void;