import { Globals, Box, 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` */ export type WebkitMaskClipProperty = Globals | Box | "border" | "content" | "padding" | "text" | StringHack;