import { Context } from '../context/context';
export declare class Value {
    private str;
    constructor(str: string);
    evaluate(ctx: Context): string | number | boolean | object;
    value(ctx: Context): any;
}
