import React from 'react';
interface DynamicRepeatableProps {
    field: any;
    name?: string;
}
declare const DynamicRepeatable: React.FC<DynamicRepeatableProps>;
export default DynamicRepeatable;
