type DebugFunction = (...args: unknown[]) => void; declare function getDebug(topic: string): DebugFunction; declare function enableDebug(topic: string): void; declare function cleanupLogStreams(): void; export { type DebugFunction, cleanupLogStreams, enableDebug, getDebug };