import { type Reference, type ReferenceCompute } from "@knyt/artisan"; import type { ReactiveControllerHost } from "./ReactiveController.ts"; /** * Creates a readonly reactive state reference from a computed value * based on the given dependencies. When its value changes, * it updates the given host. * * @alpha * @deprecated Use `computeRef` instead. * This function is deprecated and will be removed in a future version. */ export declare function computeState(host: ReactiveControllerHost, options: ReferenceCompute.Options): Reference.SubscriberRetaining; export declare function computeState(host: ReactiveControllerHost, ...params: ReferenceCompute.Params): Reference.SubscriberRetaining; //# sourceMappingURL=computeState.d.ts.map