import type { TransformOptions } from '@jest/transform';
export interface BabelTransformOptions {
    sourceText: string;
    sourcePath: string;
    config: TransformOptions<any>;
}
export declare function babelTransform(opts: BabelTransformOptions): string;
