import { Database } from "./database"; export declare class Redis extends Database { name: string; get(key: string, callback?: Function | null): Promise; set(key: any, value: any, expireTimeInMiliseconds?: null, callback?: Function | null): Promise; connect(): Promise; close(): void; }