import { ChevronProps } from '../Chevron/Chevron.interface'; export interface AlertBannerInterface { /** * Defines the banner style */ alertType: "Standard" | "Emergency"; /** * body description to display */ message: string; /** * callToAction props */ callToAction: ChevronProps; id?: string; }