import type { Func } from "hry-types/src/Misc/Func"; import type { Instance } from "../../../RootComponent/Instance/RootComponentInstance"; export type ComputedDependence = { paths: string[]; val: unknown; }; type ItemCache = { dependences: ComputedDependence[]; method: Func; value: unknown; }; type ComputedId = string; export type ComputedCache = Record; export declare function _initComputedAndGetCache(this: Instance, computedConfig: Record, uninitedkeys: string[], computedCache: ComputedCache): ComputedCache; export declare function initComputedAndGetCache(this: Instance, computedConfig: Record): ComputedCache; export {};