import { BaseItemsCommand } from "./BaseItemsCommand"; import { IHistoryArgs } from "../ModelUpdateCommand"; import { Item } from "@aurigma/design-atoms-model/Product/Items"; import { ItemsDataApplier } from "../../Services/ItemsDataApplier"; import { ItemType, ICreateItemCommandArgs as ICreateItemCommandArgsAbstraction } from "@aurigma/design-atoms-interfaces"; import { ProductHandler } from "../../Services"; export interface ICreateItemCommandArgs extends ICreateItemCommandArgsAbstraction { } export declare class CreateItemCommand extends BaseItemsCommand { private _itemsDataApplier; constructor(productHandler: ProductHandler, _itemsDataApplier: ItemsDataApplier, historyArgs: IHistoryArgs, args: ICreateItemCommandArgs); _executeCommandBody(): Promise; redo(): Promise; undo(): Promise; } export declare namespace ItemTypeNs { const isText: (type: ItemType) => boolean; const getType: (item: Item) => ItemType; }