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;
