import { Globals, GeometryBox, StringHack } from "./index"; /** * The **`offset-path`** CSS property specifies a motion path for an element to follow and defines the element's positioning within the parent container or SVG coordinate system. * * **Initial value**: `none` * * | Chrome | Firefox | Safari | Edge | IE | * | :----------------: | :-----: | :----: | :--: | :-: | * | **55** | n/a | n/a | n/a | n/a | * | 46 _(motion-path)_ | | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/offset-path */ export type OffsetPathProperty = Globals | GeometryBox | "none" | StringHack;