UNPKG

@kwiz/fluentui

Version:
18 lines (17 loc) 485 B
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;