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