import { Globals } from "./index"; /** * The **`-ms-wrap-through`** CSS property is a Microsoft extension that specifies how content should wrap around an exclusion element. * * **Initial value**: `wrap` */ export type MsWrapThroughProperty = Globals | "none" | "wrap";