//#region src/server/colors/blackBright.d.ts
/**
 * Bright black (gray) foreground. Wraps text with ANSI codes.
 *
 * @param text - The text to style.
 * @returns The styled text.
 *
 * @example
 * import { colors } from 'es-toolkit/server';
 *
 * console.log(colors.blackBright('hello'));
 */
declare function blackBright(text: string): string;
//#endregion
export { blackBright };