package validators

type TextInputValidator interface {
	Notice() string
	ValidationFunc(input string) bool
}