import type { Run, StoreRenderList } from '../types'; /** * The subscription to store starts the moment the user of stateRef fetches the reference as a “.value”. * This code captures the moment of fetching to “.value” and collects the subscription. */ export declare function collector(value: unknown, getNextValue: () => unknown, newDepthList: (string | number | symbol)[], run: Run, storeRenderList: StoreRenderList): void;