declare global {
    interface Console {
        style: {
            (...args: any): void;
            wrap?: (text: string, rules: string) => string;
        };
        errorStyle: (...args: any[]) => void;
        colors: Record<string, (text: string) => string>;
    }
}
export {};
