import { CSSInterpolation } from "@mui/system"; import { ContainerClassKey, ContainerProps } from "@mui/material/Container"; import { HeaderProps, HeaderClassKey, SubheaderProps, SubheaderClassKey, TopHeaderProps, TopHeaderClassKey } from "./Header/Header"; import { EdgeSidebarProps, EdgeSidebarClassKey } from "./EdgeSidebar/EdgeSidebar"; import { ContentProps, ContentClassKey } from "./Content/Content"; import { InsetSidebarProps, InsetSidebarClassKey } from "./InsetSidebar/InsetSidebar"; import { FooterProps, FooterClassKey } from "./Footer/Footer"; import { SidebarContentProps, SidebarContentClassKey } from "./Content/SidebarContent"; declare type OverridesStyleRules = Record; declare module "@mui/material/styles/components" { interface Components { AppHeader?: { defaultProps?: Partial; styleOverrides?: Partial>; }; AppTopHeader?: { defaultProps?: Partial; styleOverrides?: Partial>; }; AppSubheader?: { defaultProps?: Partial; styleOverrides?: Partial>; }; AppEdgeSidebar?: { defaultProps?: Partial; styleOverrides?: Partial>; }; AppContent?: { defaultProps?: Partial; styleOverrides?: Partial>; }; AppInsetSidebar?: { defaultProps?: Partial; styleOverrides?: Partial>; }; AppInsetContainer?: { defaultProps?: Partial; styleOverrides?: Partial>; }; AppFooter?: { defaultProps?: Partial; styleOverrides?: Partial>; }; AppSidebarContent?: { defaultProps?: Partial; styleOverrides?: Partial>; }; } } export {};