import type { GlobalScopePonyfill } from 'botframework-webchat-core'; import PropTypes from 'prop-types'; import React, { type PropsWithChildren } from 'react'; type Props = PropsWithChildren<{ ponyfill?: Partial; }>; declare const PonyfillComposer: { ({ children, ponyfill: partialPonyfill }: Props): React.JSX.Element; defaultProps: { ponyfill: any; }; propTypes: { ponyfill: PropTypes.Requireable; }; }; export default PonyfillComposer; //# sourceMappingURL=PonyfillComposer.d.ts.map