import { Ref } from "vue";
/**
 * Link a component to a given Ref Array, creating an unique id and the necessary events.
 */
export default function (array: Ref<Array<string>>): {
    id: Ref<string>;
    index: import("vue").ComputedRef<number>;
};
