import React from 'react'; import type { CommonPropsType } from '../../types'; import type { DataType, EventsType } from '../../../configs/components/wd-input-url'; /** * 标准化:URL输入组件 */ export declare const WdInputUrl: React.ForwardRefExoticComponent; }, { readonly name: "focus"; readonly title: "聚焦"; readonly detail: import("@sinclair/typebox").TObject<{ value: import("@sinclair/typebox").TString; }>; }, { readonly name: "blur"; readonly title: "失焦"; readonly detail: import("@sinclair/typebox").TObject<{ value: import("@sinclair/typebox").TString; }>; }, { readonly name: "confirm"; readonly title: "确认"; readonly detail: import("@sinclair/typebox").TObject<{ value: import("@sinclair/typebox").TString; }>; }, { readonly name: "clear"; readonly title: "清除内容"; readonly detail: import("@sinclair/typebox").TObject<{ originValue: import("@sinclair/typebox").TString; }>; }]>> & import("type-fest").Simplify<{ label?: string; name?: string; required?: boolean; extra?: string; size?: string; maxLength?: number; placeholder?: string; status?: string; layout?: string; block?: boolean; after?: string; focus?: boolean; requiredFlag?: boolean; labelVisible?: boolean; inputValue?: string; clearable?: boolean; counterVisible?: boolean; before?: string; labelWidth?: string; labelAlign?: string; labelWrap?: boolean; labelTips?: string; isUnionValue?: boolean; prefixType?: string; prefixIcon?: string; prefixSrc?: string; suffixType?: string; suffixIcon?: string; suffixSrc?: string; borderedH5?: boolean; borderedPc?: boolean; requiredMsg?: string; }> & React.RefAttributes>; export type WdInputUrlProps = CommonPropsType & EventsType & DataType;