/** * Remove memoized/cached state based on a key * * @export * @param {string} key * @param {{ cache: boolean }} [options={ cache: true }] * @returns */ export declare function unsetState(key: string, options?: { cache: boolean; }): Promise;