import * as React from 'react'; import { messageProps } from "../../types/op-message"; import './index.scss'; export declare const styleConfig: { success: { icon: React.JSX.Element; style: { 'background-color': string; color: string; }; }; warning: { icon: React.JSX.Element; style: { 'background-color': string; color: string; }; }; error: { icon: React.JSX.Element; style: { 'background-color': string; color: string; }; }; }; export default function Message(props: messageProps): React.JSX.Element | null;