import { DiscoverEntriesParams } from "./discover-entries-params";
export declare class DiscoverEntriesConfig {
    readonly basePath: string;
    readonly entriesDirName: string;
    readonly entryFilename: string;
    readonly entryExtensions: string[];
    constructor(params?: DiscoverEntriesParams);
    get entriesPath(): string;
}
