import { BorderRadius } from './borderRadius'; import { Colors } from './colors'; import { Shadows } from './shadows'; import { Spacers } from './spacers'; import { Typography } from './typography'; export interface Theme { name: 'light'; shadows: Shadows; spacers: Spacers; borderRadius: BorderRadius; typography: Typography; colors: Colors; } export declare const lightBaseTheme: Theme;