import "@bfsx/typings"; import type { IProblemConfig } from "../types/problem.type.js"; /** * 打包入口 * @param options */ export declare function bundle(options: IProblemConfig): Promise; /** * 搜索文件获取地址 * @param src 搜索文件路径 * @param nameReg 搜索文件正则 * @returns */ export declare function searchFile(src: string, nameReg: RegExp): Promise;