@web3mq/react-components
Version:
web3mq-react-components
13 lines (12 loc) • 470 B
TypeScript
import React, { PropsWithChildren } from 'react';
import type { Client } from '@web3mq/client';
import { AppTypeEnum } from '../../context/ChatContext';
export declare type ChatProps = {
client: Client;
containerId?: string;
className?: string;
appType?: AppTypeEnum;
style?: React.CSSProperties;
logout: () => void;
};
export declare const Chat: React.MemoExoticComponent<(props: PropsWithChildren<ChatProps>) => React.JSX.Element>;