import { WithConfig } from '../app';
export declare const SERVERSTATEDIRNAME = "serverState";
export declare class Store {
    private filePath;
    private fileName;
    private initPromise;
    constructor(server: WithConfig, storePath: string, fileName?: string);
    waitForInit(): Promise<void>;
    read(): Promise<any>;
    write(data: any): Promise<void>;
    private init;
}
//# sourceMappingURL=store.d.ts.map