type TeardownFn = () => void; type HashbrownSignal = { (): T; subscribe(onChange: (newValue: T) => void): TeardownFn; }; /** * Connects a Hashbrown Signal to React's reactivity system * * @param signal - The signal to connect to React * @returns The value contained in the signal */ export declare function useHashbrownSignal(signal: HashbrownSignal): T; export {}; //# sourceMappingURL=use-hashbrown-signal.d.ts.map