import type { ElementOrRef } from '../types'; /** * When an element can be passed as a value that is either an element or an * elementRef, this will resolve the property down to the resulting element */ export default function resolveElement(elementOrRef: ElementOrRef | undefined): T | null;