import * as Types from "./types"; export declare class FileSystemStorage implements Types.IStorage { private readonly directory; constructor(directory: string); getFilename(id: any): string; get(id: string): Promise; set(id: string, wallet: Types.Wallet): Promise; loadAll(): Promise; delete(id: string, password: string): Promise; }