import { DiscoverEntriesConfig } from './discover-entries-config';
export declare class EntriesDiscoverer {
    private params;
    discoverEntries(params: DiscoverEntriesConfig): Entries;
    private discoverEntriesInPath;
    private getEntriesGlob;
    private validateConfig;
}
export declare type Entries = Record<string, string>;
export declare class EntriesDirDoesntExist extends Error {
    constructor(dirName: string);
}
