export default function withNameResolver(WrappedComponent: any): {
    (props: any): import("react/jsx-runtime").JSX.Element;
    displayName: string;
    propTypes: {
        properties: PropTypes.Requireable<object>;
        schema: PropTypes.Requireable<PropTypes.InferProps<{
            key: PropTypes.Requireable<any[]>;
        }>>;
    };
};
import PropTypes from 'prop-types';
