import React from 'react'; import type { PisellUrlProps } from './types'; import './PisellUrl.less'; /** * PisellUrl URL 链接组件 * * URL 链接输入/展示组件,支持只读、编辑、禁用三种状态。 * 基于 Ant Design Input 组件开发,提供 URL 格式校验、协议自动补全、 * 链接跳转和协议/路径显示控制功能。 * * @param props 组件 Props * * @example * // 编辑态(URL 输入) * * * @example * // 只读态(可跳转) * * * @example * // 协议自动补全 * */ export declare const PisellUrl: React.FC; declare const _default: React.NamedExoticComponent; export default _default;