import { Component, type InfernoNode } from 'inferno'; export interface IPromptProps { when?: boolean; message: string; } /** * The public API for matching a single path and rendering. */ export declare class Prompt extends Component { unblock: any; enable(message: any): void; disable(): void; componentWillMount(): void; componentWillReceiveProps(nextProps: any): void; componentWillUnmount(): void; render(): InfernoNode; }