interface TscOption {
    target: string;
    module: string;
    inlineSourceMap: boolean;
    outDir?: string;
    removeComments: boolean;
    esModuleInterop: boolean;
    forceConsistentCasingInFileNames: boolean;
    strict: boolean;
    skipLibCheck: boolean;
    moduleResolution: string;
}
declare const compileAll: (clientRoot: string, outDir: string, tscOptions: TscOption) => Promise<string | false | undefined>;
export { TscOption, compileAll };
