//#region src/utils/mergeRefs/index.d.ts /** * @description 여러 ref 객체를 하나의 ref 객체로 병합합니다. * * @template T - 참조 객체의 타입 * @param {React.Ref[]} refs 병합할 참조 객체 배열 * @returns {((node: T) => void)} 병합된 참조 객체 * * @example * ```tsx * const ref1 = useRef(null); * const ref2 = useRef(null); * const mergedRef = mergeRefs(ref1, ref2); * *
* ``` */ declare const mergeRefs: (...refs: React.Ref[]) => ((node: T) => void); //#endregion export { mergeRefs }; //# sourceMappingURL=index.d.ts.map