import SyncReader from '../readers/sync.js';
import type Settings from '../settings.js';
import type { Entry } from '../types.js';
export default class SyncProvider {
    private readonly _root;
    private readonly _settings;
    protected readonly _reader: SyncReader;
constructor(_root: string, _settings: Settings);
constructor(): Entry[];
}
