import type { ExprValue } from '../types/expr-value'; import { ExpressionDef } from '../types/expression-def'; export declare class ExprRegEx extends ExpressionDef { readonly regex: string; elementType: string; constructor(regex: string); getExpression(): ExprValue; }