import * as React from 'react'; import { IAdaptableBlotter } from '../../../Utilities/Interface/IAdaptableBlotter'; export interface AdaptableBlotterPopupPromptProps extends React.ClassAttributes { ShowPopup: boolean; Header: string; Msg: string; onClose: () => void; onConfirm: Function; AdaptableBlotter: IAdaptableBlotter; } export interface AdaptableBlotterPopupPromptState { PromptText: string; } export declare class AdaptableBlotterPopupPrompt extends React.Component { constructor(props: AdaptableBlotterPopupPromptProps); render(): JSX.Element; onCloseForm(): void; onConfirmmForm(): void; changeContent: (e: any) => void; }