export interface ValidationResult { isValid: boolean; error?: string; } export declare function validateDirectory(dirPath: string): Promise;