import { GuiTheme } from './guiTheme';
interface WithGuiTheme {
    theme?: GuiTheme;
}
declare const guiTheme: (customColor?: any) => any;
declare const createGuiTheme: (customColor?: any) => import("@mui/material/styles").Theme;
export default createGuiTheme;
export { guiTheme, WithGuiTheme };
export type { GuiTheme };
