import type { Ref, RefCallback } from "../dependencies/types"; /** * Combines a list of refs into a single callable ref, updating the list of refs to the value it is called with. * * @param refList The list of refs to combine. * @returns Callable ref that updates the list of refs to the value it is called with. */ export declare function useRefList(...refList: Array | undefined>): RefCallback | null;