export declare const validateProjectName: (name: string) => { valid: boolean; error?: string; }; export declare const validateDirExists: (dirPath: string) => Promise; export declare const validateNonEmptyDir: (dirPath: string) => Promise; /** * Validate that we're in a dbt project directory */ export declare const validateDbtProject: (projectPath?: string) => Promise<{ valid: boolean; error?: string; }>; /** * Validate that dbt models directory exists */ export declare const validateDbtModels: (projectPath?: string) => Promise<{ valid: boolean; error?: string; }>; //# sourceMappingURL=validation.d.ts.map