import type { ControlFlowInformation } from './control-flow-graph';
/**
 * Take a control flow information of a graph without any basic blocks and convert it to a graph with basic blocks.
 */
export declare function convertCfgToBasicBlocks(cfInfo: ControlFlowInformation): ControlFlowInformation;
