import { Color } from './color'; export interface themeVariantInterface { LIGHT: string; DARK: string; } export declare const themeVariant: themeVariantInterface; export declare const getTheme: (selectedTheme: string, themePrimaryColor?: Color, direction?: any) => { theme: import('@mui/material').Theme; primaryColorVariations: { label: string; color: import('./color').EnhancedColor; }[]; }; export default themeVariant;