interface PropsModel { mode?: 'light' | 'dark'; primaryColor?: string | null; secondaryColor?: string | null; fontFamily?: string | null; backgroundPaperLight?: string | null; backgroundPaperDark?: string | null; backgroundDefaultDark?: string | null; } export declare const createWebTheme: ({ mode, primaryColor, secondaryColor, fontFamily, backgroundPaperLight, backgroundPaperDark, backgroundDefaultDark, }: PropsModel) => { theme: import("@mui/material").Theme; }; export {};