interface ErrorContext {
    message?: string;
    exit?: boolean;
    verbose?: boolean;
}
export declare const handleSuccess: (message: string) => void;
export declare const handleError: (error: unknown, context?: ErrorContext) => void;
export {};
