/** * File Scanner - Find relevant files in project * Supports Next.js, React, Vue, and other frontend frameworks */ export declare class FileScanner { /** * Find all React/Next.js/Vue component files */ static findComponentFiles(projectPath: string): Promise; /** * Find API route files (backend) */ static findAPIRouteFiles(projectPath: string): Promise; /** * Find files that contain API calls */ static findFilesWithAPICalls(projectPath: string): Promise; /** * Quick check if file contains API calls */ private static containsAPICalls; /** * Detect project framework */ static detectFramework(projectPath: string): Promise; /** * Check if project has authentication setup */ static hasAuthenticationSetup(projectPath: string): Promise; /** * Find authentication configuration files */ static findAuthConfigFiles(projectPath: string): Promise; /** * Read file content safely */ static readFile(filePath: string): Promise; /** * Get relative path from project root */ static getRelativePath(projectPath: string, filePath: string): string; } //# sourceMappingURL=file-scanner.d.ts.map