import type { GoatCodeConfig } from "../types/config"; export type ValidationResult = { success: true; config: GoatCodeConfig; } | { success: false; errors: string[]; }; export declare function validateConfig(raw: unknown): ValidationResult;