namespace Terminal.Gui;
///
/// Interface for detecting sixel support. Either through
/// ansi requests to terminal or config file etc.
///
public interface ISixelSupportDetector
{
///
/// Gets the supported sixel state e.g. by sending Ansi escape sequences
/// or from a config file etc.
///
/// Description of sixel support.
public SixelSupportResult Detect ();
}