namespace TinyChat.Messages.Formatting;
///
/// Interface to format chat message content into a displayable string format.
///
public interface IMessageFormatter
{
///
/// Renders a given chat message content to a display string
///
/// The chat messag content to format
///
string Format(IChatMessageContent content);
///
/// Renders a given string content to a display string
///
/// The string content to format
///
string Format(string content);
}