import * as CSS from "csstype"; import type { Config } from "../utils/prop-config"; import { Token } from "../utils"; export declare const background: Config; export interface BackgroundProps { /** * The CSS `background` property */ bg?: Token; /** * The CSS `background-clip` property */ bgClip?: Token; /** * The CSS `background-clip` property */ backgroundClip?: Token; /** * The CSS `background` property */ background?: Token; /** * The CSS `background-color` property */ bgColor?: Token; /** * The CSS `background-color` property */ backgroundColor?: Token; /** * The CSS `background-image` property */ backgroundImage?: Token; /** * The background-gradient shorthand */ bgGradient?: Token; /** * The CSS `background-size` property */ backgroundSize?: Token; /** * The CSS `background-position` property */ bgPos?: Token; /** * The CSS `background-position` property */ backgroundPosition?: Token; /** * The CSS `background-image` property */ bgImage?: Token; /** * The CSS `background-image` property */ bgImg?: Token; /** * The CSS `background-repeat` property */ bgRepeat?: Token; /** * The CSS `background-repeat` property */ backgroundRepeat?: Token; /** * The CSS `background-size` property */ bgSize?: Token; /** * The CSS `background-attachment` property */ bgAttachment?: Token; /** * The CSS `background-attachment` property */ backgroundAttachment?: Token; /** * The CSS `background-position` property */ bgPosition?: Token; }