export declare class Store<T> {
    store: Map<string, T>;
    constructor(data?: Record<string, T>);
    get(key: string): T | undefined;
    set(key: string, value: T): void;
    forEach(fn: (value: T, key: string) => void): void;
}
