import { BaseItemsCommand } from "./BaseItemsCommand"; import { IHistoryArgs } from "../ModelUpdateCommand"; import { Color } from "@aurigma/design-atoms-model/Colors"; import { ClipartItem, ColorGroup } from "@aurigma/design-atoms-model/Product/Items/ClipartItem"; import { IColorWithTitle } from "@aurigma/design-atoms-model/Product/Interfaces"; export declare class ChangeClipartItemColorCommand extends BaseItemsCommand { constructor(historyArgs: IHistoryArgs, args: IChangeClipartItemColorArgs); _executeCommandBody(): Promise; redo(): Promise; undo(): Promise; } export interface IChangeClipartItemColorArgs { clipartItem: ClipartItem | null; colorGroup: ColorGroup | null; newColor: Color | IColorWithTitle | null; }