import * as Css from 'csstype'; import { type GenericToken, type ThemeToken } from './types'; export declare const backgroundStyleProperties: import("./types").StylePropertyConfigs; export type BackgroundProps = { /** * The CSS `background` property. Tokenization is supported. * @type native */ background?: ThemeToken; /** * The CSS `background` property. Tokenization is supported. * @type custom */ bg?: ThemeToken; /** * The CSS `background-color` property. Tokenization is supported. * @type native */ backgroundColor?: ThemeToken; /** * The CSS `background-color` property. Tokenization is supported. * @type custom */ bgColor?: ThemeToken; /** * The CSS `background-image` property. Tokenization is not supported. * @type native */ backgroundImage?: GenericToken; /** * The CSS `background-image` property. Tokenization is not supported. * @type custom */ bgGradient?: GenericToken; /** * The CSS `background-image` property. Tokenization is not supported. * @type custom */ bgImage?: GenericToken; /** * The CSS `background-image` property. Tokenization is not supported. * @type custom */ bgImg?: GenericToken; /** * The CSS `background-size` property. Tokenization is not supported. * @type native */ backgroundSize?: GenericToken; /** * The CSS `background-size` property. Tokenization is not supported. * @type custom */ bgSize?: GenericToken; /** * The CSS `background-position` property. Tokenization is not supported. * @type native */ backgroundPosition?: GenericToken; /** * The CSS `background-position` property. Tokenization is not supported. * @type custom */ bgPosition?: GenericToken; /** * The CSS `background-position` property. Tokenization is not supported. * @type custom */ bgPos?: GenericToken; /** * The CSS `background-repeat` property. Tokenization is not supported. * @type native */ backgroundRepeat?: GenericToken; /** * The CSS `background-repeat` property. Tokenization is not supported. * @type custom */ bgRepeat?: GenericToken; /** * The CSS `background-attachment` property. Tokenization is not supported. * @type native */ backgroundAttachment?: GenericToken; /** * The CSS `background-attachment` property. Tokenization is not supported. * @type custom */ bgAttachment?: GenericToken; /** * The CSS `background-clip` property. Tokenization is not supported. * @type native */ backgroundClip?: GenericToken; /** * The CSS `background-clip` property. Tokenization is not supported. * @type native */ bgClip?: GenericToken; };