/** * 脱敏处理——移除敏感信息。 * 替换 API key / HMAC key / 密钥 / token 等。 */ export declare function sanitize(text: string): string; /** * 生成 support-bundle zip 文件。 * * 使用 archiver 打包以下内容: * version.txt / doctor-output.txt / audit-log-recent.jsonl / * config-summary.yml / install-info.txt * * @param outputDir 输出目录(默认 data/support-bundles/) * @returns 生成的 zip 文件路径 */ export declare function generateSupportBundle(outputDir?: string): Promise; //# sourceMappingURL=support-bundle.d.ts.map