import { Globals } from "./index"; /** * In Mozilla applications, **`-moz-user-input`** determines if an element will accept user input. * * **Initial value**: `auto` * * @deprecated */ export type MozUserInputProperty = Globals | "auto" | "disabled" | "enabled" | "none";