import { IOrder } from "../../IOrder";
/**
 * assigns value opposite of no_click_animation to hover_animation as no_click_animation
 * has a negative tone to it, confusing the user
 */
declare class Migration implements IOrder {
    execute(projectJson: unknown): void;
}
declare const migration: Migration;
export default migration;
