import { default as React } from 'react'; import { STATE, SIZE } from '../../constants'; export type MessageAction = { label?: string; onClick: (event: React.MouseEvent) => void; }; export interface MessageProps { state: keyof typeof STATE; message: string; action?: MessageAction; size?: Extract; isFullWidth?: boolean; } declare const Message: ({ state, message, action, size, isFullWidth, }: MessageProps) => import("react/jsx-runtime").JSX.Element; export default Message;