import type { Func } from "hry-types/src/Misc/Func"; import type { Instance } from "./types"; export type ComputedDependence = { paths: string[]; val: unknown; }; type ComputedInfo = { dependences: ComputedDependence[]; value: unknown; }; export declare function getComputedInfo(this: Instance, computedKeys: string[], computedFunc: Func, key: string): false | ComputedInfo; export declare function initComputed(this: Instance): void; export {};