import type { ValidationResult, ScanResult } from './types.js'; /** * 워크스페이스 폴더 검증기 */ export declare class WorkspaceValidator { private parser; private workspaceRoot; constructor(workspaceRoot: string); /** * 폴더 경로 검증 */ validateFolder(folderPath: string): ValidationResult; /** * 폴더 경로에서 폴더명 추출 */ private extractFolderName; /** * 사용자 질문 메시지 생성 */ private generateQuestionMessage; /** * 모든 정의된 프로젝트 목록 가져오기 */ getDefinedProjects(): string[]; /** * 워크스페이스 전체 스캔 - 정의되지 않은 폴더 찾기 */ scanWorkspace(): ScanResult; } //# sourceMappingURL=validator.d.ts.map