import { CommandInterface } from "./interface/command";
import * as Redis from "ioredis";
export declare class DeleteCommand implements CommandInterface {
    protected readonly receiver: Redis.Redis;
    protected readonly keys: string[];
    constructor(receiver: Redis.Redis, keys: string[]);
    execute(): Promise<number>;
}
//# sourceMappingURL=deleteCommand.d.ts.map