import { StyleOptions } from '../../types'; export interface BackgroundAttachmentProps { /** * The **`background-attachment`** CSS property sets whether a background image's position is fixed within the viewport, or scrolls with its containing block. * * @see https://developer.mozilla.org/docs/Web/CSS/background-attachment */ style$BackgroundAttachment: T; } export declare const backgroundAttachment: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;