CfgSimplificationPasses: {
    "analyze-dead-code": (
        cfg: ControlFlowInformation,
        info: CfgPassInfo,
    ) => ControlFlowInformation;
    "remove-dead-code": (
        cfg: ControlFlowInformation,
        _info?: CfgPassInfo,
    ) => ControlFlowInformation;
    "to-basic-blocks": (
        cfg: ControlFlowInformation,
        _info?: CfgPassInfo,
    ) => ControlFlowInformation;
    "unique-cf-sets": (
        cfg: ControlFlowInformation,
        _info?: CfgPassInfo,
    ) => ControlFlowInformation;
} = ...

Type declaration