import { StyleOptions } from '../../types'; export interface BackgroundPositionProps { /** * The **`background-position`** CSS property sets the initial position for each background image. The position is relative to the position layer set by `background-origin`. * * @see https://developer.mozilla.org/docs/Web/CSS/background-position */ style$BackgroundPosition: T; } export declare const backgroundPosition: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;