import { default as React } from 'react'; interface EmbeddedChatFrameProps { height?: number | string; children: React.ReactNode; background?: string; } declare const EmbeddedChatFrame: React.FC; export default EmbeddedChatFrame;