/** * GitLeaks Wrapper * GitLeaks 도구를 실행하고 결과를 파싱합니다. * * @author zerry */ import type { SecurityIssue } from '../types.js'; /** * GitLeaks를 사용하여 시크릿 스캔 */ export declare function scanWithGitLeaks(code: string, filename?: string): Promise;