import { BaseItemsCommand } from "./BaseItemsCommand";
import { IHistoryArgs } from "../ModelUpdateCommand";
import { Item, BaseTextItem } from "@aurigma/design-atoms-model/Product/Items";
import { CommandManager } from "../CommandManager";
export declare class FixUnsupportedTextCommand extends BaseItemsCommand<IFixUnsupportedTextCommandArgs, BaseTextItem> {
    private _commandManager;
    constructor(historyArgs: IHistoryArgs, args: IFixUnsupportedTextCommandArgs, _commandManager: CommandManager);
    _executeCommandBody(): Promise<BaseTextItem>;
    redo(): Promise<void>;
    undo(): Promise<void>;
}
export interface IFixUnsupportedTextCommandArgs {
    item: Item;
}
