import { Globals, Box, StringHack } from "./index"; /** * The **`shape-outside`** CSS property defines a shape—which may be non-rectangular—around which adjacent inline content should wrap. By default, inline content wraps around its margin box; `shape-outside` provides a way to customize this wrapping, making it possible to wrap text around complex objects rather than simple boxes. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----: | :-----: | :------: | :--: | :-: | * | **37** | **62** | **10.1** | No | No | * * @see https://developer.mozilla.org/docs/Web/CSS/shape-outside */ export type ShapeOutsideProperty = Globals | Box | "margin-box" | "none" | StringHack;