import { IOrder } from "../../IOrder";
/**
 * Item prop names and option prop names need to be unique.
 * They cannot have any overlap with elements.
 */
declare class Migration implements IOrder {
    execute(projectJson: unknown): void;
}
declare const migration: Migration;
export default migration;
