import React from 'react'; export interface IFormFieldProps { label?: string; showLabel?: boolean; children?: any; required?: boolean; for?: string; className?: string; } export declare function FormField(props: IFormFieldProps): React.JSX.Element;