import React from "react"; export type LightPromoBannerProps = { title?: string; subtitle?: string; image?: React.ReactNode; className?: string; cta?: React.ReactNode; onClick?: () => void; onDismiss?: (event: React.MouseEvent) => void; /** Accessible label for the dismiss button. Consumer passes translated string. */ dismissLabel?: string; } & React.HTMLAttributes; export declare function LightPromoBanner({ title, subtitle, image, cta, className, onClick, onDismiss, dismissLabel, ...rest }: LightPromoBannerProps): React.JSX.Element; export declare namespace LightPromoBanner { var displayName: string; } //# sourceMappingURL=LightPromoBanner.d.ts.map