import * as React from 'react'; import { MessageType } from '../../../PredefinedConfig/Common/Enums'; import { IAdaptableBlotter } from '../../../Utilities/Interface/IAdaptableBlotter'; /** * The most simple of the alert type popups - just shows a message with a close button. No user action required. */ export interface AdaptableBlotterPopupAlertProps extends React.ClassAttributes { ShowPopup: boolean; onClose: () => void; Msg: string; Header: string; MessageType: MessageType; AdaptableBlotter: IAdaptableBlotter; } export declare class AdaptableBlotterPopupAlert extends React.Component { render(): JSX.Element; }