import * as React from "react"; import { GradientStyle, PromoBackgroundColor, PromoProps } from "../types"; interface PromoBannerProps extends PromoProps { bgColor?: PromoBackgroundColor; gradientStyle?: GradientStyle; } declare const PromoBanner: ({ bgColor, gradientStyle, isDarkBackground, className, ...other }: PromoBannerProps) => React.JSX.Element; export default PromoBanner;