import { Globals, GeometryBox, StringHack } from "./index"; /** * The `**clip-path**` CSS property creates a clipping region that sets what part of an element should be shown. Parts that are inside the region are shown, while those outside are hidden. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :------: | :-----: | :----: | :--: | :-: | * | **55** | **3.5** | No | No | No | * | 24 _-x-_ | | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/clip-path */ export type ClipPathProperty = Globals | GeometryBox | "none" | StringHack;