import { Theme as ThemeUITheme } from 'styled-system'; import { ThemeColors } from './colors'; declare type Theme = ThemeUITheme & { colors: ThemeColors; mediaQueries?: { xs: string; sm: string; md: string; lg: string; xl: string; xxl: string; }; styles: Object; }; declare const tokens: Theme; export { Theme, ThemeColors, tokens as default };