import { BaseProductCommand } from "./BaseProductCommand"; import { Product } from "@aurigma/design-atoms-model/Product/Product"; import { BaseTextItem } from "@aurigma/design-atoms-model/Product/Items/BaseTextItem"; import { IHistoryArgs } from "../ModelUpdateCommand"; import { ProductHandler } from "../../Services/ProductHandler"; import { Canvas } from "../../Canvas"; export declare class ReplaceInterpolationPlaceholdersCommand extends BaseProductCommand { private _productHandler; private _canvas; constructor(_productHandler: ProductHandler, historyArgs: IHistoryArgs, product: Product, _canvas: Canvas); _executeCommandBody(): Promise; replaceInterpolationPlaceholders(): BaseTextItem[]; redo(): Promise; undo(): Promise; }