import React from 'react'; import { IPromptProps, ConfirmMode, IDialogProps } from './Modal.types'; export declare class Prompt extends React.PureComponent { static defaultProps: { inputProps: { type: string; id: string; }; label: string; yesText: string; yesTitle: string; noText: string; noTitle: string; mode: ConfirmMode; okText: string; okTitle: string; cancelText: string; cancelTitle: string; animate: boolean; padded: boolean; showClose: boolean; }; readonly reactModalProps: IDialogProps; render(): JSX.Element; } export default Prompt;