import { ReactNode } from "react"; import { BoxProps } from "./Box"; export declare type MainProps = { children?: ReactNode; variant?: "stack" | "overlap"; maxWidth?: BoxProps["maxWidth"]; }; export declare const Main: ({ children, variant, maxWidth, }: MainProps) => import("@emotion/react/jsx-runtime").JSX.Element;