declare function get(key: string): T | null; declare function set(key: string, value: any, duration?: number): boolean; declare function clear(key?: string): void; declare const _default: { get: typeof get; set: typeof set; clear: typeof clear; }; export default _default;