import { CompilerOptions } from 'typescript';
export interface Register {
cwd: string;
extensions: string[];
cacheDirectory: string;
compile(code: string, fileName: string): string;
}
export declare function transpileNode(cwd: string, compilerOptions: CompilerOptions): void;