import { Theme } from './types'; type Themes = { light: Theme; dark: Theme; }; declare const theme: Themes; export default theme;