interface DynamicElementHOCProps { children?: React.ReactNode; onRemove?: () => void; showRemove?: boolean; className?: string; } declare const DynamicElementHOC: (props: DynamicElementHOCProps) => import("react/jsx-runtime").JSX.Element; export { DynamicElementHOC }; export default DynamicElementHOC;