/// import { Theme } from "@mui/material/styles"; import { SxProps } from "@mui/system"; import { PropsWithFunctionChildren } from "../Root/Root"; declare type MainProps = JSX.IntrinsicElements["main"]; export declare type ContentClassKey = "root"; export interface ContentProps extends MainProps { sx?: SxProps; } export declare const Content: ({ children, ...inProps }: PropsWithFunctionChildren) => JSX.Element; export {};