/** Retrieve file paths from a given folder and its subfolders. */ export declare type filePath = { basename: string; path: string; ext: string; parent: string; }; export declare const getFilePaths: (folderPath: string, { include_files, ignore }: { include_files?: boolean | undefined; ignore?: string[] | undefined; }) => string[]; export declare const getPathsForSpecificExtensions: (folderPath: string, Extensions: string[]) => filePath[];