import { CompilerOptions } from 'typescript';
export declare function transpileFile(contents: string, options: CompilerOptions, basePath: string, moduleName: string): {
    content: string;
    sourceMap: string;
};
