import React, { CSSProperties, ReactNode } from 'react'; import './index.css'; export interface MessageLabelProps { color: string; publisher?: string; targetType?: 0 | 1 | 2; targetNickname?: string; targetPresentationText?: string; time: string; avatar?: ReactNode; tag?: ReactNode; styles?: CSSProperties; publisherIsSelf?: boolean; isPrivate?: boolean; } export declare const MessageLabel: React.FC>;