import * as CSS from "csstype"; import { Config } from "../utils/prop-config"; import { Token } from "../utils"; export declare const position: Config; /** * Types for position CSS properties */ export interface PositionProps { /** * The CSS `z-index` property */ zIndex?: Token; /** * The CSS `top` property */ top?: Token; insetBlockStart?: Token; /** * The CSS `right` property */ right?: Token; /** * When the direction is `ltr`, `insetInlineEnd` is equivalent to `right`. * When the direction is `rtl`, `insetInlineEnd` is equivalent to `left`. */ insetInlineEnd?: Token; /** * When the direction is `ltr`, `insetEnd` is equivalent to `right`. * When the direction is `rtl`, `insetEnd` is equivalent to `left`. */ insetEnd?: Token; /** * The CSS `bottom` property */ bottom?: Token; insetBlockEnd?: Token; /** * The CSS `left` property */ left?: Token; insetInlineStart?: Token; /** * When the direction is `start`, `end` is equivalent to `left`. * When the direction is `start`, `end` is equivalent to `right`. */ insetStart?: Token; /** * The CSS `left`, `right`, `top`, `bottom` property */ inset?: Token; /** * The CSS `left`, and `right` property */ insetX?: Token; /** * The CSS `top`, and `bottom` property */ insetY?: Token; /** * The CSS `position` property */ pos?: Token; /** * The CSS `position` property */ position?: Token; insetInline?: Token; insetBlock?: Token; }