import React from 'react'; import { LayerProps } from '../../layout'; export interface MessageProps extends Partial> { title: string; messageType?: 'main' | 'alternative' | 'success' | 'warning' | 'danger'; icon?: (color: string) => JSX.Element; description: string; } declare const Message: React.ForwardRefExoticComponent & React.RefAttributes>; export { Message };