import { Observable } from 'rxjs'; import type { ParamsChanged } from '../../types/setup'; /** * Sets up the module params broadcasting for streaming parameter changes. * Broadcasts parameter changes to each affected module via `streamParams::`. * * @param moduleParams$ - Observable of module parameter changes * @param teardowns - Array to collect cleanup functions for unsubscribing * * @internal */ export default function setupModuleParams(moduleParams$: Observable, teardowns: (() => void)[]): void; //# sourceMappingURL=moduleParams-setup.d.ts.map