UNPKG

@kwiz/fluentui

Version:

KWIZ common controls for FluentUI

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