import VM from '../vm/append';
import { PathReference } from '@glimmer/reference';
export { CompiledArgs } from './expressions/args';
export declare abstract class CompiledExpression<T> {
    type: string;
    abstract evaluate(vm: VM): PathReference<T>;
    toJSON(): string;
}
