/**
 * Error handling utilities for validation and general errors
 */
import { ZodError } from 'zod';
/**
 * Format and print Zod validation errors in a user-friendly way
 */
export declare const printZodErrors: (error: ZodError) => void;
/**
 * Handle errors and exit with proper code
 */
export declare const handleError: (error: unknown, exitCode?: number) => never;
//# sourceMappingURL=error.d.ts.map