import type Chalk from 'chalk';
/**
 * 获取 chalk 库
 * chalk 是一个用于在终端输出彩色文本的第三方库
 * @returns chalk 库
 * @example
 * ```ts
 * const chalk = getChalk();
 * console.log(chalk.red('error message'));
 * ```
 */
export declare function getChalk(): typeof Chalk;
