import type { ComponentPropsWithRef, ElementType } from 'react'; import { type MessageProperties } from '../message'; export type BannerProperties = { /** Message Type */ messageType?: MessageProperties['messageType']; } & Omit & ComponentPropsWithRef; /** * Messages indicating the global status of an application or website. * @docs {@link https://design.visa.com/components/banner/?code_library=react | See Docs} * @related banner-close-button, message-content * @vgar TODO * @wcag TODO */ declare const Banner: { ({ className, ...remainingProps }: BannerProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Banner;