/**
 * @file mergeRefs.ts
 * @input Multiple React refs (callback, object, or undefined)
 * @output A single callback ref that forwards to all inputs
 * @position Utility; used by components that need to merge an external ref
 *   with an internal ref (e.g., popover trigger + consumer ref).
 */
import type { Ref, RefCallback } from 'react';
export declare function mergeRefs<T>(...refs: (Ref<T> | undefined)[]): RefCallback<T>;
//# sourceMappingURL=mergeRefs.d.ts.map