import React from 'react'; import type { FieldProps } from './types'; declare const Field: { ({ type, ...rest }: FieldProps): React.JSX.Element; displayName: string; }; export default Field;