import React from 'react';
import { IPrompterProps } from './prompt';
export interface iPleaseWaitProps {
    step?: number;
    max?: number;
    /** do not wrap in a dialog */
    contentOnly?: boolean;
    cancelText?: string;
    onCancel?: () => void;
    label?: string;
}
export declare const PleaseWait: React.FunctionComponent<iPleaseWaitProps>;
export declare const PleaseWaitPrompt: (props?: {
    message: string;
    step?: number;
    max?: number;
}) => IPrompterProps;
