/// export declare type ChatUserPanelProps = { pictureUrl?: string; fullName?: string; text?: string; time?: string; onClick?: () => void; active?: boolean; }; export declare function ChatUserPanel({ fullName, time, text, onClick, active }: ChatUserPanelProps): JSX.Element;