import { FC } from 'react';
import { IAlertProps } from '../alert';
export declare type PromptType = 'warning' | 'strongHint' | 'weakHint';
export declare type IPromptProps = IAlertProps & {
type: PromptType;
};
export declare const Prompt: FC<IPromptProps>;
export default Prompt;