import { Env } from "./Env"; import { Expr, Value } from "./Expr"; /** * Get the value of the specified property in given `env`. * * @param property - Property of a technique. * @param env - The {@link Env} used to evaluate the property * @param cache - An optional expression cache. */ export declare function getPropertyValue(property: Value | undefined, env: Env, cache?: Map): any; //# sourceMappingURL=PropertyValue.d.ts.map