import * as styledComponents from "styled-components"; interface ThemeInterface { BASE_SIZE: number; UNIT: string; colors: { blue: string; green: string; yellow: string; teal: string; lightBlue: string; red: string; orange: string; white: string; black: string; grey: string; darkGrey: string; lightGrey: string; primary: string; secondary: string; success: string; error: string; info: string; }; } declare const styled: styledComponents.ThemedBaseStyledInterface, css: styledComponents.BaseThemedCssFunction, createGlobalStyle:

(first: styledComponents.CSSObject | TemplateStringsArray | styledComponents.InterpolationFunction>, ...interpolations: styledComponents.Interpolation>[]) => styledComponents.GlobalStyleComponent, keyframes: (strings: TemplateStringsArray | styledComponents.CSSKeyframes, ...interpolations: styledComponents.SimpleInterpolation[]) => styledComponents.Keyframes, ThemeProvider: import("react").ComponentClass, any>; export { css, createGlobalStyle, keyframes, ThemeProvider }; export default styled;