import { Color } from '../../theme/color'; declare function createLightTheme(primaryColor?: Color): { theme: import('@mui/material').Theme; primaryColorVariations: { label: string; color: import('../..').EnhancedColor; }[]; }; declare function createDarkTheme(primaryColor?: Color): { theme: import('@mui/material').Theme; primaryColorVariations: { label: string; color: import('../..').EnhancedColor; }[]; }; export declare const themes: { createLightTheme: typeof createLightTheme; createDarkTheme: typeof createDarkTheme; }; export {};