/** * SARIF (Static Analysis Results Interchange Format) Converter * Converts LLMS SDK security scan results to SARIF format for GitHub Security tab */ /** * Convert security scan results to SARIF format */ export declare class SarifConverter { private static readonly SARIF_SCHEMA; private static readonly TOOL_NAME; private static readonly TOOL_VERSION; private static readonly TOOL_URI; /** * Convert security scan results to SARIF format */ static convertToSarif(resultsPath: string, outputPath?: string): Promise; /** * Build SARIF report structure */ private static buildSarifReport; /** * Build SARIF rules from security issues */ private static buildRules; /** * Build SARIF results from security issues */ private static buildResults; /** * Generate mock issues from scan results summary */ private static generateMockIssues; /** * Build tags for SARIF rule */ private static buildTags; /** * Get precision based on issue level */ private static getPrecision; /** * Get security severity score for SARIF */ private static getSecuritySeverity; } //# sourceMappingURL=sarif-converter.d.ts.map