///
import { PositionProps } from './position';
import { TopProps } from './top';
import { RightProps } from './right';
import { BottomProps } from './bottom';
import { LeftProps } from './left';
import { ZIndexProps } from './z_index';
/**
* Style props for the position of an element.
*
* @docsPath UI/Style System/Position
*/
export interface PositionSetProps extends PositionProps, TopProps, RightProps, BottomProps, LeftProps, ZIndexProps {
}
export declare const positionSet: import("@styled-system/core").styleFn;
export declare const positionSetPropTypes: import("../../../private_utils").ObjectMap>;