import React__default from 'react'; import { Group } from '../../types/models.js'; import { AvatarProps } from '../Avatar/Avatar.js'; interface UIGroupPreviewComponentProps extends UIGroupPreviewProps { /** If the component's Conversation is the active (selected) Conversation */ active?: boolean; /** Image of Conversation to display */ displayImage?: string; /** Title of Conversation to display */ displayTitle?: string | React__default.ReactElement; /** Time of Conversation to display */ displayTime?: string; } interface UIGroupPreviewProps { group: Group; activeGroup?: Group; Preview?: React__default.ComponentType; Avatar?: React__default.ComponentType; setActiveGroup?: (group: Group) => void; searchValue?: string; } declare function UIGroupPreview(props: T): React__default.ReactElement; export { UIGroupPreview, UIGroupPreviewComponentProps, UIGroupPreviewProps }; //# sourceMappingURL=UIGroupPreview.d.ts.map