import { Globals } from "./index"; /** * The **`ime-mode`** CSS property controls the state of the input method editor (IME) for text fields. This property is obsolete. * * **Initial value**: `auto` * * @deprecated */ export type ImeModeProperty = Globals | "active" | "auto" | "disabled" | "inactive" | "normal";