import { ComputedRef } from 'vue'; import { AsyncComputedOnCancel, AsyncComputedOptions } from '@vueuse/core'; import { WithLoadingProperties } from './addLoadingProperties'; export type ComputedAsync = WithLoadingProperties>; export declare const computedAsync: (callback: (onCancel: AsyncComputedOnCancel) => T | Promise, initialState?: T, options?: AsyncComputedOptions & { immediate?: boolean; }) => ComputedAsync;