import { IScope, IValue, TValueInstructions } from "../types"; export declare class VoidValue implements IValue { scope: IScope; constant: boolean; macro: boolean; constructor(scope: IScope); eval(scope: IScope): TValueInstructions; call(scope: IScope, args: IValue[]): TValueInstructions; get(scope: IScope, name: IValue): TValueInstructions; toString(): string; }