/** * FormField Molecule - Complete Form Input with Label and Error * * Combines AtomicText (label/error) + AtomicInput (field) * * Atomic Design Level: MOLECULE * Composition: AtomicText + AtomicInput */ import React from 'react'; import { ViewStyle } from 'react-native'; import { type AtomicInputProps } from '../atoms'; export interface FormFieldProps extends Omit { label?: string; error?: string; helperText?: string; required?: boolean; containerStyle?: ViewStyle; style?: ViewStyle; requiredIndicator?: string; } export declare const FormField: React.FC;