import { BubbleListProps, BubbleDataType } from '../types';
import { Ref } from 'vue';
export interface useListDataReturnType {
    ListData: Ref<BubbleDataType[]>;
    setListData: (value: BubbleListProps['items']) => void;
}
export type ListItemType = ReturnType<typeof useListData>['ListData']['value'][number];
export default function useListData(items: BubbleListProps['items'], roles?: BubbleListProps['roles']): useListDataReturnType;
