/** * Converts a callback to a ref to avoid triggering re-renders when passed as a * prop or avoid re-executing effects when passed as a dependency. * * Returns a new callback with a constant value over the lifecycle of a component. */ export declare function useCallbackRef any>(callback?: T): T;