/**
 * Gets files recursively
 * @param folderPath Path to get files from
 * @param extName Extension names to filter files (including `.`)
 */
declare const getFilesRecursively: (folderPath: string, pathsToIgnore?: string[] | undefined, filesToIgnore?: string[] | undefined) => Promise<string[]>;
export default getFilesRecursively;
