import { R, RecordNode, RT } from "../../../r";
import { IOrder } from "../../IOrder";
/**
 * @description Converts t type project json to r type project json
 */
declare class Migration implements IOrder {
    execute(projectJson: unknown): RecordNode<RT.project>;
}
declare const migration: Migration;
export default migration;
export declare const migrateElement: (tElement: any) => R.RecordNode<R.RT.element>;
