import type { JSCodeshift, Transform, Core } from 'jscodeshift'; export declare type Context = { root: ReturnType; j: JSCodeshift; filename: string; }; export declare type ASTTransformation = { (context: Context, params: Params): void; }; export default function astTransformationToJSCodeshiftModule(transformAST: ASTTransformation): Transform;