import { JSX } from 'react'; import { MessageStyle } from '../theme'; export type MessageStyleProps = MessageStyle & Record; export interface MessageProps extends React.HTMLAttributes, MessageStyleProps { className?: string; children?: React.ReactNode; } export declare const Message: ({ severity, textPosition, className, children, ...props }: MessageProps) => JSX.Element; //# sourceMappingURL=message.d.ts.map