/**
 * 根据文件路径判断是否存在
 * @param filePath 路径
 * @returns
 */
export declare function isFileExisted(filePath: string): boolean;
/**
 * 获取 debug.json
 * @returns
 */
export declare function getDebugConfig(): any;
/**
 * 是否存在 debug.json
 * @returns
 */
export declare function hasDebugConfig(): boolean;
export declare function selectDebugConfiguration(configurations: {
    debugName: string;
}[]): Promise<any>;
