import { DependencyContext } from './DependencyContext'; export interface Computed { (...args: any[]): TValue; context: ComputedContext; } export declare class ComputedContext extends DependencyContext { private readonly factory; private last; constructor(factory: (...args: any[]) => TValue, owner?: any); toSignal(): Computed; dispose(): void; protected invoke(...args: any[]): TValue; } //# sourceMappingURL=ComputedContext.d.ts.map