import { ReactNode } from 'react'; /** * Wraps a React element in a bidirectional compatibility provider, allow APIs * from `@backstage/core-plugin-api` to be used in an app from `@backstage/frontend-app-api`, * and APIs from `@backstage/frontend-plugin-api` to be used in an app from `@backstage/core-app-api`. * * @public */ export declare function compatWrapper(element: ReactNode): import("react/jsx-runtime").JSX.Element;