import type { NodeId } from '../../r-bridge/lang-4.x/ast/model/processing/node-id';
import type { CallGraph } from '../graph/call-graph';
/**
 * Determines whether the function with the given ID is recursive.
 */
export declare function isFunctionRecursive(id: NodeId, graph: CallGraph): boolean;
