import React from 'react'; import type { PisellPhoneProps } from './types'; import './PisellPhone.less'; /** * PisellPhone 电话号码组件 * * 电话号码输入/展示组件,支持只读、编辑、禁用三种状态。 * 基于 Ant Design Input 和 Select 组件开发,提供国家码选择、自动格式化、格式校验和拨号功能。 * * @param props 组件 Props * * @example * // 编辑态(中国手机号) * * * @example * // 只读态(可拨号) * * * @example * // 国家码选择 * */ export declare const PisellPhone: React.FC; declare const _default: React.NamedExoticComponent; export default _default;