import { ComponentChildren } from 'preact'; export interface FormFieldProps { error?: boolean; errorMessage?: string; wrapperClasses?: string; helpHtml?: string; helpText?: string; type?: string; children?: ComponentChildren; } export declare const FormField: ({ error, errorMessage, wrapperClasses, helpHtml, helpText, type, children, }: FormFieldProps) => import("preact").JSX.Element; export default FormField;