import { ExplicitAny } from '../types/utility'; /** * A hook that returns a stable callback function that does not change on every render. * This is useful to prevent unnecessary re-renders of components that depend on the callback. * * @param callback - The callback function to stabilize. * @returns A stable version of the callback function. */ export declare function useStableCallback ExplicitAny>(callback: T): T;