import React from 'react';
import { FormItemsProps } from './types';
declare const formchildItem: (props: Partial<FormItemsProps> & {
    field: string;
    children: React.ReactElement;
}) => JSX.Element;
export default formchildItem;
