import { StringHack, Globals, Position, GeometryBox } from "./index"; /** * The **`offset`** CSS property is a shorthand property for animating an element along a defined path. * * | Chrome | Firefox | Safari | Edge | IE | * | :-----------: | :-----: | :----: | :--: | :-: | * | **55** | n/a | n/a | n/a | n/a | * | 46 _(motion)_ | | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/offset */ export type OffsetProperty = Globals | Position | GeometryBox | "auto" | "none" | StringHack;