///
export { Form } from 'antd';
import * as antd_lib_form_FormItem from 'antd/lib/form/FormItem';
import React from 'react';
import { ControllerProps } from 'react-hook-form';
import { FormItemProps } from 'antd/es/form';
interface HooksFormItemProps extends FormItemProps {
name: ControllerProps["name"];
control: ControllerProps["control"];
rules?: ControllerProps["rules"];
labelText?: string;
defaultValue?: ControllerProps["defaultValue"];
valuePropName?: string;
trigger?: string;
getValueFromEvent?: (event: any) => any;
hostUIValueState?: (value: any) => any;
}
declare const InternalFormItem: React.FC;
declare const PureFormItem: typeof antd_lib_form_FormItem.default;
interface IProps extends React.HTMLAttributes {
value?: string;
hidePlaceholder?: boolean;
}
declare const PlainText: React.ForwardRefExoticComponent>;
interface Props {
name: string;
control: any;
children?: any;
required?: boolean;
label?: string;
textPrefix?: any;
textCenter?: string;
textPost?: string;
decorator?: string;
className?: string;
rules?: any;
trigger?: any;
secondTrigger?: string;
customOnChange?: any;
}
declare function CustomInput(props: Props): JSX.Element;
export { CustomInput, InternalFormItem as FormItem, PlainText, PureFormItem };