A simple empty component class named MyLibraryComponent in a library. It derives from Sandbox.Component and has a Title attribute but no behavior or members.
using Sandbox;
/// <summary>
/// This is a component - in your library!
/// </summary>
[Title( "Tilemapper - My Component" )]
public class MyLibraryComponent : Component
{
}