/** * Terraform/IaC Scanner Integration * * Scans Infrastructure as Code for security misconfigurations * using tfsec and checkov. * * @module scanners/terraform */ import type { ScannerResult, ScannerAvailability } from "./types.js"; export declare function checkTfsecAvailable(): Promise; export declare function checkCheckovAvailable(): Promise; export declare function runTfsec(projectPath: string, options?: { timeout?: number; }): Promise; export declare function runCheckov(projectPath: string, options?: { timeout?: number; framework?: string; }): Promise; export declare function runTerraformScanners(projectPath: string, options?: { timeout?: number; }): Promise; export declare function detectTerraform(projectPath: string): Promise; //# sourceMappingURL=terraform.d.ts.map