import React from 'react';
declare const DynamicComponent: ({ type, operator, options, fieldNames: itemFieldNames, ...restProps }: {
    [x: string]: any;
    type: any;
    operator: any;
    options?: any[];
    fieldNames: any;
}) => React.JSX.Element;
export default DynamicComponent;
