import * as React from 'react';
import { Action } from 'redux';
export interface AdaptablePopupPromptProps {
    header: string;
    message: string;
    onClose: () => void;
    onConfirm: Function;
    onConfirmActionCreator?: (inputText: string) => Action;
    defaultValue?: string;
}
export declare const AdaptablePopupPrompt: React.FunctionComponent<React.PropsWithChildren<AdaptablePopupPromptProps>>;
