import React from 'react'; import { ContainerProps } from '@mui/material/Container'; import { PaperProps } from '@mui/material/Paper'; import { SxProps } from '@mui/material/styles'; export interface PageTitleProps { title: string | React.ReactElement; level?: number; sx?: SxProps; style?: React.CSSProperties; } export declare const PageTitle: React.ComponentType; export declare const PageContent: React.ComponentType; export interface PageBoxProps { title?: string; titleLevel?: number; sxPaper?: SxProps; sxTitle?: SxProps; sxBox?: SxProps; mBox?: number; pBox?: number; } export declare const PageBox: React.ComponentType>; export declare const ContentPaper: React.ComponentType>; export interface ContainerPaper { fullHeight?: boolean; } export declare const ContainerPaper: React.ComponentType>;