import { type MutableRefObject } from "react"; export default function useRefWithCallback(onMount: (element: HTMLElement) => void, onUnmount?: (element: HTMLElement) => void): [MutableRefObject, (node: HTMLElement) => void];