/// import { FormikValues } from 'formik'; import { ThemeOptions } from "@mui/material"; import { CSSProperties } from "@mui/styles"; export interface IFieldsSectionProps { formFields?: IFormFieldsSection[]; values: FormikValues; setFieldValue: (field: string, value: FormikValues, shouldValidate?: boolean | undefined) => void; countries?: { [key: string]: string | number; }[]; theme?: 'dark' | 'light'; themeOptions?: ThemeOptions & { input?: CSSProperties; checkbox?: CSSProperties; }; containerClass?: string; } export declare const FieldsSection: ({ formFields, countries, values, setFieldValue, theme, containerClass, themeOptions, }: IFieldsSectionProps) => JSX.Element;