export type ExtraText = {
    color?: string | {
        value: string;
    };
    bold?: boolean | {
        value: boolean;
    };
    text: string | {
        value: string;
    };
    extra?: ExtraText[] | {
        value: {
            value: ExtraText[];
        };
    };
    value?: ExtraText[];
};
export declare function colorizeExtra(extra: ExtraText): string;
declare const colorizer: (color: string, text: string, bold: boolean) => string;
export default colorizer;
