export declare const color: { /** * Print your text in red. Send in a OgmaSimpleType and the output will be red. * * @param {OgmaSimpleType} value the OgmaSimpleType you want to print in red */ red: (value: string | number | boolean) => string; /** * Print your text in green. Send in a OgmaSimpleType and the output will be green. * * @param {OgmaSimpleType} value the OgmaSimpleType you want to print in green. */ green: (value: string | number | boolean) => string; /** * Print your text in yellow. Send in a OgmaSimpleType and the output will be yellow. * * @param {OgmaSimpleType} value the OgmaSimpleType you want to print in yellow. */ yellow: (value: string | number | boolean) => string; /** * Print your text in blue. Send in a OgmaSimpleType and the output will be blue. * * @param {OgmaSimpleType} value the OgmaSimpleType you want to print in blue. */ blue: (value: string | number | boolean) => string; /** * Print your text in magenta. Send in a OgmaSimpleType and the output will be magenta. * * @param {OgmaSimpleType} value the OgmaSimpleType you want to print in magenta. */ magenta: (value: string | number | boolean) => string; /** * Print your text in cyan. Send in a OgmaSimpleType and the output will be cyan. * * @param {OgmaSimpleType} value the OgmaSimpleType you want to print in cyan. */ cyan: (value: string | number | boolean) => string; /** * Print your text in white. Send in a OgmaSimpleType and the output will be white. * * @param {OgmaSimpleType} value the OgmaSimpleType you want to print in white. */ white: (value: string | number | boolean) => string; };