import { Condition } from '../../ast/entity/condition'; import { SourceContext } from '../../ast/entity/source'; export declare class TableMatchCondition extends Condition { regex: string; constructor(regex: string); check(context: SourceContext): boolean; }