/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format */ import React from 'react'; type Props = { name: string; description: string; triggerAction: string; props?: object; }; declare const EmbeddedInternComponent: (props: Props) => React.JSX.Element; export default EmbeddedInternComponent;