UNPKG

@web3mq/react-components

Version:
11 lines (10 loc) 506 B
import React, { MutableRefObject, PropsWithChildren } from 'react'; import { ChatDownProps } from '../ChatDown'; export declare type ContactListMessengerProps = { listRef: MutableRefObject<HTMLDivElement | null>; error?: boolean; loading?: boolean; LoadingErrorIndicator?: React.ComponentType<ChatDownProps>; LoadingIndicator?: React.ComponentType; }; export declare const NotificationListMessenger: (props: PropsWithChildren<ContactListMessengerProps>) => React.JSX.Element;