import type { TransformOptions } from '@babel/core';
interface BabelConfigOptions {
    enabledReactCompiler?: boolean;
}
interface BabelConfig extends TransformOptions {
    cacheDirectory?: boolean;
}
declare function getBabelCommonConfig(modules?: boolean, options?: BabelConfigOptions): BabelConfig;
export default getBabelCommonConfig;
