import { StyleOptions } from '../../types'; export interface BackgroundRepeatProps { /** * The **`background-repeat`** CSS property sets how background images are repeated. A background image can be repeated along the horizontal and vertical axes, or not repeated at all. * * @see https://developer.mozilla.org/docs/Web/CSS/background-repeat */ style$BackgroundRepeat: T; } export declare const backgroundRepeat: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;