import type { FC } from 'react'; /** * Creates a React component that updates to changes in the web component's props and events. * * @param name The tag name of the web component. * @returns A React component working as a wrapper for the web component. */ declare const createReactComponent: (name: string) => FC; export default createReactComponent; //# sourceMappingURL=createReactComponent.d.ts.map