Consider the following component with one input myInput and an internal value called someInternalValue. Both of them are used in a component's template.
import {Component, Input} from '@angular/core';
@Component({
template:`
<div>
<p>{{myInput}}</p>
<p>{...