import { type Ref } from 'vue'; import type { BubbleListProps } from '../interface'; export type UnRef> = T extends Ref ? R : never; export type ListItemType = UnRef>[number]; export default function useListData(items: Ref, roles?: Ref): Ref;