type CallbackType = (...args: T[]) => void; /** * useFreshTick * @param callback The callback to be called on mount * @returns A fresh callback. * @see https://rooks.vercel.app/docs/hooks/useFreshCallback */ declare function useFreshTick(callback: CallbackType): CallbackType; export { useFreshTick };