import React from 'react'; export interface ContactCardProps extends React.HTMLAttributes { /** * Name of the contact. */ name: string; /** * Title of the contact. */ title?: string; /** * URL for the contact's profile photo. */ photoUrl?: string; /** * A flag to indicate that the contact card should display the contact's initials as profile photo if the photo url is undefined. */ useInitials?: boolean; /** * An array of detail list objects that can be used for logical grouping of contact details. * * Passing a Map is deprecated and will be removed in a future release. */ details: Map[] | [string, string][][]; /** * The contact's online status. */ onlineStatus?: 'offline' | 'do-not-disturb' | 'busy' | 'away' | 'available'; } export declare const ContactCard: React.FC;