/** * 更新 iwiki 文档内容 * 使用 POST /v2/doc/save 接口,通过 force: true 强制保存 */ export declare function updateIwikiDoc({ prefix, id, spacekey, title, body, contenttype, otherData, paasId, paasToken, force, }: { prefix: string; id: number | string; spacekey: string; title?: string; body?: string; contenttype?: string; otherData?: any; paasId: string; paasToken: string; force?: boolean; }): Promise<{ code: string; msg: string; data: any; request_id: string; }>;