declare type OperationType = 'createComponent' | 'removeComponent' | 'modifyComponentProperties' | 'modifyComponentId' | 'adjustComponentOrder' | 'createTrait' | 'removeTrait' | 'modifyTraitProperty' | 'replaceApp' | 'pasteComponent' | 'moveComponent' | 'createDataSource'; declare type Operation = { type: OperationType; props: Record; }; export declare type Operations = Operation[]; export {};