import React from "react"; import { Theme } from "../theme"; export interface ContainerProps { maxWidth?: keyof Theme["breakpoints"]; children?: React.ReactNode; } export declare const Container: ({ maxWidth, children }: ContainerProps) => import("@emotion/react/jsx-runtime").JSX.Element;