import React, { ReactElement } from "react"; import { Error } from "../Error"; export interface Props { id?: string; classes?: string; inline?: boolean; attributes?: { [key: string]: string; }; error?: React.ComponentProps; dontWrap?: boolean; spellCheck?: boolean; dataTestId: string; children: ReactElement; } export declare const Field: (props: Props) => React.JSX.Element;