import React, { JSX } from 'react'; import { TextInputProps } from '../TextInput'; import './Field.scss'; export type FieldProps = TextInputProps & { children?: JSX.Element; showErrorIcon?: boolean; }; export declare const Field: React.ForwardRefExoticComponent, "onChange"> & { children?: JSX.Element; showErrorIcon?: boolean; } & React.RefAttributes>;