export declare const LISTINGS = "LISTINGS"; export declare const SUBSCRIPTIONS = "SUBSCRIPTIONS"; export declare const USERS = "USERS"; export declare class RedisService { private redis; setJson(id: string, value: any): Promise; delete(id: string): Promise; getJson(id: string, prefix: string): Promise; getId(prefix: 'LISTINGS' | 'SUBSCRIPTIONS' | 'USERS'): Promise; search(prefix: 'LISTINGS' | 'SUBSCRIPTIONS' | 'USERS', clause: string): Promise; }