export declare class ExpressionError extends Error { readonly position?: number | undefined; readonly token?: string | undefined; constructor(message: string, position?: number | undefined, token?: string | undefined); }