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; export default Prompt;