import { Theme } from '@mui/material';

export type ExtendedTheme = Theme & {
    name: string;
    id: string;
};
declare module '@mui/material/styles/createTypography' {
    interface Typography {
    }
    interface TypographyOptions {
    }
}
export declare const muiLightSiteTheme: ExtendedTheme;
export declare const muiDarkSiteTheme: ExtendedTheme;
