import React, { type ReactNode } from 'react'; /** * Proxies `@atlaskit/react-ufo/interaction-context` context with hold markers * for Gemini * Copied from @atlassian/gemini as it is a privately scoped package */ export declare function GeminiInteractionContext({ children, }: { children: ReactNode | undefined; }): React.JSX.Element; export declare const withWaitForItem:

(Component: React.ComponentType

, getItem: () => unknown) => React.ComponentType

;