import { IAdaptableBlotter } from '../../../Utilities/Interface/IAdaptableBlotter'; import * as React from 'react'; import * as PopupRedux from '../../../Redux/ActionsReducers/PopupRedux'; /** * This is the main popup that we use - so all function popups will appear here. */ export interface IAdaptableBlotterPopupProps extends React.ClassAttributes { showModal: boolean; ComponentName?: string; ComponentStrategy: string; onHide?: () => void; Blotter: IAdaptableBlotter; PopupParams: string; onClearPopupParams?: () => PopupRedux.PopupClearParamAction; } export declare class AdaptableBlotterPopup extends React.Component { render(): JSX.Element; }