import { CommandInterface } from "./interface/command";
import * as Redis from "ioredis";
export declare class ExpireCommand implements CommandInterface {
    protected readonly receiver: Redis.Redis;
    protected readonly key: string;
    protected readonly seconds: number;
    constructor(receiver: Redis.Redis, key: string, seconds: number);
    execute(): Promise<Redis.BooleanResponse>;
}
//# sourceMappingURL=expireCommand.d.ts.map