import type { Priority } from "intentx-core-z"; export type AsyncComputed = { (): T | undefined; invalidate(priority?: Priority): void; status(): string; error(): any; }; export declare function asyncComputed(getter: (signal?: AbortSignal) => Promise, priority?: Priority): AsyncComputed;