import { default as React } from 'react'; export interface Props { style?: React.CSSProperties | undefined; children?: React.ReactNode; } export default function MainContainer({ children, style }: Props): import("react/jsx-runtime").JSX.Element;