type DebugFunction = ((formatter: any, ...args: any[]) => void) & {
    readonly enabled: boolean;
};
declare function createDebug(prefix?: string): DebugFunction;
export { createDebug };
