import type { Context } from 'react'; import type { SubscriptionContextValue } from '../types'; type UseSubscriptionArgs = { context: Context; load: () => void; onValue: (v: number) => boolean; }; export declare function useSubscription({ context, load, onValue, }: UseSubscriptionArgs): void; export {}; //# sourceMappingURL=utils.d.ts.map