/**
 * Denotes the kind of control flow graph (CFG).
 */
export declare enum CfgKind {
    /**
     * CFG with dataflow information.
     */
    WithDataflow = 0,
    /**
     * CFG without dataflow information.
     */
    NoDataflow = 1,
    /**
     * CFG without function definition vertices and without dataflow information.
     */
    NoFunctionDefs = 2,
    /**
     * A CFG version that is much quicker and does not apply any simplifications or dataflow information.
     */
    Quick = 3
}
