import { ansi256 } from "./ansi256.js";
import { bgAnsi256 } from "./bgAnsi256.js";
import { bgBlack } from "./bgBlack.js";
import { bgBlackBright } from "./bgBlackBright.js";
import { bgBlue } from "./bgBlue.js";
import { bgBlueBright } from "./bgBlueBright.js";
import { bgCyan } from "./bgCyan.js";
import { bgCyanBright } from "./bgCyanBright.js";
import { bgGreen } from "./bgGreen.js";
import { bgGreenBright } from "./bgGreenBright.js";
import { bgHex } from "./bgHex.js";
import { bgMagenta } from "./bgMagenta.js";
import { bgMagentaBright } from "./bgMagentaBright.js";
import { bgRed } from "./bgRed.js";
import { bgRedBright } from "./bgRedBright.js";
import { bgRgb } from "./bgRgb.js";
import { bgWhite } from "./bgWhite.js";
import { bgWhiteBright } from "./bgWhiteBright.js";
import { bgYellow } from "./bgYellow.js";
import { bgYellowBright } from "./bgYellowBright.js";
import { black } from "./black.js";
import { blackBright } from "./blackBright.js";
import { blue } from "./blue.js";
import { blueBright } from "./blueBright.js";
import { bold } from "./bold.js";
import { cyan } from "./cyan.js";
import { cyanBright } from "./cyanBright.js";
import { dim } from "./dim.js";
import { green } from "./green.js";
import { greenBright } from "./greenBright.js";
import { hex } from "./hex.js";
import { hidden } from "./hidden.js";
import { inverse } from "./inverse.js";
import { italic } from "./italic.js";
import { magenta } from "./magenta.js";
import { magentaBright } from "./magentaBright.js";
import { red } from "./red.js";
import { redBright } from "./redBright.js";
import { reset } from "./reset.js";
import { rgb } from "./rgb.js";
import { strikethrough } from "./strikethrough.js";
import { underline } from "./underline.js";
import { white } from "./white.js";
import { whiteBright } from "./whiteBright.js";
import { yellow } from "./yellow.js";
import { yellowBright } from "./yellowBright.js";

//#region src/server/colors/index.d.ts
declare const colors: Readonly<{
  reset: typeof reset;
  bold: typeof bold;
  dim: typeof dim;
  italic: typeof italic;
  underline: typeof underline;
  inverse: typeof inverse;
  hidden: typeof hidden;
  strikethrough: typeof strikethrough;
  black: typeof black;
  red: typeof red;
  green: typeof green;
  yellow: typeof yellow;
  blue: typeof blue;
  magenta: typeof magenta;
  cyan: typeof cyan;
  white: typeof white;
  gray: typeof blackBright;
  blackBright: typeof blackBright;
  redBright: typeof redBright;
  greenBright: typeof greenBright;
  yellowBright: typeof yellowBright;
  blueBright: typeof blueBright;
  magentaBright: typeof magentaBright;
  cyanBright: typeof cyanBright;
  whiteBright: typeof whiteBright;
  bgBlack: typeof bgBlack;
  bgRed: typeof bgRed;
  bgGreen: typeof bgGreen;
  bgYellow: typeof bgYellow;
  bgBlue: typeof bgBlue;
  bgMagenta: typeof bgMagenta;
  bgCyan: typeof bgCyan;
  bgWhite: typeof bgWhite;
  bgBlackBright: typeof bgBlackBright;
  bgRedBright: typeof bgRedBright;
  bgGreenBright: typeof bgGreenBright;
  bgYellowBright: typeof bgYellowBright;
  bgBlueBright: typeof bgBlueBright;
  bgMagentaBright: typeof bgMagentaBright;
  bgCyanBright: typeof bgCyanBright;
  bgWhiteBright: typeof bgWhiteBright;
  ansi256: typeof ansi256;
  bgAnsi256: typeof bgAnsi256;
  rgb: typeof rgb;
  bgRgb: typeof bgRgb;
  hex: typeof hex;
  bgHex: typeof bgHex;
}>;
//#endregion
export { colors };