diff --git a/topics/reference_guide/custom_language_support/inlay_hints.md b/topics/reference_guide/custom_language_support/inlay_hints.md
index 3d834aa0c..d1f76f664 100644
--- a/topics/reference_guide/custom_language_support/inlay_hints.md
+++ b/topics/reference_guide/custom_language_support/inlay_hints.md
@@ -71,6 +71,32 @@ To provide a custom configuration UI, implement
[`InlayHintsCustomSettingsProvider`](%gh-ic%/platform/lang-api/src/com/intellij/codeInsight/hints/declarative/InlayHintsCustomSettingsProvider.kt)
registered in `com.intellij.codeInsight.declarativeInlayProviderCustomSettingsProvider` extension point.
+Preview texts displayed for inlay hint providers under Settings | Editor | Inlay Hints must be located in plugin resources in inlayProviders/\$provider_id\$ directory, for example, inlayProviders/java.implicit.types.
+The \$provider_id\$ value must match the `providerId` attribute of `com.intellij.codeInsight.declarativeInlayProvider` EP.
+The preview file name must be preview.\$ext\$, where \$ext\$ is a default extension of a supported file type, for example, preview.java.
+Hints displayed in the preview panel are defined with the dedicated markup:
+
+
+
+
+```
+/*<# Displayed Hint #>*/
+```
+
+
+
+
+```
+<# Displayed Hint #>
+```
+
+
+
+
+**Examples**:
+- [`inlayProviders/java.implicit.types/preview.java`](%gh-ic%/java/java-impl/resources/inlayProviders/java.implicit.types/preview.java)
+- [`inlayProviders/groovy.lambda.parameter.inlay.provider/preview.groovy`](%gh-ic%/plugins/groovy/resources/inlayProviders/groovy.lambda.parameter.inlay.provider/preview.groovy)
+
### Code Vision Provider
@@ -97,6 +123,15 @@ The `CodeVisionGroupSettingProvider` is necessary for displaying the name and de
The `groupId` must match the value specified in the implementation of the `CodeVisionProvider`; if not specified, it defaults to the `id`.
The `groupName` is the name shown in the code vision group, and the `description` will be visible in the right details panel.
+Code vision preview is available under Settings | Editor | Inlay Hints | Code vision.
+In case if multiple preview examples in different languages are provided for an existing code vision provider, IDE will choose the most important from its point of view.
+For example, IntelliJ IDEA will use Java preview, PhpStorm will use PHP preview, etc.
+
+To provide a preview example for a custom code vision provider:
+1. Create a codeVisionProviders/\$model_id\$/preview.\$ext\$ file, for example, codeVisionProviders/vcs.code.vision/preview.java.
+ The \$modelId\$ must match the `groupId` of `CodeVisionGroupSettingProvider` and `modelId` (see 2.).
+2. Register an `com.intellij.codeInsight.codeVisionSettingsPreviewLanguage`, which specifies the preview `language` and `modelId`.
+
**Examples:**
- [`JavaInheritorsCodeVisionProvider`](%gh-ic%/java/java-impl/src/com/intellij/codeInsight/daemon/impl/JavaInheritorsCodeVisionProvider.kt) - shows number of Java class or method inheritors. Clicking the inlay hint opens the list of inheritors. This provider is `DaemonBoundCodeVisionProvider`.
- [`JavaReferencesCodeVisionProvider`](%gh-ic%/java/java-impl/src/com/intellij/codeInsight/daemon/impl/JavaReferencesCodeVisionProvider.kt) - shows number of usages of Java class or member. Clicking the inlay opens the list of usages or navigates to the usage if only one exists. This provider is `DaemonBoundCodeVisionProvider`.