/** * The SectionMessage component is used to display an inline message inside a page or some container. * Note: We changed the name of the component from `InlineMessage` to `SectionMessage`. * * This component switches the variants of looks depends on the props `messageType` and `region`. * * Also extends the props of `
` element (the wrapper). * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div */ export declare const SectionMessage: import("react").ForwardRefExoticComponent<{ messageType?: import("../../styled-system/recipes").SectionMessageSlotRecipeVariant["messageType"]; region?: import("../../styled-system/recipes").SectionMessageSlotRecipeVariant["region"]; actionSlot?: import("react").ReactNode; onClose?: import("..").IconButtonProps["onClick"]; children?: import("react").ReactNode; statusIconProps?: Pick, "aria-label">; closeButtonProps?: Pick, "aria-label">; disableResponsive?: boolean; } & Omit, HTMLDivElement>, "ref"> & import("react").RefAttributes>;