import { Redis } from './Redis'; export declare type Cmd = { title?: string; cmd: string[] | string; args?: string[]; var?: any; }; export declare class Live extends Redis { history?: boolean | 'clean'; limit?: number; private _cmdCaches?; constructor(); init(props: { uri: string; title?: string; description?: string; history?: boolean | 'clean'; limit?: number; }): void; prepare(): Promise; exec(): Promise; }