/**======================================================== This script generate indexes automatically for a folder given a matching pattern. For example it will reference all .svc files found in subdirectories in an index file set in the CONFIGS variable *========================================================*/ export type AutoIndexFileConfig = { path: string; match: RegExp; indexFileName: string; }; export declare function autoIndex(fileConfigs: AutoIndexFileConfig[], basePath: string): Promise;