import type { SecurityRule } from "../data/rules/types.js"; interface FileInput { path: string; content: string; } export declare function checkProject(files: FileInput[], format?: "markdown" | "json", rules?: SecurityRule[]): string; export {};