import React from 'react'; export interface MessageBoxProps extends React.HTMLProps { /** Content that can be announced, such as a new message, for screen readers */ announcement?: string; /** Custom aria-label for scrollable portion of message box */ ariaLabel?: string; /** Content to be displayed in the message box */ children: React.ReactNode; /** Custom classname for the MessageBox component */ className?: string; } declare const MessageBox: React.FunctionComponent; export default MessageBox;