import { StyleOptions } from '../../types'; export interface BackgroundClipProps { /** * The **`background-clip`** CSS property sets whether an element's background extends underneath its border box, padding box, or content box. * * @see https://developer.mozilla.org/docs/Web/CSS/background-clip */ style$BackgroundClip: T; } export declare const backgroundClip: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;