import { Property } from "csstype"; import { KeysOf, SpaceScaleValue, ZIndiceScaleValue } from "../types"; /** * Types for position CSS properties */ export declare type PositionProps = Partial<{ /** * The CSS `position` property */ position: Property.Position; /** * The CSS `position` property */ pos: Property.Position; /** * The CSS `z-index` property */ zIndex: Property.ZIndex | ZIndiceScaleValue; /** * The CSS `top` property */ top: Property.Top | number; /** * The CSS `right` property */ right: Property.Right | number; /** * The CSS `bottom` property */ bottom: Property.Bottom | number; /** * The CSS `left` property */ left: Property.Left | number; }>; /** * Style prop names for position realted properties */ export declare const positionPropNames: KeysOf; //# sourceMappingURL=position.d.ts.map