import { ReactElement } from 'react';
export interface FieldProps {
name: string | [string, string];
title?: string | ReactElement;
validator?: any;
[props: string]: any;
decoratorProps?: {
[props: string]: any;
};
componentProps?: {
[props: string]: any;
};
}