import { default as React } from 'react'; import { IconName } from '../Icons'; import { StateType } from '../StyledInput/StyledInput'; export interface FormFieldProps { state?: StateType; message?: string; label?: string; required?: boolean; icon?: IconName; title?: string; children?: React.ReactNode; } export interface FieldLabelProps { label: string | undefined; required: boolean | undefined; icon: IconName | undefined; title: string | undefined; } export declare function FormField(props: FormFieldProps): import("react/jsx-runtime").JSX.Element;