import { ComponentPropsWithoutRef } from 'react'; import { Flex } from './Flex'; declare type Props = { message: null | string; color?: string; bg?: string; } & ComponentPropsWithoutRef; export declare const MessageBox: ({ message, color, bg, ...props }: Props) => ("" | JSX.Element)[]; export {};