UNPKG

swap-chat-react

Version:
12 lines (11 loc) 415 B
import React from 'react'; import type { UserInfo } from 'web2-mq'; export declare type ContactPreviewUIComponentProps = { Avatar?: React.ComponentType; contact?: UserInfo; active?: boolean; avatarUrl?: string; title?: string; setActiveContact?: (contact: UserInfo) => void; }; export declare const ContactPreviewMessenger: (props: ContactPreviewUIComponentProps) => JSX.Element;