import { StyleOptions } from '../../types'; export interface BackgroundSizeProps { /** * The **`background-size`** CSS property sets the size of the element's background image. The image can be left to its natural size, stretched, or constrained to fit the available space. * * @see https://developer.mozilla.org/docs/Web/CSS/background-size */ style$BackgroundSize: T; } export declare const backgroundSize: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;