/** * Get all filepaths in a directory, recursively * * @param dirPath - The directory path * @param arrayOfFiles - An array of files to add to * @returns array of filepaths */ export declare function getFilesRecursive(dirPath: string, arrayOfFiles?: string[]): string[];