import { StringHack, Globals } from "./index"; /** * The **`-webkit-box-reflect`** CSS property lets you reflect the content of an element in one specific direction. * * **Initial value**: `none` */ export type WebkitBoxReflectProperty = Globals | TLength | "above" | "below" | "left" | "right" | StringHack;