//#region src/server/colors/underline.d.ts
/**
 * Underlined text. 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.underline('hello'));
 */
declare function underline(text: string): string;
//#endregion
export { underline };