1<?php
2
3/** @generate-class-entries */
4
5class Normalizer
6{
7    /**
8     * @tentative-return-type
9     * @alias normalizer_normalize
10     */
11    public static function normalize(string $string, int $form = Normalizer::FORM_C): string|false {}
12
13    /**
14     * @tentative-return-type
15     * @alias normalizer_is_normalized
16     */
17    public static function isNormalized(string $string, int $form = Normalizer::FORM_C): bool {}
18
19#if U_ICU_VERSION_MAJOR_NUM >= 56
20    /**
21     * @tentative-return-type
22     * @alias normalizer_get_raw_decomposition
23     */
24    public static function getRawDecomposition(string $string, int $form = Normalizer::FORM_C): ?string {}
25#endif
26}
27