package tk

import (
	
)

// Empty is an empty widget.
type Empty struct{}

// Render shows nothing, although the resulting Buffer still occupies one line.
func (Empty) (,  int) *term.Buffer {
	return term.NewBufferBuilder().Buffer()
}

// Handle always returns false.
func (Empty) ( term.Event) bool {
	return false
}