import { ICommand, CommandItem } from './types';
export default class Command implements ICommand {
    private commandArr;
    constructor();
    add(command: CommandItem): this;
    remove(command: CommandItem): this;
    undo(): this;
    reset(): this;
    execute(): void;
}
//# sourceMappingURL=index.d.ts.map