import { Ref } from 'vue'; import { RawValueType } from '../interface'; import { DefaultOptionType, LabelInValueType } from '../Select'; /** * Cache `value` related LabeledValue & options. */ export default function useCache(labeledValues: Ref, valueOptions: Ref>): [Ref, (val: RawValueType) => DefaultOptionType | undefined];