import { Command } from '@my-devkit/core'; import { CreateEnumerationCommand } from './create-enumeration-command'; import { CreateEnumerationPropertyCommand } from './create-enumeration-property-command'; import { DeleteEnumerationCommand } from './delete-enumeration-command'; import { DeleteEnumerationPropertyCommand } from './delete-enumeration-property-command'; type CommandType = CreateEnumerationCommand | CreateEnumerationPropertyCommand | DeleteEnumerationPropertyCommand | DeleteEnumerationCommand; export declare class CreateEnumerationChangeCommand extends Command { projectId: string; storyId: string; sectionId: string; enumerationId: string; description: string; commands: CommandType[]; constructor(); static OnDeserialized(instance: CreateEnumerationChangeCommand, json: Record): void; static OnSerialized(instance: CreateEnumerationChangeCommand, json: Record): void; } export {};