import { type Identity } from '@byted-apaas/cli-core-sdk'; interface ModifyFileSilentlyOptions { cwd: string; identity: Identity; workspaceRoot: string; namespace: string; } /** * 静默修改用户代码 * @deprecated 非必要不使用 * @returns 是否修改了文件 */ declare const modifyFileSilently: (options: ModifyFileSilentlyOptions) => Promise; export default modifyFileSilently;