/** * generate_sbom Tool * * Generates Software Bill of Materials (SBOM) in industry-standard formats: * - SPDX 2.3 (Linux Foundation standard) * - CycloneDX 1.4 (OWASP standard) * * Architecture: pure in-process generation — parses the dependency manifest, * builds the SPDX/CycloneDX JSON structures inline. No CLI shell-out, no network. * Same parsers as scan_dependencies (npm/pip/maven/gradle/go). */ export declare const generateSBOMTool: { name: string; description: string; readOnlyHint: boolean; inputSchema: { type: string; properties: { content: { type: string; description: string; }; type: { type: string; enum: string[]; description: string; }; format: { type: string; enum: string[]; description: string; default: string; }; projectName: { type: string; description: string; }; projectVersion: { type: string; description: string; }; }; required: string[]; }; }; export declare function handleGenerateSBOM(args: any): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=sbom.d.ts.map