import React from 'react'; import { ConfirmProps } from './confirm'; export interface PromptProps extends Omit { /** 输入框值 */ value?: string; /** 输入框占位文案 */ placeholder?: string; /** 输入框最大字符长度 */ maxLength?: number; /** 点击确定按钮回调 */ onOk?: (inputValue?: string) => any; } export declare const Prompt: React.FC; export default Prompt;