import * as ts from 'typescript';
import { IStatementReplaceableCollection, IWebWorkerItem } from '../analysis/fastAnalysis';
export interface ITypescriptTransformProps extends ts.TranspileOptions {
    input: string;
    webWorkers?: Array<IWebWorkerItem>;
    replacements?: IStatementReplaceableCollection;
}
export declare function tsTransform(props: ITypescriptTransformProps): ts.TranspileOutput;
