/** * Returns a stable function reference that delegates to the latest version * of the unstable function argument. Allows the latest version of the unstable * function to access the latest version of its closure. */ export declare const useLatestCallback: any>(callback: T) => (...args: Parameters) => ReturnType;