import { IOrder } from "../../IOrder";
/**
 * Converts on_click_new in the json (create by fv4 editor) to on_click
 * The on_click created by the fv4 editor would already have been converted to on_been_clicked by this point in t migration m005_006_connection_events.ts
 *
 * fv4 on_click = v5 on_been_clicked
 * fv4 on_click_new = v5 on_click
 */
declare class Migration implements IOrder {
    execute(projectJson: unknown): void;
}
declare const migration: Migration;
export default migration;
