import { Globals } from "./index"; /** * The `**user-select**` CSS property controls whether the user can select text. This doesn't have any effect on content loaded as chrome, except in textboxes. * * **Initial value**: `text` */ export type MsUserSelectProperty = Globals | "element" | "none" | "text";