import {Signal} from './_signal.js'; export declare class SimpleSignal extends Signal { constructor(name: string); /** * Notifies all subscribers with a new value. * @param {T} newValue - The new value to notify the subscribers with. */ notify(newValue: T): void; get nextValue(): Promise; } //# sourceMappingURL=simple-signal.d.ts.map