export declare class RepomixError extends Error { constructor(message: string, options?: ErrorOptions); } export declare class RepomixConfigValidationError extends RepomixError { constructor(message: string, options?: ErrorOptions); } export declare class OperationCancelledError extends RepomixError { constructor(message?: string); } export declare const handleError: (error: unknown) => void; export declare const rethrowValidationErrorIfSchemaError: (error: unknown, message: string) => void;