import { EntryAsync } from "./EntryAsync";
import { Entry, LocalFileSystem } from "./filesystem";
import { FileSystemAsync } from "./FileSystemAsync";
export declare class LocalFileSystemAsync {
    localFileSystem: LocalFileSystem;
    constructor(localFileSystem: LocalFileSystem);
    get PERSISTENT(): number;
    get TEMPORARY(): number;
    requestFileSystemAsync(type: number, size: number): Promise<FileSystemAsync>;
    resolveLocalFileSystemAsyncURL(url: string): Promise<EntryAsync<Entry>>;
}
//# sourceMappingURL=LocalFileSystemAsync.d.ts.map