/** * @hidden */ import React from "react"; import type { PropsWithChildren } from "react"; import { ExtensionRegistryEndpointRegistration } from "@adobe/uix-host"; /** * @internal */ export declare const ExtensibleComponentBoundaryContext: React.Context; /** @public */ export type ExtensibleComponentProps = PropsWithChildren<{ extensionPoints: ExtensionRegistryEndpointRegistration[]; }>; /** * Wrapper that adds an extension point context to subcomponent tree. * * @public */ export declare const ExtensibleComponentBoundary: ({ extensionPoints, children, }: ExtensibleComponentProps) => React.JSX.Element; //# sourceMappingURL=ExtensibleComponentBoundary.d.ts.map