import type { Signal } from "@qwik.dev/core"; /** * Combines multiple refs to be applied to a single element * Type casts signals internally to ensure compatibility */ export declare const mergeRefs: (...refs: (Signal | Signal | ((el: T) => void) | undefined)[]) => (el: T) => void;