export = getFilesPath;
/**
 * 基于glob的文件遍历函数，返回基于目录分类的二维数组
 *
 * @param {GetFilesCodeOptions} options 配置参数
 * @returns {string[][]}
 * @ignore
 */
declare function getFilesPath({ dir, files }: GetFilesCodeOptions): string[][];
declare namespace getFilesPath {
    export { GetFilesCodeOptions };
}
/**
 * 获取源代码的文件路径配置参数
 */
type GetFilesCodeOptions = {
    /**
     * glob路径
     */
    dir: string;
    /**
     * glob文件名称数组
     */
    files: string[];
};
