import type { FigmaTheme } from '@alodi/figma'; import type { CssVarsThemeOptions, PaletteMode, Theme, ThemeOptions } from '@mui/material/styles'; type SiteOptions = { mode: PaletteMode; figma: FigmaTheme; }; export type MuiThemeOptions = Omit & Pick & { cssVariables?: boolean | Pick; } & SiteOptions; export type MuiTheme = Theme; export declare const createMuiTheme: (inOptions: MuiThemeOptions, ...args: object[]) => MuiTheme; export {};