/** * OpenAPI Security Scanner * * Validates OpenAPI/Swagger specifications for security issues * using Spectral with security-focused rules. * * @module scanners/openapi */ import type { ScannerResult, ScannerAvailability } from "./types.js"; export declare function checkSpectralAvailable(): Promise; export declare function runSpectral(specPath: string, options?: { timeout?: number; rulesetPath?: string; }): Promise; export declare function findOpenAPISpecs(projectPath: string): Promise; export declare function runOpenAPIScan(projectPath: string, options?: { timeout?: number; }): Promise; export declare function detectOpenAPI(projectPath: string): Promise; //# sourceMappingURL=openapi.d.ts.map