/**
 * Cross-module hand-off between the {@link deeplinkIntegration} and the
 * {@link reactNavigationIntegration} idle navigation span.
 *
 * Two delivery modes are supported, both of which need to work in practice:
 *
 * 1. **Pre-navigation (warm open / normal cold start):** the deep link is
 *    received before any navigation has been dispatched. The URL is stored in
 *    a single slot here; the next idle navigation span consumes it inside
 *    `updateLatestNavigationSpanWithCurrentRoute` (within `routeChangeTimeoutMs`).
 *
 * 2. **Late arrival (Expo Router auto-handled cold start):** Expo Router reads
 *    `Linking.getInitialURL()` independently and may finish the initial
 *    navigation *before* our integration's own `getInitialURL().then(...)`
 *    chain resolves. To still attribute that span, a synchronous listener may
 *    be registered (by the navigation integration) and receives every link as
 *    it arrives. If it tags a still-recording span, it returns `true` and the
 *    slot is left empty — otherwise the link falls through to the slot.
 */
/**
 * How the deep link reached the integration:
 * - `cold-start` — from `Linking.getInitialURL()`. The app may have been
 *   launched by the link; the *initial* navigation is plausibly its target,
 *   so retroactive attribution to an already-mounted initial span is allowed.
 * - `warm-open` — from the `'url'` event while the app was running. The
 *   triggered navigation has not happened yet, so the URL must wait in the
 *   pending slot — retroactively tagging the *previous* navigation would
 *   attribute the link to the wrong span.
 */
export type DeepLinkSource = 'cold-start' | 'warm-open';
export interface PendingDeepLink {
    /** Raw URL as received from React Native's `Linking` API. */
    url: string;
    /** Wall-clock timestamp (ms since epoch) when the URL was received. */
    receivedAtMs: number;
    /** How the link arrived — governs retroactive attribution rules. */
    source: DeepLinkSource;
    /**
     * Monotonic sequence number shared with `nextEventSeq()`. The navigation
     * integration tags every dispatched nav span with a seq from the same
     * sequence — a warm-open link must only consume the slot for spans whose
     * seq is strictly greater than the link's, i.e. were dispatched *after* the
     * link arrived.
     */
    seq: number;
}
/**
 * Synchronously notified for every deep link as it arrives. A `true` return
 * value indicates the listener has already attributed the link to a live span,
 * and the value should NOT be stored for a future navigation.
 */
export type PendingDeepLinkListener = (link: PendingDeepLink) => boolean;
/**
 * Returns the next value in the shared monotonic sequence. Used by the
 * navigation integration to stamp each dispatched nav span, so consumers can
 * tell whether a pending link arrived before or after a given dispatch.
 */
export declare function nextEventSeq(): number;
/**
 * Stores the most recently received deep link URL together with the current
 * timestamp. If a listener is registered and consumes the link synchronously,
 * the slot is left empty.
 *
 * Overwrites any previous unconsumed pending value — only the latest link
 * matters for correlation with the next navigation.
 */
export declare function setPendingDeepLink(url: string, source: DeepLinkSource): void;
/**
 * Returns the pending deep link without clearing the slot, applying the same
 * staleness check as {@link consumePendingDeepLink}. A stale value is dropped
 * (so subsequent calls do not return it) but no fresh value is returned.
 */
export declare function peekPendingDeepLink(maxAgeMs: number): PendingDeepLink | undefined;
/**
 * Returns and clears the pending deep link, but only if it was received
 * within `maxAgeMs` of "now". Stale entries are discarded and the slot is
 * cleared in all cases.
 */
export declare function consumePendingDeepLink(maxAgeMs: number): PendingDeepLink | undefined;
/**
 * Registers a synchronous listener that is invoked on every {@link setPendingDeepLink}
 * call. Pass `undefined` to unregister. Only a single listener is supported —
 * a new registration replaces the previous one.
 */
export declare function setPendingDeepLinkListener(fn: PendingDeepLinkListener | undefined): void;
/** Test helper — clears the pending value, listener, and sequence counter. */
export declare function clearPendingDeepLink(): void;
//# sourceMappingURL=pendingDeepLink.d.ts.map