import type { Feature } from '../../feature'; import type { Writable } from 'ts-essentials'; declare const initialControlflowInfo: { ifThen: import("../../common-syntax-probability").CommonSyntaxTypeCounts; thenBody: import("../../common-syntax-probability").CommonSyntaxTypeCounts; ifThenElse: import("../../common-syntax-probability").CommonSyntaxTypeCounts; elseBody: import("../../common-syntax-probability").CommonSyntaxTypeCounts; /** can be nested with if-s or if-then-else's */ nestedIfThen: number; nestedIfThenElse: number; deepestNesting: number; /** switch(...) */ switchCase: import("../../common-syntax-probability").CommonSyntaxTypeCounts; }; export type ControlflowInfo = Writable; export declare const controlflow: Feature; export {};