<div class='sourceset sourceset-common'>Common</div>

```kotlin
data class TextSubstitutionValue(
        val original: String,
        var substitution: String,
        var isShowingSubstitution: Boolean = false,
        var layoutCache: ParagraphLayoutCache? = null,

    )
```