import type { MaybeRef } from './_shared'; import type { Ref } from '@stacksjs/stx'; /** * Normalize a value/ref/getter to a ref. * If already a ref, returns it as-is. Otherwise wraps in a new ref. */ export declare function resolveRef(value: MaybeRef): Ref;