UNPKG

swap-chat-react

Version:
8 lines (7 loc) 372 B
import React, { PropsWithChildren } from 'react'; import type { ComponentContextValue } from '../../context/ComponentContext'; export declare type MessageListProps = { Message?: ComponentContextValue['Message']; isThread?: boolean; }; export declare const MessageList: React.MemoExoticComponent<(props: PropsWithChildren<MessageListProps>) => JSX.Element>;