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