import { NmiTheme } from '../types'; export * from './lightTheme'; export * from './darkTheme'; export declare const themes: { light: NmiTheme; dark: NmiTheme; }; export declare const getTheme: (themeName?: string) => NmiTheme; export type ThemeName = keyof typeof themes;