declare let enabled: boolean; declare let visible: boolean; declare type Color = (input: string) => string; declare const reset: Color; declare const bold: Color; declare const dim: Color; declare const italic: Color; declare const underline: Color; declare const inverse: Color; declare const hidden: Color; declare const strikethrough: Color; declare const black: Color; declare const red: Color; declare const green: Color; declare const yellow: Color; declare const blue: Color; declare const magenta: Color; declare const cyan: Color; declare const white: Color; declare const gray: Color; declare const grey: Color; declare const bgBlack: Color; declare const bgRed: Color; declare const bgGreen: Color; declare const bgYellow: Color; declare const bgBlue: Color; declare const bgMagenta: Color; declare const bgCyan: Color; declare const bgWhite: Color; declare const blackBright: Color; declare const redBright: Color; declare const greenBright: Color; declare const yellowBright: Color; declare const blueBright: Color; declare const magentaBright: Color; declare const cyanBright: Color; declare const whiteBright: Color; declare const bgBlackBright: Color; declare const bgRedBright: Color; declare const bgGreenBright: Color; declare const bgYellowBright: Color; declare const bgBlueBright: Color; declare const bgMagentaBright: Color; declare const bgCyanBright: Color; declare const bgWhiteBright: Color; declare function stripColor(value: string): string; declare function hasColor(value: string): boolean; declare const ballotDisabled = "\u2612"; declare const ballotOff = "\u2610"; declare const ballotOn = "\u2611"; declare const bullet = "\u2022"; declare const bulletWhite = "\u25E6"; declare const fullBlock = "\u2588"; declare const heart = "\u2764"; declare const identicalTo = "\u2261"; declare const line = "\u2500"; declare const mark = "\u203B"; declare const middot = "\u00B7"; declare const minus = "\uFF0D"; declare const multiplication = "\u00D7"; declare const obelus = "\u00F7"; declare const pencilDownRight = "\u270E"; declare const pencilRight = "\u270F"; declare const pencilUpRight = "\u2710"; declare const percent = "%"; declare const pilcrow2 = "\u2761"; declare const pilcrow = "\u00B6"; declare const plusMinus = "\u00B1"; declare const section = "\u00A7"; declare const starsOff = "\u2606"; declare const starsOn = "\u2605"; declare const upDownArrow = "\u2195"; declare const check: string; declare const cross: string; declare const ellipsisLarge: string; declare const ellipsis: string; declare const info: string; declare const question = "?"; declare const questionSmall: string; declare const pointer: string; declare const pointerSmall: string; declare const radioOff: string; declare const radioOn: string; declare const warning: string; export { ballotDisabled, ballotOff, ballotOn, bgBlack, bgBlackBright, bgBlue, bgBlueBright, bgCyan, bgCyanBright, bgGreen, bgGreenBright, bgMagenta, bgMagentaBright, bgRed, bgRedBright, bgWhite, bgWhiteBright, bgYellow, bgYellowBright, black, blackBright, blue, blueBright, bold, bullet, bulletWhite, check, cross, cyan, cyanBright, dim, ellipsis, ellipsisLarge, enabled, fullBlock, gray, green, greenBright, grey, hasColor, heart, hidden, identicalTo, info, inverse, italic, line, magenta, magentaBright, mark, middot, minus, multiplication, obelus, pencilDownRight, pencilRight, pencilUpRight, percent, pilcrow, pilcrow2, plusMinus, pointer, pointerSmall, question, questionSmall, radioOff, radioOn, red, redBright, reset, section, starsOff, starsOn, strikethrough, stripColor, underline, upDownArrow, visible, warning, white, whiteBright, yellow, yellowBright };