export declare class cache { static set(key: string, value: string, ttl: number): void; static get(key: string): string | null; }