import React from "react"; import { IconSize } from "Icon"; type Props = { backgroundColor: string; className?: string; icon: string; iconColor: string; iconSize: IconSize; ctaChildren?: React.ReactNode; messageHeader?: string; message: string; textColor: string; fontWeight?: string; intentLine?: boolean; iconFlexPosition?: "start" | "center" | "end"; }; export declare function BannerMessage(props: Props): JSX.Element; export {};