import type React from "react";
type DynamicContainerProps = {
    id: string;
    children?: React.ReactNode;
};
declare const DynamicContainer: ({ id, children }: DynamicContainerProps) => import("react/jsx-runtime").JSX.Element;
export default DynamicContainer;
