export declare const enum InstructionsStorageType { InstructionStorage = "INSTRUCTION_STORAGE", InstructionStorageHolder = "INSTRUCTION_STORAGE_HOLDER" } export declare const enum InstructionsTypeOperations { Insert = "INSERT", Copy = "COPY", Create = "CREATE", Unbind = "UNBIND", Delete = "DELETE" } export interface DeleteInstructionsRequestBody { readonly objectHolderId: string; readonly storageType: InstructionsStorageType; readonly selectObjectId: string; }