I am trying to reference an object I export, currently I achieved this successfully by importing it and prefixing with "_" so that it does not show up as unused, is there another way to do this?
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import type { BusinessTime as _BusinessTime } from "@/lib/types/business-time"
/**
* @returns Open hours for business, see: {@link _BusinessTime BusinessTime}
*/
export function getBusinessTimes() {}