import React from 'react'; import { DefaultTheme } from 'styled-components'; import 'antd/lib/table/style/index.css'; import 'antd/lib/dropdown/style/index.css'; import 'antd/lib/style/index.css'; import 'antd/lib/switch/style/index.css'; import 'antd/lib/spin/style/index.css'; import 'antd/lib/tooltip/style/index.css'; import 'antd/lib/modal/style/index.css'; import 'antd/lib/slider/style/index.css'; import 'react-toastify/dist/ReactToastify.css'; interface IThemeProviderProps { theme?: DefaultTheme; primary?: string; children?: React.ReactNode; language?: 'en' | 'ko'; } declare const ThemeProvider: React.FC; export default ThemeProvider;