import { type MessageProperties } from '../message'; export type SectionMessageProperties = MessageProperties; /** * Section-level messages providing information about the status of a page or action. * @docs {@link https://design.visa.com/components/section-message/?code_library=react | See Docs} * @related section-message-close-button, message-content * @vgar TODO * @wcag TODO */ declare const SectionMessage: { ({ className, ...remainingProps }: SectionMessageProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default SectionMessage;