/// import { FormikValues } from 'formik'; export interface IFieldsSectionProps { formFields?: IFormFieldsSection[]; values: FormikValues; setFieldValue: (field: string, value: FormikValues | string | number, shouldValidate?: boolean | undefined) => void; disableField?: string; countries?: { [key: string]: string | number; }[]; states?: { [key: string]: string | number; }[]; theme?: 'dark' | 'light'; containerClass?: string; setPhoneValidationIsLoading?: (isLoading: boolean) => void; onFieldChange?: (name: string, value: string | number) => void; } export declare const FieldsSection: ({ formFields, countries, states, values, setFieldValue, theme, containerClass, setPhoneValidationIsLoading, onFieldChange, disableField, }: IFieldsSectionProps) => JSX.Element;