import { BoxProps } from './Box';
import { ForwardRef } from './types';
export declare type MessageProps = BoxProps;
/**
 * Styled Box component for callouts and inline messages
 *
 * Message variants can be defined in the theme.messages object.
 * @see https://theme-ui.com/components/message
 */
export declare const Message: ForwardRef<HTMLDivElement, MessageProps>;
