export declare let isDebugEnabled: boolean; export declare function setDebugEnabled(enabled: boolean): void; export type ChalkColor = "blue" | "red" | "green" | "yellow" | "cyan" | "magenta" | "gray" | "grey" | "white" | "black" | "dim"; export declare const debugLog: (message: string, color?: ChalkColor | null, ...optionalParams: any[]) => void;