import { FieldArrayRenderProps } from 'formik'; export interface OptionRowProps { name: string; index: number; arrayHelpers: FieldArrayRenderProps; withOptionDescription?: boolean; } declare const OptionRow: React.FC; export default OptionRow;