import type { Edge } from './types';
/**
 * Returns the value added by `attachClosestEdge()` to the `userData` object. It will return `null` if there is no value.
 */
export declare function extractClosestEdge(userData: Record<string | symbol, unknown>): Edge | null;
