import * as React from 'react'; import { TrackerContext } from './types'; export declare type ReporterHook = (id: string | null, value: Payload | (() => Payload), isEqual?: (a: Payload, b: Payload) => boolean) => void; export declare type IsEqualFunction = (a: Value, b: Value) => boolean; export declare function createUseReporter(Context: React.Context>): ReporterHook; //# sourceMappingURL=createUseReporter.d.ts.map