/** * User-friendly error formatting for CLI. * * Provides helpful error messages with context and suggestions. */ export interface FormattedError { /** The error message */ message: string; /** Optional suggestion for fixing the error */ suggestion?: string; /** Exit code to use */ exitCode: number; } /** * Format an error for CLI output. * @param error */ export declare const formatError: (error: unknown) => FormattedError; /** * Format validation errors with details. * @param errors */ export declare const formatValidationErrors: (errors: Array<{ property: string; message: string; }>) => FormattedError; //# sourceMappingURL=error-formatter.d.ts.map