1 | import { type ChalkInstance } from 'chalk';
|
2 | declare const chalkPipe: (stylePipe?: string, customChalk?: ChalkInstance) => ChalkInstance;
|
3 | export { default as chalk } from 'chalk';
|
4 | export * from 'chalk';
|
5 | export { type KeywordName, keywordNames } from './styles.js';
|
6 | export default chalkPipe;
|