UNPKG

tb-react-live-chat-loader

Version:

Implement live chat in your react app without taking a performance hit.

17 lines (16 loc) 462 B
/// <reference types="react" /> import { Provider } from '../../types'; interface Props { providerKey: Provider | undefined; themeColor?: string; loggedInGreeting?: string; loggedOutGreeting?: string; show?: string; hide?: string; fade?: string; greetingDialogDelay?: string; greetingDialogDisplay?: string; color?: string; } declare const Messenger: ({ color, ...props }: Props) => JSX.Element; export default Messenger;