import { IOrder } from "../../IOrder";
/**
 * Adds predefined variables to the project json
 */
declare class Migration implements IOrder {
    execute(projectJson: unknown): void;
}
declare const migration: Migration;
export default migration;
