import type * as CSS from 'csstype'; import type { ResponsiveValue } from './responsiveValue'; /** * Types for position CSS properties */ export interface customPositionProps { /** * The CSS `left`, `right`, `top`, `bottom` property */ inset?: ResponsiveValue>; /** * The CSS `left`, and `right` property */ insetX?: ResponsiveValue>; /** * The CSS `top`, and `bottom` property */ insetY?: ResponsiveValue>; /** * The CSS `position` property */ pos?: ResponsiveValue; } export declare const customPosition: import("styled-system").styleFn;