import { AstBlock } from './ast-block'; import { AstNode } from './ast-node'; import { RegularExpressionLiteral } from 'typescript'; export declare class AstRegularExpressionLiteral implements AstNode { private block; node: RegularExpressionLiteral; constructor(block: AstBlock, node: RegularExpressionLiteral); get regexp(): RegExp; }