export declare const connect: () => Promise; export declare const get: (key: string | number) => Promise; export declare const set: (key: string | number, value: any, ttlSeconds?: number) => Promise; export declare const disconnect: () => Promise; export declare const del: (key: string | number) => Promise;