1package common
 2
 3import (
 4	"github.com/charmbracelet/bubbles/help"
 5	tea "github.com/charmbracelet/bubbletea"
 6)
 7
 8// Component represents a Bubble Tea model that implements a SetSize function.
 9type Component interface {
10	tea.Model
11	help.KeyMap
12	SetSize(width, height int)
13}