swap-chat-react
Version:
swap-chat-react-components
12 lines (11 loc) • 415 B
TypeScript
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;