import { StorageAdapter } from "../interfaces/StorageAdapter"; export declare class NodeFSStorageAdapater implements StorageAdapter { basePath: string; constructor(basePath: string); set(paths: string, value: string): Promise; get(paths: string): Promise; exists(paths: string): Promise; }