export interface PathGlobs { includes: string[]; excludes: string[]; } /** * 获取源码文件的收集范围,在打包上传时使用 * @param workspaceRoot * @param ignoreWorkspaceConfigFile 这个标识是为了兼容旧版的感知逻辑,新版中 kldx-project.json 会被忽略掉 */ export declare function getPathGlobsShouldServerAware(workspaceRoot: string, ignoreWorkspaceConfigFile?: boolean): PathGlobs;