declare class MockChalk { red: (msg: string) => string; yellow: (msg: string) => string; green: (msg: string) => string; cyan: (msg: string) => string; gray: (msg: string) => string; constructor(); } export declare function createChalkMock(): { Chalk: typeof MockChalk; default: Record; }; export {};