import Folder from "./Folder";
import StorageBase from "./StorageBase";
import IStorage from "./IStorage";
export default class Storage extends StorageBase implements IStorage {
    rootFolder: Folder;
    static readonly folderDelimiter = "/";
    constructor();
    joinPath(pathA: string, pathB: string): string;
    static getParentFolderPath(path: string): string;
    getAvailable(): Promise<boolean>;
}
