import React, { Ref } from 'react'; /** * useRefComposition combines multiple refs into a single composed ref * @param refs - Array of refs * @returns callback function to update ref */ export declare const useRefComposition: (refs: React.Ref[]) => (el: any) => void;