import { Item } from "@aurigma/design-atoms-model/Product/Items";
import { IHistoryArgs } from "../ModelUpdateCommand";
import { BaseItemsCommand } from "./BaseItemsCommand";
import { ProductHandler } from "../../Services/ProductHandler";
import { IPlaceholderContentResetCommandArgs as IPlaceholderContentResetCommandArgsAbstraction } from "@aurigma/design-atoms-interfaces";
export interface IPlaceholderContentResetCommandArgs extends IPlaceholderContentResetCommandArgsAbstraction<Item> {
}
export declare class PlaceholderContentResetCommand extends BaseItemsCommand<IPlaceholderContentResetCommandArgs, void> {
    constructor(productHandler: ProductHandler, args: IPlaceholderContentResetCommandArgs, historyArgs: IHistoryArgs);
    _executeCommandBody(): Promise<void>;
    redo(): Promise<void>;
    undo(): Promise<void>;
}
