import { StyleOptions } from '../../types'; export interface PositionProps { /** * The **`position`** CSS property sets how an element is positioned in a document. The `top`, `right`, `bottom`, and `left` properties determine the final location of positioned elements. * * @see https://developer.mozilla.org/docs/Web/CSS/position */ style$Position: T; } export declare const position: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;