export interface DebugFn { (template: string, ...args: unknown[]): void; extend: (suffix: string) => DebugFn; /** whether this namespace is currently switched on — guard expensive arg-building with it */ readonly enabled: boolean; } export declare function createDebug(namespace: string): DebugFn; //# sourceMappingURL=debug.d.ts.map