import AsyncReader from '../readers/async.js';
import type Settings from '../settings.js';
import type { Entry, Errno } from '../types.js';
export declare type AsyncCallback = (error: Errno, entries: Entry[]) => void;
export default class AsyncProvider {
    private readonly _root;
    private readonly _settings;
    protected readonly _reader: AsyncReader;
    private readonly _storage;
constructor(_root: string, _settings: Settings);
constructor(callback: AsyncCallback): void;
}
