/** * Returns a stable reference that is synced with the provided `value`. * * Removes the need for callbacks to be dependent on often changing values, thus avoiding frequent redefinitions. * * @param value The value to put in the reference. * @returns The reference set to the provided value. */ export declare function useSyncedRef(value: T): import("preact/hooks").MutableRef;