import { Signal } from '@angular/core'; type CreateNotifierOptions = { deps?: Signal[]; depsEmitInitially?: boolean; }; /** * Creates a signal notifier that can be used to notify effects or other consumers. * * @returns A notifier object. */ export declare function createNotifier(options?: CreateNotifierOptions): { notify: () => void; listen: Signal; }; export {};