import type * as TypeScript from "typescript";
type TypeScriptModule = typeof TypeScript;
interface InstrumentationOptions {
    beforeTest: boolean;
}
export declare const instrumentWithTypeScript: (ts: TypeScriptModule, code: string, sourceFileName: string, options: InstrumentationOptions) => string;
export {};
