/** Get a list of files recursively from a directory */
export declare function getFilesRecursive(
/** Directory  where to look  for  the files */
dir: string, 
/** List of folders we would like to exclude when looking out for files */
omitFolders?: string[]): string[];
