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