import { Surface } from "@aurigma/design-atoms-model/Product/Surface";
import { ModelUpdateCommand, IHistoryArgs } from "../ModelUpdateCommand";
export declare abstract class BaseSurfaceCommand<TArgs, TResult> extends ModelUpdateCommand<TArgs, TResult> {
    protected surface: Surface;
    constructor(surface: Surface, historyArgs: IHistoryArgs, args?: TArgs);
}
