namespace Spectre.Console.Rendering;
///
/// Represents a render hook.
///
public interface IRenderHook
{
///
/// Processes the specified renderables.
///
/// The render options.
/// The renderables to process.
/// The processed renderables.
IEnumerable Process(RenderOptions options, IEnumerable renderables);
}