declare const theme: { typography: { fontFamily: string; }; colors: { primary: string; secondary: string; error: string; title: string; bodyText: string; bodyTextLight: string; background: string; anchor: string; border: string; lightBorder: string; }; shadow: { box: string; level0: string; level1: string; level2: string; }; r: { mobile: { up: string; down: string; gutter: string; }; tablet: { up: string; down: string; gutter: string; }; desktop: { up: string; gutter: string; }; }; helpers: { gutter: { [x: string]: string | { padding: string; }; padding: string; }; }; }; export declare type Theme = typeof theme; export default theme;