/** * Automated Gates - Layer 1 validation system */ import { ValidationResult } from '../types/fortress-types'; export declare class AutomatedGates { /** * Execute all automated validation gates */ static validateProject(projectPath: string): Promise; /** * Validate Node.js project basics */ private static validateNodeProject; /** * Validate package.json quality and security */ private static validatePackageJson; /** * Validate Git repository setup */ private static validateGitRepository; /** * Validate TypeScript configuration if present */ private static validateTypeScriptConfig; /** * Validate basic security practices */ private static validateSecurityBasics; /** * Validate basic project structure */ private static validateProjectStructure; } //# sourceMappingURL=automated-gates.d.ts.map