import { Globals } from "./index"; /** * The **`-moz-user-focus`** CSS property is used to indicate whether an element can have the focus. * * **Initial value**: `none` */ export type MozUserFocusProperty = Globals | "ignore" | "none" | "normal" | "select-after" | "select-all" | "select-before" | "select-menu" | "select-same";