export interface ISpelError { message: string; context: string; contextTruncated: string; } export interface IExpressionChange { value: string; spelError: ISpelError; spelPreview: string; } export declare const evaluateExpression: (context: object, value: string) => IExpressionChange;