import { FC } from "react"; //#region src/components/chat/chat.d.ts interface ChatProps { meetingLinkKey: string; customerSupportKey: string; title: string; supportEmail: string; welcomeMessage: string; } declare const Chat: FC; //#endregion export { Chat };