import { IScope, IValue, TValueInstructions } from "../types"; import { StoreValue } from "./"; export declare class TempValue extends StoreValue { auto: boolean; proxied: IValue; constructor(scope: IScope, name?: string); eval(scope: IScope): TValueInstructions; proxy(value: IValue): void; }