import { MessageReply } from "@/app/providers/DialogProvider/useReplyMessages"; import { Message, MessageProps } from "../Messages/Message"; interface ReplyedMessageProps { messageReply: MessageReply; chacha_key_plain: string; parent: MessageProps; } export function ReplyedMessage(props : ReplyedMessageProps) { return ( ) }