export declare class LinearGradient { /** * The CSS linear-gradient representation of the `LinearGradient`. * @example * linear-gradient(45deg, hsla(0, 0%, 100%, 1) 0%, hsla(0, 0%, 0%, 1) 100%) */ linearGradient: string; /** * CSS declarations for the `background-image` CSS property. */ backgroundImageStyle: {backgroundImage: string}; /** * CSS declarations for the `background` CSS property. */ backgroundStyle: {background: string}; }