/// import { Theme as ThemeType } from 'styled-system'; export declare const baseTheme: { colors: { blues: string[]; teals: string[]; greens: string[]; reds: string[]; yellows: string[]; darks: string[]; lights: string[]; primaries: string[]; text: string; error: string; fadedError: string; success: string; alert: string; overlay: string; primary: string; }; fontFamily: string; breakpoints: { sm: string; md: string; lg: string; xlg: string; }; space: number[]; }; export declare const createTheme: (theme: ThemeType) => import("ramda").MergeDeep; export declare type Theme = ThemeType & typeof baseTheme;