import * as React from 'react'; import type { DataType } from '../../../configs/components/form-input'; import type { CommonPropsType } from '../../types'; export type PropsType = CommonPropsType & DataType & { onChange: (v: string) => void; disabled: boolean; readOnly: boolean; }; declare const WdInput: React.ForwardRefExoticComponent & { onChange: (v: string) => void; disabled: boolean; readOnly: boolean; } & React.RefAttributes>; export default WdInput;