export declare class Storage {
    private readonly filePath;
    constructor(filePath: string);
    write<T>(data: Record<string, T>): Promise<void>;
    read<T>(): Promise<Record<string, T> | null>;
}
