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