UNPKG

@vchatcloud/react-ui-kit

Version:

VChatCloud UI Kit for react integration

9 lines (8 loc) 397 B
import { MessageProps } from '../../global.types'; import { HTMLAttributes } from 'react'; interface UserPopupProps { readonly onWhisper: () => void; readonly onReport: () => void; } declare const UserPopup: import('react').ForwardRefExoticComponent<MessageProps & UserPopupProps & HTMLAttributes<HTMLDivElement> & import('react').RefAttributes<HTMLDivElement>>; export default UserPopup;