import React from "react";
interface ContainerProps {
    children: React.ReactNode;
}
declare const Container: React.FC<ContainerProps>;
export default Container;
