/// <reference types="react" />
import { FieldArrayRenderProps } from 'formik';
import './option-row.scss';
export interface OptionRowProps {
    name: string;
    index: number;
    arrayHelpers: FieldArrayRenderProps;
    withOptionDescription?: boolean;
}
declare const OptionRow: React.FC<OptionRowProps>;
export default OptionRow;
