import type { Expression as AstExpression } from 'estree';
export declare class Expression {
private context;
private input;
private parser;
constructor(ast: AstExpression | null, context: object, input: string);
getValue<T>(vars?: object): T | undefined | null;
}