import type { Ref, WatchSource } from 'vue'; export default function useMemo(getValue: () => T, condition: (WatchSource | object)[], shouldUpdate?: (prev: any[], next: any[]) => boolean): Ref;