type ChalkMethod = ((s: any) => string) & { bold: ChalkMethod; }; export declare class ChalkService { init(): Promise; } export interface ChalkService { bold: ChalkMethod & ChalkService; black: ChalkMethod; blackBright: ChalkMethod; red: ChalkMethod; redBright: ChalkMethod; green: ChalkMethod; greenBright: ChalkMethod; yellow: ChalkMethod; yellowBright: ChalkMethod; blue: ChalkMethod; blueBright: ChalkMethod; magenta: ChalkMethod; magentaBright: ChalkMethod; cyan: ChalkMethod; cyanBright: ChalkMethod; white: ChalkMethod; whiteBright: ChalkMethod; } export {};