import type { ComputedRef, WatchOptionsBase } from 'vue'; export declare type ComputedGetter = (...args: any[]) => T; export default function eagerComputed(fn: ComputedGetter, options?: WatchOptionsBase): ComputedRef;