import { Storage } from './Storage'; export declare class FSStorage implements Storage { private readonly path; constructor(path: string); private readObject; private writeObject; setItem(key: string, value: string): Promise; getItem(key: string): Promise; removeItem(key: string): Promise; }