import { Globals, GeometryBox, StringHack } from "./index"; /** * The **`mask-clip`** CSS property determines the area, which is affected by a mask. The painted content of an element must be restricted to this area. * * **Initial value**: `border-box` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :----: | :--: | :-: | * | Yes | **53** | Yes | n/a | No | * * @see https://developer.mozilla.org/docs/Web/CSS/mask-clip */ export type MaskClipProperty = Globals | GeometryBox | "no-clip" | StringHack;