export declare function getStringValuesRecursive(path: string, ext?: string): string[]; export interface IModuleExport { relativePath: string; export: string; value: any; } export declare function getModuleExportsRecursive(path: string, relativeBasePath?: string, ext?: string): IModuleExport[];