export declare class LocalStorage {
    tablePath: string;
    /**
     * LocalStorage adapter for the database app
     * @param options
     * @param path a path to the folder, where to store data
     */
    constructor(options: {
        path: string;
    });
}
