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