import React from 'react'; type DynamicContainerProps = { id: string; children?: React.ReactNode; }; declare const DynamicContainer: React.FC; export default DynamicContainer;