import { PrimaryKey } from '../common'; export interface CleanCacheType { action: 'clear'; payload: { key: string; id: PrimaryKey; }; } export declare class CacheHelper { static pubClear({ key, id }: { id?: PrimaryKey; key: string; }): void; static clear({ key, id }: { id?: PrimaryKey; key: string; }): void; }