import { DefaultTheme } from 'styled-components'; import { accordionThemeInterface } from './components/accordion/accordion.theme.interface'; import { anchorThemeInterface } from './components/anchor/anchor.theme.interface'; import { avatarThemeInterface } from './components/avatar/avatar.theme.interface'; import { badgeThemeInterface } from './components/badge/badge.theme.interface'; import { boxThemeInterface } from './components/box/box.theme.interface'; import { buttonThemeInterface } from './components/button/button.theme.interface'; import { checkboxThemeInterface } from './components/checkbox/checkbox.theme.interface'; import { dropdownThemeInterface } from './components/dropdown/dropdown.theme.interface'; import { inputThemeInterface } from './components/input/input.theme.interface'; import { radioThemeInterface } from './components/radio/radio.theme.interface'; import { spinnerThemeInterface } from './components/spinner/spinner.theme.interface'; import { tagThemeInterface } from './components/tag/tag.theme.interface'; import { textareaThemeInterface } from './components/textarea/textarea.theme.interface'; declare module 'styled-components' { interface DefaultTheme { name: string; accordion: accordionThemeInterface; anchor: anchorThemeInterface; avatar: avatarThemeInterface; badge: badgeThemeInterface; box: boxThemeInterface; button: buttonThemeInterface; checkbox: checkboxThemeInterface; dropdown: dropdownThemeInterface; input: inputThemeInterface; radio: radioThemeInterface; spinner: spinnerThemeInterface; tag: tagThemeInterface; textarea: textareaThemeInterface; } } export declare const Theme: DefaultTheme;