import { ComputedRef } from 'vue'; import { ItemType } from '../types'; interface ItemUtilsProps { textKey: string; valueKey: string; plainTextKey: string; returnObject: boolean; } export declare function useItemUtils(props: ItemUtilsProps, formattedItems: ComputedRef): { getItemText: (item: unknown) => any; getPlainText: (item: ItemType) => string; getValueKey: (item: ItemType | string | number) => string | number; getStoredValue: (item: ItemType | string | number) => string | number | ItemType; getChipLabel: (chip: ItemType | string | number) => string; }; export {};