export declare class PluginStore {
private static instance;
private dataMap;
private constructor();
set(key: string, value: unknown): void;
get<T>(key: string): T | undefined;
private clear;
static destroy(): void;
static getInstance(): PluginStore;
}