/** * Mock implementation of chalk for testing */ declare const mockChalk: { green: (str: string) => string; red: (str: string) => string; yellow: (str: string) => string; blue: (str: string) => string; cyan: (str: string) => string; gray: (str: string) => string; grey: (str: string) => string; bold: (str: string) => string; dim: (str: string) => string; }; export default mockChalk; //# sourceMappingURL=chalk.d.ts.map