import React from 'react'; import { type FormField } from '../../types'; interface RepeatingControlsProps { rows: FormField[]; question: FormField; questionIndex: number; handleDelete: () => void; handleAdd: () => void; } declare function RepeatControls({ question, rows, handleDelete, handleAdd, questionIndex }: RepeatingControlsProps): React.JSX.Element; export default RepeatControls; //# sourceMappingURL=repeat-controls.component.d.ts.map