import { ValueExpression } from "./ValueExpression"; export declare class RegExpExpression extends ValueExpression { readonly template: string; type: RegExpConstructor; constructor(template: string); toString(): string; clone(): this; hashCode(): number; }