///
/**
* Generates a value continuously, animating it. Unlike {@link useGeneratedValue}, this
* hook uses a ref to avoid unnecessary re-renders.
*
* @param getValue A function that returns the value to display.
* @param frameMS The duration of a frame. If set to null, the value animates as fast as the browser allows with `requestAnimationFrame`.
* @returns
*/
export declare const useGeneratedRef: (getValue: () => string, frameMS?: number | null) => {
elementRef: import("react").RefObject;
};
//# sourceMappingURL=useGeneratedRef.d.ts.map