import { ComplexityCountableNode as ComplexityCountableNodeInterface } from '../../Analyzer/CodeMetricsCalculator/CyclomaticComplexity/Adapter/ComplexityCountableNode'; import { type ASTNode } from './ASTNode'; export declare class CyclomaticComplexityCountableNode implements ComplexityCountableNodeInterface { private static readonly incrementSyntaxKinds; private readonly node; private readonly pureNode; constructor(node: ASTNode); isIncrement(): boolean; getChildren(): CyclomaticComplexityCountableNode[]; }