import { type ParagraphProps } from "../block/Paragraph.js";
import { type ColorVariants } from "../style/Color.js";
import { type Status } from "../style/Status.js";
export interface MessageProps extends ParagraphProps, ColorVariants {
    /** Status of the message (defaults to "info"). */
    status?: Status | undefined;
}
/** Paragraph with status colours. */
export declare function Message({ children, status, ...variants }: MessageProps): import("react/jsx-runtime").JSX.Element;
export declare const LOADING_MESSAGE: import("react/jsx-runtime").JSX.Element;
