/// import { FieldInterface } from './fields/types'; declare const Field: { ({ required, children, name, type, label, error, placeholder, options, strength, className, defaultValue, displayProperty, valueProperty, keyProperty, tooltip, readOnly, wrapperStyle, }: FieldInterface): JSX.Element; defaultProps: { defaultValue: any; options: any[]; tooltip: string; }; }; export default Field;