import React from 'react'; export declare type ContactPreviewProps = { Preview?: React.ComponentType; contact: any; activeContact: any | null; changeActiveContactEvent: (contact: any) => void; }; export declare const ContactPreview: (props: ContactPreviewProps) => JSX.Element;