import React from 'react'; import { IWithFormFieldProps } from './WithFormFieldProps'; export declare const WithFormField: { ({ validation, label, description, name, controlLabel, inField, children, ...other }: IWithFormFieldProps): any; defaultProps: { validation: any; inField: boolean; controlLabel: any; label: any; description: any; Control: typeof React.Component; }; };