export interface ProjectValidationResult { isValid: boolean; projectName?: string; error?: string; } /** * Validate if the given directory is a valid ARK project */ export declare function validateProjectStructure(projectDir: string): ProjectValidationResult; /** * Validate project structure and throw detailed error if invalid */ export declare function validateProjectStructureStrict(projectDir: string): string; /** * Get the current project directory (current working directory) */ export declare function getCurrentProjectDirectory(): string; /** * Check if the current directory is a valid ARK project */ export declare function validateCurrentProject(): ProjectValidationResult; /** * Get current project info with strict validation */ export declare function getCurrentProjectInfo(): { projectName: string; projectDir: string; };