import { ScanResult } from '../types';
interface SarifLog {
    $schema: string;
    version: string;
    runs: Array<{
        tool: {
            driver: {
                name: string;
                informationUri?: string;
                rules?: any[];
            };
        };
        results: any[];
    }>;
}
export declare function toSarif(results: ScanResult[], repoRoot: string): SarifLog;
export {};
