/** * @license MIT * @module @whoj/utils-vue@2.4.0 * @copyright (c) 2026 Jonson B. */ import { ComputedRefable } from './refOf.cjs'; /** * Get the value of value/ref/getter. * * @__NO_SIDE_EFFECTS__ */ declare function unrefOf(r: ComputedRefable): T; export { unrefOf };