import React from 'react'; import { DataType } from '../types'; import { FormFieldLayout } from './SimpleFormField'; declare type FormFieldProps = { type?: DataType; label: React.ReactNode; value: any; name?: string; description?: string; layout?: FormFieldLayout; } | { type?: DataType; label: React.ReactNode; defaultValue: any; name?: string; description?: string; layout?: FormFieldLayout; } | { label: React.ReactNode; children: React.ReactNode; type?: undefined; name?: string; description?: string; layout?: FormFieldLayout; }; export declare function FormField(props: FormFieldProps): JSX.Element; export {}; //# sourceMappingURL=FormField.d.ts.map