/** * cache the value for target and key * @param target - target * @param key - key * @param value - value */ export declare function set(target: any[], key: string, value: T): T; /** * get the cached value for target and key * @param target - target * @param key - key */ export declare function get(target: any[], key: string): T | undefined;