import React from 'react'; declare type Props = { errorMessage?: string | null; } & Partial; declare type DefaultProps = { className: string; error: boolean; position: string; }; export default class FormField extends React.PureComponent { static displayName: string; static defaultProps: DefaultProps; render(): JSX.Element; } export {};