From a4b92ca4e1cdb24a9830b6ac70ca8645a6b177d4 Mon Sep 17 00:00:00 2001 From: apane Date: Tue, 19 Nov 2019 16:32:54 -0300 Subject: [PATCH 001/116] Adds cookie permissions to localStorage/redux state --- src/index.js | 2 ++ .../store/actions/loadCookiesFromStorage.js | 26 +++++++++++++++++++ .../store/actions/saveCookiesToStorage.js | 21 +++++++++++++++ src/logic/cookies/utils/cookiesStorage.js | 2 ++ src/store/index.js | 5 ++++ 5 files changed, 56 insertions(+) create mode 100644 src/logic/cookies/store/actions/loadCookiesFromStorage.js create mode 100644 src/logic/cookies/store/actions/saveCookiesToStorage.js create mode 100644 src/logic/cookies/utils/cookiesStorage.js diff --git a/src/index.js b/src/index.js index a7992734..a824221b 100644 --- a/src/index.js +++ b/src/index.js @@ -8,6 +8,7 @@ import { store } from '~/store' import loadSafesFromStorage from '~/routes/safe/store/actions/loadSafesFromStorage' import loadActiveTokens from '~/logic/tokens/store/actions/loadActiveTokens' import loadDefaultSafe from '~/routes/safe/store/actions/loadDefaultSafe' +import loadCookiesFromStorage from '~/logic/cookies/store/actions/loadCookiesFromStorage' if (process.env.NODE_ENV !== 'production') { // eslint-disable-next-line @@ -18,5 +19,6 @@ if (process.env.NODE_ENV !== 'production') { store.dispatch(loadActiveTokens()) store.dispatch(loadSafesFromStorage()) store.dispatch(loadDefaultSafe()) +store.dispatch(loadCookiesFromStorage()) ReactDOM.render(, document.getElementById('root')) diff --git a/src/logic/cookies/store/actions/loadCookiesFromStorage.js b/src/logic/cookies/store/actions/loadCookiesFromStorage.js new file mode 100644 index 00000000..03a95a96 --- /dev/null +++ b/src/logic/cookies/store/actions/loadCookiesFromStorage.js @@ -0,0 +1,26 @@ +// @flow +import type { Dispatch as ReduxDispatch } from 'redux' +import type { GlobalState } from '~/store' +import { loadFromStorage } from '~/utils/storage' +import { COOKIES_KEY } from '~/logic/cookies/utils/cookiesStorage' +import type { CookiesProps } from '~/logic/cookies/store/model/cookie' +import { setCookiesPermissions } from '~/logic/cookies/store/actions/setCookiesPermissions' + +const loadCookiesFromStorage = () => async (dispatch: ReduxDispatch) => { + try { + const cookies: ?{ [string]: CookiesProps } = await loadFromStorage(COOKIES_KEY) + + if (cookies) { + dispatch(setCookiesPermissions(cookies)) + } else { + dispatch(setCookiesPermissions({ acceptedAnalytics: false, acceptedNecessary: false })) + } + } catch (err) { + // eslint-disable-next-line + console.error('Error while getting cookies from storage:', err) + } + + return Promise.resolve() +} + +export default loadCookiesFromStorage diff --git a/src/logic/cookies/store/actions/saveCookiesToStorage.js b/src/logic/cookies/store/actions/saveCookiesToStorage.js new file mode 100644 index 00000000..ba49fa37 --- /dev/null +++ b/src/logic/cookies/store/actions/saveCookiesToStorage.js @@ -0,0 +1,21 @@ +// @flow +import type { Dispatch as ReduxDispatch } from 'redux' +import type { GlobalState } from '~/store' +import type { CookiesProps } from '~/logic/cookies/store/model/cookie' +import { setCookiesPermissions } from '~/logic/cookies/store/actions/setCookiesPermissions' +import { saveToStorage } from '~/utils/storage' +import { COOKIES_KEY } from '~/logic/cookies/utils/cookiesStorage' + +const saveCookiesToStorage = (cookies: CookiesProps) => async (dispatch: ReduxDispatch) => { + try { + await saveToStorage(COOKIES_KEY, cookies) + dispatch(setCookiesPermissions(cookies)) + } catch (err) { + // eslint-disable-next-line + console.error('Error saving cookies to the localStorage:', err) + } + + return Promise.resolve() +} + +export default saveCookiesToStorage diff --git a/src/logic/cookies/utils/cookiesStorage.js b/src/logic/cookies/utils/cookiesStorage.js new file mode 100644 index 00000000..df64a226 --- /dev/null +++ b/src/logic/cookies/utils/cookiesStorage.js @@ -0,0 +1,2 @@ +// @flow +export const COOKIES_KEY = 'COOKIES' diff --git a/src/store/index.js b/src/store/index.js index b2dae643..00e743f6 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -19,6 +19,8 @@ import notifications, { type NotificationReducerState as NotificationsState, } from '~/logic/notifications/store/reducer/notifications' +import cookies, { COOKIE_REDUCER_ID, CookieReducerState as CookiesState } from '../logic/cookies/store/reducer/cookies' + export const history = createBrowserHistory() // eslint-disable-next-line @@ -33,6 +35,7 @@ export type GlobalState = { tokens: TokensState, transactions: TransactionsState, notifications: NotificationsState, + cookies: CookiesState, } export type GetState = () => GlobalState @@ -44,8 +47,10 @@ const reducers: Reducer = combineReducers({ [TOKEN_REDUCER_ID]: tokens, [TRANSACTIONS_REDUCER_ID]: transactions, [NOTIFICATIONS_REDUCER_ID]: notifications, + [COOKIE_REDUCER_ID]: cookies, }) export const store: Store = createStore(reducers, finalCreateStore) +// eslint-disable-next-line max-len export const aNewStore = (localState?: Object): Store => createStore(reducers, localState, finalCreateStore) From ad3d27e9274b2688da45645664b9abd29ce2fdd7 Mon Sep 17 00:00:00 2001 From: apane Date: Wed, 20 Nov 2019 10:38:09 -0300 Subject: [PATCH 002/116] Adds action --- .../cookies/store/actions/setCookiesPermissions.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/logic/cookies/store/actions/setCookiesPermissions.js diff --git a/src/logic/cookies/store/actions/setCookiesPermissions.js b/src/logic/cookies/store/actions/setCookiesPermissions.js new file mode 100644 index 00000000..edeab5d8 --- /dev/null +++ b/src/logic/cookies/store/actions/setCookiesPermissions.js @@ -0,0 +1,10 @@ +// @flow +import { Map } from 'immutable' +import { createAction } from 'redux-actions' +import type { Cookie, CookiesProps } from '~/logic/cookies/store/model/cookie' + +export const SET_COOKIES_PERMISSIONS = 'SET_COOKIES_PERMISSIONS' + + +// eslint-disable-next-line max-len +export const setCookiesPermissions = createAction(SET_COOKIES_PERMISSIONS, (cookies: Map): CookiesProps => cookies) From 13d1de82518070f230305ebef78719c2ffd97d5e Mon Sep 17 00:00:00 2001 From: apane Date: Wed, 20 Nov 2019 13:39:43 -0300 Subject: [PATCH 003/116] Adds files to git --- src/logic/cookies/store/model/cookie.js | 9 ++++++++ src/logic/cookies/store/reducer/cookies.js | 25 ++++++++++++++++++++++ src/logic/cookies/store/selectors/index.js | 6 ++++++ 3 files changed, 40 insertions(+) create mode 100644 src/logic/cookies/store/model/cookie.js create mode 100644 src/logic/cookies/store/reducer/cookies.js create mode 100644 src/logic/cookies/store/selectors/index.js diff --git a/src/logic/cookies/store/model/cookie.js b/src/logic/cookies/store/model/cookie.js new file mode 100644 index 00000000..4729659b --- /dev/null +++ b/src/logic/cookies/store/model/cookie.js @@ -0,0 +1,9 @@ +// @flow +import type { RecordOf } from 'immutable' + +export type CookiesProps = { + acceptedNecessary: boolean; + acceptedAnalytics: boolean; +} + +export type Cookie = RecordOf diff --git a/src/logic/cookies/store/reducer/cookies.js b/src/logic/cookies/store/reducer/cookies.js new file mode 100644 index 00000000..68cfc575 --- /dev/null +++ b/src/logic/cookies/store/reducer/cookies.js @@ -0,0 +1,25 @@ +// @flow +import { Map } from 'immutable' +import { handleActions, type ActionType } from 'redux-actions' +import type { Cookie } from '~/logic/cookies/store/model/cookie' +import { SET_COOKIES_PERMISSIONS } from '../actions/setCookiesPermissions' +import type { State } from '~/logic/tokens/store/reducer/tokens' + +export const COOKIE_REDUCER_ID = 'cookies' + +export type CookieReducerState = Map> + +export default handleActions( + { + [SET_COOKIES_PERMISSIONS]: (state: State, action: ActionType): State => { + const { acceptedNecessary, acceptedAnalytics } = action.payload + + const newState = state.withMutations((mutableState) => { + mutableState.set('acceptedNecessary', acceptedNecessary) + mutableState.set('acceptedAnalytics', acceptedAnalytics) + }) + return newState + }, + }, + Map(), +) diff --git a/src/logic/cookies/store/selectors/index.js b/src/logic/cookies/store/selectors/index.js new file mode 100644 index 00000000..444432d8 --- /dev/null +++ b/src/logic/cookies/store/selectors/index.js @@ -0,0 +1,6 @@ +// @flow +import { type GlobalState } from '~/store' +import { COOKIE_REDUCER_ID } from '~/logic/cookies/store/reducer/cookies' + + +export const cookiesSelector = (state: GlobalState) => state[COOKIE_REDUCER_ID] From 3a3761a9c203ead0b9f3d8f0a4d97f5d289e44e9 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Thu, 21 Nov 2019 15:22:05 -0300 Subject: [PATCH 004/116] (fix) linting issues --- .eslintignore | 2 ++ .flowconfig | 4 ++++ flow-typed/npm/history_v4.x.x.js | 7 ++++--- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.eslintignore b/.eslintignore index f22a6e9c..3d16c077 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,2 +1,4 @@ node_modules/ build_webpack/ +flow_typed/ +config/ diff --git a/.flowconfig b/.flowconfig index 37c72da2..ac88e7c5 100644 --- a/.flowconfig +++ b/.flowconfig @@ -1,6 +1,10 @@ [ignore] .*/node_modules/findup/* +.*/node_modules/** +.*/config/** +.*/migrations/** .*/flow-typed/** +.*/scripts/** [include] /src/** diff --git a/flow-typed/npm/history_v4.x.x.js b/flow-typed/npm/history_v4.x.x.js index f404fe95..46688cf8 100644 --- a/flow-typed/npm/history_v4.x.x.js +++ b/flow-typed/npm/history_v4.x.x.js @@ -1,7 +1,8 @@ +// @flow // flow-typed signature: 984f6785a321187ac15c3434bbd7f25d // flow-typed version: 568ec63cee/history_v4.x.x/flow_>=v0.25.x -declare module "history/createBrowserHistory" { +declare module 'history/createBrowserHistory' { declare function Unblock(): void; declare export type Action = "PUSH" | "REPLACE" | "POP"; @@ -42,7 +43,7 @@ declare module "history/createBrowserHistory" { declare export default (opts?: HistoryOpts) => BrowserHistory; } -declare module "history/createMemoryHistory" { +declare module 'history/createMemoryHistory' { declare function Unblock(): void; declare export type Action = "PUSH" | "REPLACE" | "POP"; @@ -88,7 +89,7 @@ declare module "history/createMemoryHistory" { declare export default (opts?: HistoryOpts) => MemoryHistory; } -declare module "history/createHashHistory" { +declare module 'history/createHashHistory' { declare function Unblock(): void; declare export type Action = "PUSH" | "REPLACE" | "POP"; From 21e97b100e6fa30c1faef2dccc79555f77ec2515 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Thu, 21 Nov 2019 16:58:10 -0300 Subject: [PATCH 005/116] (update) flow-typed --- flow-typed/npm/@babel/cli_vx.x.x.js | 18 +- flow-typed/npm/@babel/core_vx.x.x.js | 130 +- ...plugin-proposal-class-properties_vx.x.x.js | 35 + .../plugin-proposal-decorators_vx.x.x.js | 42 + .../plugin-proposal-do-expressions_vx.x.x.js | 35 + ...gin-proposal-export-default-from_vx.x.x.js | 35 + ...n-proposal-export-namespace-from_vx.x.x.js | 35 + .../plugin-proposal-function-bind_vx.x.x.js | 35 + .../plugin-proposal-function-sent_vx.x.x.js | 35 + .../plugin-proposal-json-strings_vx.x.x.js | 35 + ...sal-logical-assignment-operators_vx.x.x.js | 35 + ...osal-nullish-coalescing-operator_vx.x.x.js | 35 + ...lugin-proposal-numeric-separator_vx.x.x.js | 35 + ...lugin-proposal-optional-chaining_vx.x.x.js | 35 + ...lugin-proposal-pipeline-operator_vx.x.x.js | 797 + ...lugin-proposal-throw-expressions_vx.x.x.js | 35 + .../plugin-syntax-dynamic-import_vx.x.x.js | 13 +- .../plugin-syntax-import-meta_vx.x.x.js | 35 + ...sform-member-expression-literals_vx.x.x.js | 35 + ...ugin-transform-property-literals_vx.x.x.js | 35 + flow-typed/npm/@babel/polyfill_v7.x.x.js | 4 + flow-typed/npm/@babel/polyfill_vx.x.x.js | 67 - flow-typed/npm/@babel/preset-env_vx.x.x.js | 141 +- flow-typed/npm/@babel/preset-flow_vx.x.x.js | 13 +- flow-typed/npm/@babel/preset-react_vx.x.x.js | 13 +- .../npm/@gnosis.pm/safe-contracts_vx.x.x.js | 144 + .../npm/@gnosis.pm/util-contracts_vx.x.x.js | 157 + flow-typed/npm/@material-ui/core_vx.x.x.js | 8330 ++++ flow-typed/npm/@material-ui/icons_v4.x.x.js | 35153 ++++++++++++++++ flow-typed/npm/@portis/web3_vx.x.x.js | 160 + .../npm/@sambego/storybook-state_vx.x.x.js | 122 + .../npm/@storybook/addon-actions_v3.x.x.js | 12 - .../npm/@storybook/addon-actions_vx.x.x.js | 187 + .../npm/@storybook/addon-knobs_vx.x.x.js | 384 +- .../npm/@storybook/addon-links_vx.x.x.js | 88 +- flow-typed/npm/@storybook/react_v3.x.x.js | 37 - flow-typed/npm/@storybook/react_v5.x.x.js | 61 + .../npm/@testing-library/jest-dom_v4.x.x.js | 44 + .../npm/@testing-library/react_v9.x.x.js | 306 + .../npm/@toruslabs/torus-embed_vx.x.x.js | 97 + .../@walletconnect/web3-provider_vx.x.x.js | 52 + .../why-did-you-render_vx.x.x.js | 217 + flow-typed/npm/autoprefixer_vx.x.x.js | 53 +- flow-typed/npm/axios_v0.19.x.js | 219 + flow-typed/npm/babel-core_vx.x.x.js | 4 +- flow-typed/npm/babel-eslint_vx.x.x.js | 31 +- flow-typed/npm/babel-jest_vx.x.x.js | 13 +- flow-typed/npm/babel-loader_vx.x.x.js | 46 +- ...babel-plugin-dynamic-import-node_vx.x.x.js | 27 +- ...m-es3-member-expression-literals_vx.x.x.js | 13 +- ...-transform-es3-property-literals_vx.x.x.js | 13 +- flow-typed/npm/babel-polyfill_v6.x.x.js | 4 + flow-typed/npm/bignumber.js_vx.x.x.js | 39 + flow-typed/npm/classnames_v2.x.x.js | 6 +- .../npm/connected-react-router_vx.x.x.js | 266 + flow-typed/npm/css-loader_vx.x.x.js | 79 +- flow-typed/npm/detect-port_vx.x.x.js | 4 +- flow-typed/npm/eslint-config-airbnb_vx.x.x.js | 32 +- .../npm/eslint-plugin-flowtype_vx.x.x.js | 146 +- flow-typed/npm/eslint-plugin-import_vx.x.x.js | 62 +- flow-typed/npm/eslint-plugin-jest_vx.x.x.js | 282 +- .../npm/eslint-plugin-jsx-a11y_vx.x.x.js | 186 +- flow-typed/npm/eslint-plugin-react_vx.x.x.js | 130 +- flow-typed/npm/eslint_vx.x.x.js | 240 +- flow-typed/npm/ethereum-ens_vx.x.x.js | 52 + flow-typed/npm/ethereumjs-abi_vx.x.x.js | 51 + .../npm/extract-text-webpack-plugin_vx.x.x.js | 11 +- flow-typed/npm/file-loader_vx.x.x.js | 13 +- flow-typed/npm/flow-bin_v0.x.x.js | 4 +- flow-typed/npm/fs-extra_vx.x.x.js | 119 +- flow-typed/npm/history_v4.10.x.js | 109 + flow-typed/npm/history_v4.x.x.js | 128 - flow-typed/npm/html-loader_vx.x.x.js | 4 +- flow-typed/npm/html-webpack-plugin_vx.x.x.js | 4 +- flow-typed/npm/immortal-db_vx.x.x.js | 91 + flow-typed/npm/jest-dom_vx.x.x.js | 38 + flow-typed/npm/jest_v22.x.x.js | 596 - flow-typed/npm/jest_v24.x.x.js | 1182 + flow-typed/npm/json-loader_vx.x.x.js | 4 +- flow-typed/npm/material-ui-icons_vx.x.x.js | 13471 ------ .../npm/material-ui-search-bar_vx.x.x.js | 66 + .../npm/mini-css-extract-plugin_vx.x.x.js | 56 + flow-typed/npm/notistack_vx.x.x.js | 312 + ...timize-css-assets-webpack-plugin_vx.x.x.js | 134 + flow-typed/npm/postcss-loader_vx.x.x.js | 32 +- flow-typed/npm/postcss-mixins_vx.x.x.js | 4 +- flow-typed/npm/postcss-simple-vars_vx.x.x.js | 11 +- flow-typed/npm/pre-commit_vx.x.x.js | 4 +- flow-typed/npm/prettier-eslint-cli_vx.x.x.js | 105 + ...otenv_vx.x.x.js => qrcode.react_vx.x.x.js} | 22 +- flow-typed/npm/react-dev-utils_vx.x.x.js | 172 - flow-typed/npm/react-hot-loader_v4.6.x.js | 58 + flow-typed/npm/react-loadable_v5.x.x.js | 56 - flow-typed/npm/react-qr-reader_vx.x.x.js | 136 + flow-typed/npm/react-redux_v5.x.x.js | 98 - flow-typed/npm/react-redux_v7.x.x.js | 297 + ...m_v4.x.x.js => react-router-dom_v5.x.x.js} | 127 +- flow-typed/npm/react-router-redux_vx.x.x.js | 122 - flow-typed/npm/redux-actions_v2.x.x.js | 107 +- flow-typed/npm/redux-thunk_vx.x.x.js | 25 +- flow-typed/npm/redux_v3.x.x.js | 0 flow-typed/npm/redux_v4.x.x.js | 99 + flow-typed/npm/reselect_v3.x.x.js | 890 - flow-typed/npm/reselect_v4.x.x.js | 880 + ...0_vx.x.x.js => run-with-testrpc_vx.x.x.js} | 14 +- flow-typed/npm/squarelink_vx.x.x.js | 98 + flow-typed/npm/storybook-host_v4.x.x.js | 23 - flow-typed/npm/storybook-host_vx.x.x.js | 249 + flow-typed/npm/storybook-router_v0.x.x.js | 35 +- flow-typed/npm/style-loader_vx.x.x.js | 43 +- flow-typed/npm/truffle-contract_vx.x.x.js | 201 +- .../npm/truffle-solidity-loader_vx.x.x.js | 36 +- flow-typed/npm/truffle_vx.x.x.js | 814 + .../npm/uglifyjs-webpack-plugin_vx.x.x.js | 36 +- flow-typed/npm/url-loader_vx.x.x.js | 49 + flow-typed/npm/web3_vx.x.x.js | 387 +- flow-typed/npm/web3connect_vx.x.x.js | 35 + .../npm/webpack-bundle-analyzer_vx.x.x.js | 32 +- flow-typed/npm/webpack-cli_vx.x.x.js | 549 +- flow-typed/npm/webpack-dev-server_vx.x.x.js | 251 +- .../npm/webpack-manifest-plugin_vx.x.x.js | 4 +- flow-typed/npm/webpack_v4.x.x.js | 692 + flow-typed/npm/webpack_vx.x.x.js | 2097 - 123 files changed, 54841 insertions(+), 19703 deletions(-) create mode 100644 flow-typed/npm/@babel/plugin-proposal-class-properties_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-decorators_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-do-expressions_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-export-default-from_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-export-namespace-from_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-function-bind_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-function-sent_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-json-strings_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-logical-assignment-operators_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-nullish-coalescing-operator_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-numeric-separator_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-optional-chaining_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-pipeline-operator_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-proposal-throw-expressions_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-syntax-import-meta_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-transform-member-expression-literals_vx.x.x.js create mode 100644 flow-typed/npm/@babel/plugin-transform-property-literals_vx.x.x.js create mode 100644 flow-typed/npm/@babel/polyfill_v7.x.x.js delete mode 100644 flow-typed/npm/@babel/polyfill_vx.x.x.js create mode 100644 flow-typed/npm/@gnosis.pm/safe-contracts_vx.x.x.js create mode 100644 flow-typed/npm/@gnosis.pm/util-contracts_vx.x.x.js create mode 100644 flow-typed/npm/@material-ui/core_vx.x.x.js create mode 100644 flow-typed/npm/@material-ui/icons_v4.x.x.js create mode 100644 flow-typed/npm/@portis/web3_vx.x.x.js create mode 100644 flow-typed/npm/@sambego/storybook-state_vx.x.x.js delete mode 100644 flow-typed/npm/@storybook/addon-actions_v3.x.x.js create mode 100644 flow-typed/npm/@storybook/addon-actions_vx.x.x.js delete mode 100644 flow-typed/npm/@storybook/react_v3.x.x.js create mode 100644 flow-typed/npm/@storybook/react_v5.x.x.js create mode 100644 flow-typed/npm/@testing-library/jest-dom_v4.x.x.js create mode 100644 flow-typed/npm/@testing-library/react_v9.x.x.js create mode 100644 flow-typed/npm/@toruslabs/torus-embed_vx.x.x.js create mode 100644 flow-typed/npm/@walletconnect/web3-provider_vx.x.x.js create mode 100644 flow-typed/npm/@welldone-software/why-did-you-render_vx.x.x.js create mode 100644 flow-typed/npm/axios_v0.19.x.js create mode 100644 flow-typed/npm/babel-polyfill_v6.x.x.js create mode 100644 flow-typed/npm/bignumber.js_vx.x.x.js create mode 100644 flow-typed/npm/connected-react-router_vx.x.x.js create mode 100644 flow-typed/npm/ethereum-ens_vx.x.x.js create mode 100644 flow-typed/npm/ethereumjs-abi_vx.x.x.js create mode 100644 flow-typed/npm/history_v4.10.x.js delete mode 100644 flow-typed/npm/history_v4.x.x.js create mode 100644 flow-typed/npm/immortal-db_vx.x.x.js create mode 100644 flow-typed/npm/jest-dom_vx.x.x.js delete mode 100644 flow-typed/npm/jest_v22.x.x.js create mode 100644 flow-typed/npm/jest_v24.x.x.js delete mode 100644 flow-typed/npm/material-ui-icons_vx.x.x.js create mode 100644 flow-typed/npm/material-ui-search-bar_vx.x.x.js create mode 100644 flow-typed/npm/mini-css-extract-plugin_vx.x.x.js create mode 100644 flow-typed/npm/notistack_vx.x.x.js create mode 100644 flow-typed/npm/optimize-css-assets-webpack-plugin_vx.x.x.js create mode 100644 flow-typed/npm/prettier-eslint-cli_vx.x.x.js rename flow-typed/npm/{dotenv_vx.x.x.js => qrcode.react_vx.x.x.js} (54%) delete mode 100644 flow-typed/npm/react-dev-utils_vx.x.x.js create mode 100644 flow-typed/npm/react-hot-loader_v4.6.x.js delete mode 100644 flow-typed/npm/react-loadable_v5.x.x.js create mode 100644 flow-typed/npm/react-qr-reader_vx.x.x.js delete mode 100644 flow-typed/npm/react-redux_v5.x.x.js create mode 100644 flow-typed/npm/react-redux_v7.x.x.js rename flow-typed/npm/{react-router-dom_v4.x.x.js => react-router-dom_v5.x.x.js} (50%) delete mode 100644 flow-typed/npm/react-router-redux_vx.x.x.js delete mode 100644 flow-typed/npm/redux_v3.x.x.js create mode 100644 flow-typed/npm/redux_v4.x.x.js delete mode 100644 flow-typed/npm/reselect_v3.x.x.js create mode 100644 flow-typed/npm/reselect_v4.x.x.js rename flow-typed/npm/{@babel/preset-stage-0_vx.x.x.js => run-with-testrpc_vx.x.x.js} (57%) create mode 100644 flow-typed/npm/squarelink_vx.x.x.js delete mode 100644 flow-typed/npm/storybook-host_v4.x.x.js create mode 100644 flow-typed/npm/storybook-host_vx.x.x.js create mode 100644 flow-typed/npm/truffle_vx.x.x.js create mode 100644 flow-typed/npm/url-loader_vx.x.x.js create mode 100644 flow-typed/npm/web3connect_vx.x.x.js create mode 100644 flow-typed/npm/webpack_v4.x.x.js delete mode 100644 flow-typed/npm/webpack_vx.x.x.js diff --git a/flow-typed/npm/@babel/cli_vx.x.x.js b/flow-typed/npm/@babel/cli_vx.x.x.js index f33bac9d..44dd82ec 100644 --- a/flow-typed/npm/@babel/cli_vx.x.x.js +++ b/flow-typed/npm/@babel/cli_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: a53e9127a2b172810a247cfc426b4bd0 -// flow-typed version: <>/@babel/cli_v^7.0.0-beta.40/flow_v0.66.0 +// flow-typed signature: 2e5ad5a75471b5135655af0acc32800c +// flow-typed version: <>/@babel/cli_v7.7.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -42,7 +42,11 @@ declare module '@babel/cli/lib/babel/file' { declare module.exports: any; } -declare module '@babel/cli/lib/babel/index' { +declare module '@babel/cli/lib/babel' { + declare module.exports: any; +} + +declare module '@babel/cli/lib/babel/options' { declare module.exports: any; } @@ -72,8 +76,14 @@ declare module '@babel/cli/lib/babel/dir.js' { declare module '@babel/cli/lib/babel/file.js' { declare module.exports: $Exports<'@babel/cli/lib/babel/file'>; } +declare module '@babel/cli/lib/babel/index' { + declare module.exports: $Exports<'@babel/cli/lib/babel'>; +} declare module '@babel/cli/lib/babel/index.js' { - declare module.exports: $Exports<'@babel/cli/lib/babel/index'>; + declare module.exports: $Exports<'@babel/cli/lib/babel'>; +} +declare module '@babel/cli/lib/babel/options.js' { + declare module.exports: $Exports<'@babel/cli/lib/babel/options'>; } declare module '@babel/cli/lib/babel/util.js' { declare module.exports: $Exports<'@babel/cli/lib/babel/util'>; diff --git a/flow-typed/npm/@babel/core_vx.x.x.js b/flow-typed/npm/@babel/core_vx.x.x.js index d48f71d0..d995d7b2 100644 --- a/flow-typed/npm/@babel/core_vx.x.x.js +++ b/flow-typed/npm/@babel/core_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 260f48a7aee08959befe47c61f189c03 -// flow-typed version: <>/@babel/core_v^7.0.0-beta.40/flow_v0.66.0 +// flow-typed signature: 569c144e1cc8b289e1e3efe0e518a8ea +// flow-typed version: <>/@babel/core_v7.7.2/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -42,7 +42,11 @@ declare module '@babel/core/lib/config/files/index-browser' { declare module.exports: any; } -declare module '@babel/core/lib/config/files/index' { +declare module '@babel/core/lib/config/files' { + declare module.exports: any; +} + +declare module '@babel/core/lib/config/files/package' { declare module.exports: any; } @@ -50,11 +54,39 @@ declare module '@babel/core/lib/config/files/plugins' { declare module.exports: any; } +declare module '@babel/core/lib/config/files/types' { + declare module.exports: any; +} + +declare module '@babel/core/lib/config/files/utils' { + declare module.exports: any; +} + +declare module '@babel/core/lib/config/full' { + declare module.exports: any; +} + +declare module '@babel/core/lib/config/helpers/config-api' { + declare module.exports: any; +} + declare module '@babel/core/lib/config/helpers/environment' { declare module.exports: any; } -declare module '@babel/core/lib/config/index' { +declare module '@babel/core/lib/config' { + declare module.exports: any; +} + +declare module '@babel/core/lib/config/item' { + declare module.exports: any; +} + +declare module '@babel/core/lib/config/partial' { + declare module.exports: any; +} + +declare module '@babel/core/lib/config/pattern-to-regex' { declare module.exports: any; } @@ -62,6 +94,10 @@ declare module '@babel/core/lib/config/plugin' { declare module.exports: any; } +declare module '@babel/core/lib/config/util' { + declare module.exports: any; +} + declare module '@babel/core/lib/config/validation/option-assertions' { declare module.exports: any; } @@ -78,7 +114,7 @@ declare module '@babel/core/lib/config/validation/removed' { declare module.exports: any; } -declare module '@babel/core/lib/index' { +declare module '@babel/core/lib' { declare module.exports: any; } @@ -90,10 +126,6 @@ declare module '@babel/core/lib/tools/build-external-helpers' { declare module.exports: any; } -declare module '@babel/core/lib/transform-ast-sync' { - declare module.exports: any; -} - declare module '@babel/core/lib/transform-ast' { declare module.exports: any; } @@ -102,22 +134,10 @@ declare module '@babel/core/lib/transform-file-browser' { declare module.exports: any; } -declare module '@babel/core/lib/transform-file-sync-browser' { - declare module.exports: any; -} - -declare module '@babel/core/lib/transform-file-sync' { - declare module.exports: any; -} - declare module '@babel/core/lib/transform-file' { declare module.exports: any; } -declare module '@babel/core/lib/transform-sync' { - declare module.exports: any; -} - declare module '@babel/core/lib/transform' { declare module.exports: any; } @@ -134,7 +154,11 @@ declare module '@babel/core/lib/transformation/file/generate' { declare module.exports: any; } -declare module '@babel/core/lib/transformation/index' { +declare module '@babel/core/lib/transformation/file/merge-map' { + declare module.exports: any; +} + +declare module '@babel/core/lib/transformation' { declare module.exports: any; } @@ -170,21 +194,54 @@ declare module '@babel/core/lib/config/files/configuration.js' { declare module '@babel/core/lib/config/files/index-browser.js' { declare module.exports: $Exports<'@babel/core/lib/config/files/index-browser'>; } +declare module '@babel/core/lib/config/files/index' { + declare module.exports: $Exports<'@babel/core/lib/config/files'>; +} declare module '@babel/core/lib/config/files/index.js' { - declare module.exports: $Exports<'@babel/core/lib/config/files/index'>; + declare module.exports: $Exports<'@babel/core/lib/config/files'>; +} +declare module '@babel/core/lib/config/files/package.js' { + declare module.exports: $Exports<'@babel/core/lib/config/files/package'>; } declare module '@babel/core/lib/config/files/plugins.js' { declare module.exports: $Exports<'@babel/core/lib/config/files/plugins'>; } +declare module '@babel/core/lib/config/files/types.js' { + declare module.exports: $Exports<'@babel/core/lib/config/files/types'>; +} +declare module '@babel/core/lib/config/files/utils.js' { + declare module.exports: $Exports<'@babel/core/lib/config/files/utils'>; +} +declare module '@babel/core/lib/config/full.js' { + declare module.exports: $Exports<'@babel/core/lib/config/full'>; +} +declare module '@babel/core/lib/config/helpers/config-api.js' { + declare module.exports: $Exports<'@babel/core/lib/config/helpers/config-api'>; +} declare module '@babel/core/lib/config/helpers/environment.js' { declare module.exports: $Exports<'@babel/core/lib/config/helpers/environment'>; } +declare module '@babel/core/lib/config/index' { + declare module.exports: $Exports<'@babel/core/lib/config'>; +} declare module '@babel/core/lib/config/index.js' { - declare module.exports: $Exports<'@babel/core/lib/config/index'>; + declare module.exports: $Exports<'@babel/core/lib/config'>; +} +declare module '@babel/core/lib/config/item.js' { + declare module.exports: $Exports<'@babel/core/lib/config/item'>; +} +declare module '@babel/core/lib/config/partial.js' { + declare module.exports: $Exports<'@babel/core/lib/config/partial'>; +} +declare module '@babel/core/lib/config/pattern-to-regex.js' { + declare module.exports: $Exports<'@babel/core/lib/config/pattern-to-regex'>; } declare module '@babel/core/lib/config/plugin.js' { declare module.exports: $Exports<'@babel/core/lib/config/plugin'>; } +declare module '@babel/core/lib/config/util.js' { + declare module.exports: $Exports<'@babel/core/lib/config/util'>; +} declare module '@babel/core/lib/config/validation/option-assertions.js' { declare module.exports: $Exports<'@babel/core/lib/config/validation/option-assertions'>; } @@ -197,8 +254,11 @@ declare module '@babel/core/lib/config/validation/plugins.js' { declare module '@babel/core/lib/config/validation/removed.js' { declare module.exports: $Exports<'@babel/core/lib/config/validation/removed'>; } +declare module '@babel/core/lib/index' { + declare module.exports: $Exports<'@babel/core/lib'>; +} declare module '@babel/core/lib/index.js' { - declare module.exports: $Exports<'@babel/core/lib/index'>; + declare module.exports: $Exports<'@babel/core/lib'>; } declare module '@babel/core/lib/parse.js' { declare module.exports: $Exports<'@babel/core/lib/parse'>; @@ -206,27 +266,15 @@ declare module '@babel/core/lib/parse.js' { declare module '@babel/core/lib/tools/build-external-helpers.js' { declare module.exports: $Exports<'@babel/core/lib/tools/build-external-helpers'>; } -declare module '@babel/core/lib/transform-ast-sync.js' { - declare module.exports: $Exports<'@babel/core/lib/transform-ast-sync'>; -} declare module '@babel/core/lib/transform-ast.js' { declare module.exports: $Exports<'@babel/core/lib/transform-ast'>; } declare module '@babel/core/lib/transform-file-browser.js' { declare module.exports: $Exports<'@babel/core/lib/transform-file-browser'>; } -declare module '@babel/core/lib/transform-file-sync-browser.js' { - declare module.exports: $Exports<'@babel/core/lib/transform-file-sync-browser'>; -} -declare module '@babel/core/lib/transform-file-sync.js' { - declare module.exports: $Exports<'@babel/core/lib/transform-file-sync'>; -} declare module '@babel/core/lib/transform-file.js' { declare module.exports: $Exports<'@babel/core/lib/transform-file'>; } -declare module '@babel/core/lib/transform-sync.js' { - declare module.exports: $Exports<'@babel/core/lib/transform-sync'>; -} declare module '@babel/core/lib/transform.js' { declare module.exports: $Exports<'@babel/core/lib/transform'>; } @@ -239,8 +287,14 @@ declare module '@babel/core/lib/transformation/file/file.js' { declare module '@babel/core/lib/transformation/file/generate.js' { declare module.exports: $Exports<'@babel/core/lib/transformation/file/generate'>; } +declare module '@babel/core/lib/transformation/file/merge-map.js' { + declare module.exports: $Exports<'@babel/core/lib/transformation/file/merge-map'>; +} +declare module '@babel/core/lib/transformation/index' { + declare module.exports: $Exports<'@babel/core/lib/transformation'>; +} declare module '@babel/core/lib/transformation/index.js' { - declare module.exports: $Exports<'@babel/core/lib/transformation/index'>; + declare module.exports: $Exports<'@babel/core/lib/transformation'>; } declare module '@babel/core/lib/transformation/normalize-file.js' { declare module.exports: $Exports<'@babel/core/lib/transformation/normalize-file'>; diff --git a/flow-typed/npm/@babel/plugin-proposal-class-properties_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-class-properties_vx.x.x.js new file mode 100644 index 00000000..0d8f08da --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-class-properties_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: 9e9df8d93d40403192902527dcde804d +// flow-typed version: <>/@babel/plugin-proposal-class-properties_v7.7.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-class-properties' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-class-properties' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-class-properties/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-class-properties/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-class-properties/lib'>; +} +declare module '@babel/plugin-proposal-class-properties/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-class-properties/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-decorators_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-decorators_vx.x.x.js new file mode 100644 index 00000000..cbc00523 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-decorators_vx.x.x.js @@ -0,0 +1,42 @@ +// flow-typed signature: b881627bd49989a4399c41dd0bda8107 +// flow-typed version: <>/@babel/plugin-proposal-decorators_v7.7.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-decorators' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-decorators' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-decorators/lib' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-decorators/lib/transformer-legacy' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-decorators/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-decorators/lib'>; +} +declare module '@babel/plugin-proposal-decorators/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-decorators/lib'>; +} +declare module '@babel/plugin-proposal-decorators/lib/transformer-legacy.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-decorators/lib/transformer-legacy'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-do-expressions_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-do-expressions_vx.x.x.js new file mode 100644 index 00000000..a48d0536 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-do-expressions_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: 56a8886fdd981d3df248e5faf0fb70e4 +// flow-typed version: <>/@babel/plugin-proposal-do-expressions_v7.6.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-do-expressions' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-do-expressions' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-do-expressions/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-do-expressions/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-do-expressions/lib'>; +} +declare module '@babel/plugin-proposal-do-expressions/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-do-expressions/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-export-default-from_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-export-default-from_vx.x.x.js new file mode 100644 index 00000000..37b37153 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-export-default-from_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: ca58a27f342b9c90cc0d73bebfe36e32 +// flow-typed version: <>/@babel/plugin-proposal-export-default-from_v7.5.2/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-export-default-from' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-export-default-from' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-export-default-from/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-export-default-from/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-export-default-from/lib'>; +} +declare module '@babel/plugin-proposal-export-default-from/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-export-default-from/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-export-namespace-from_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-export-namespace-from_vx.x.x.js new file mode 100644 index 00000000..bd3bed56 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-export-namespace-from_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: b5a687390e59bb592e7043ec2231f57b +// flow-typed version: <>/@babel/plugin-proposal-export-namespace-from_v7.5.2/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-export-namespace-from' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-export-namespace-from' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-export-namespace-from/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-export-namespace-from/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-export-namespace-from/lib'>; +} +declare module '@babel/plugin-proposal-export-namespace-from/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-export-namespace-from/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-function-bind_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-function-bind_vx.x.x.js new file mode 100644 index 00000000..a56e7072 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-function-bind_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: efba066e4eac83ed309a43151132b905 +// flow-typed version: <>/@babel/plugin-proposal-function-bind_v^7.2.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-function-bind' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-function-bind' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-function-bind/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-function-bind/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-function-bind/lib'>; +} +declare module '@babel/plugin-proposal-function-bind/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-function-bind/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-function-sent_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-function-sent_vx.x.x.js new file mode 100644 index 00000000..0431d7c8 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-function-sent_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: 33546c5852da4a8b715274069d9be0f1 +// flow-typed version: <>/@babel/plugin-proposal-function-sent_v7.7.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-function-sent' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-function-sent' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-function-sent/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-function-sent/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-function-sent/lib'>; +} +declare module '@babel/plugin-proposal-function-sent/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-function-sent/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-json-strings_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-json-strings_vx.x.x.js new file mode 100644 index 00000000..a416bcd5 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-json-strings_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: 6ddc70eb0fcf600c99e100b8a92df6a6 +// flow-typed version: <>/@babel/plugin-proposal-json-strings_v^7.2.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-json-strings' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-json-strings' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-json-strings/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-json-strings/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-json-strings/lib'>; +} +declare module '@babel/plugin-proposal-json-strings/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-json-strings/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-logical-assignment-operators_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-logical-assignment-operators_vx.x.x.js new file mode 100644 index 00000000..6dba1e06 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-logical-assignment-operators_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: 1beb556477afc3218300afb838c65da2 +// flow-typed version: <>/@babel/plugin-proposal-logical-assignment-operators_v^7.2.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-logical-assignment-operators' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-logical-assignment-operators' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-logical-assignment-operators/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-logical-assignment-operators/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-logical-assignment-operators/lib'>; +} +declare module '@babel/plugin-proposal-logical-assignment-operators/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-logical-assignment-operators/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-nullish-coalescing-operator_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-nullish-coalescing-operator_vx.x.x.js new file mode 100644 index 00000000..681c564b --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-nullish-coalescing-operator_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: c972fca0cebed86a93020b923d9b6bf1 +// flow-typed version: <>/@babel/plugin-proposal-nullish-coalescing-operator_v7.4.4/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-nullish-coalescing-operator' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-nullish-coalescing-operator' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-nullish-coalescing-operator/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-nullish-coalescing-operator/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-nullish-coalescing-operator/lib'>; +} +declare module '@babel/plugin-proposal-nullish-coalescing-operator/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-nullish-coalescing-operator/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-numeric-separator_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-numeric-separator_vx.x.x.js new file mode 100644 index 00000000..eb5f9cdd --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-numeric-separator_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: 0c67e2139e39fa60d353a3cee02a3173 +// flow-typed version: <>/@babel/plugin-proposal-numeric-separator_v^7.2.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-numeric-separator' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-numeric-separator' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-numeric-separator/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-numeric-separator/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-numeric-separator/lib'>; +} +declare module '@babel/plugin-proposal-numeric-separator/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-numeric-separator/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-optional-chaining_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-optional-chaining_vx.x.x.js new file mode 100644 index 00000000..79bef14a --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-optional-chaining_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: 0c4b1ffc5e8e64612113a2c7384b4f0a +// flow-typed version: <>/@babel/plugin-proposal-optional-chaining_v7.6.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-optional-chaining' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-optional-chaining' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-optional-chaining/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-optional-chaining/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-optional-chaining/lib'>; +} +declare module '@babel/plugin-proposal-optional-chaining/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-optional-chaining/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-pipeline-operator_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-pipeline-operator_vx.x.x.js new file mode 100644 index 00000000..943c9a18 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-pipeline-operator_vx.x.x.js @@ -0,0 +1,797 @@ +// flow-typed signature: 9a1a52278f9cd4bba64ec4247f833d1a +// flow-typed version: <>/@babel/plugin-proposal-pipeline-operator_v7.5.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-pipeline-operator' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-pipeline-operator' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-pipeline-operator/lib/buildOptimizedSequenceExpression' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/lib/fsharpVisitor' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/lib' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/lib/minimalVisitor' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/lib/smartVisitor' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/src/buildOptimizedSequenceExpression' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/src/fsharpVisitor' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/src' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/src/minimalVisitor' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/src/smartVisitor' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions-parenless/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/input' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/output' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart+arrow/await/exec' { + declare module.exports: any; +} + +declare module '@babel/plugin-proposal-pipeline-operator/test' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-pipeline-operator/lib/buildOptimizedSequenceExpression.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib/buildOptimizedSequenceExpression'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/lib/fsharpVisitor.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib/fsharpVisitor'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/lib/minimalVisitor.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib/minimalVisitor'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/lib/smartVisitor.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/lib/smartVisitor'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/src/buildOptimizedSequenceExpression.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src/buildOptimizedSequenceExpression'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/src/fsharpVisitor.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src/fsharpVisitor'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/src/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/src/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/src/minimalVisitor.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src/minimalVisitor'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/src/smartVisitor.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/src/smartVisitor'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions-parenless/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions-parenless/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/arrow-functions/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/await/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/basic/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/indirect-eval/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/multiple-argument-use/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/fsharp/optimize-0-param-arrow/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions-parenless/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/arrow-functions/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/async-arrow/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/basic/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/chaining/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/currying/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/deoptimize-multi-param-arrow/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/destructure-arrow-param/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/evaluation/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/indirect-eval/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/multiple-argument-use/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/optimize-0-param-arrow/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/minimal/precedence/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/await/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/bare-function/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/basic/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-init/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for-update/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/for/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/if/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/indirect-eval/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/nested/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/object-literal/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-as-callee/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/topic-inside-arrow-function/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/while/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/input.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/input'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/output.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart/yield/output'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/fixtures/smart+arrow/await/exec.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test/fixtures/smart+arrow/await/exec'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test'>; +} +declare module '@babel/plugin-proposal-pipeline-operator/test/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-pipeline-operator/test'>; +} diff --git a/flow-typed/npm/@babel/plugin-proposal-throw-expressions_vx.x.x.js b/flow-typed/npm/@babel/plugin-proposal-throw-expressions_vx.x.x.js new file mode 100644 index 00000000..dec9bea6 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-proposal-throw-expressions_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: fa60aca797bf1d94ce629b8ed9c9d766 +// flow-typed version: <>/@babel/plugin-proposal-throw-expressions_v^7.2.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-proposal-throw-expressions' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-proposal-throw-expressions' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-proposal-throw-expressions/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-proposal-throw-expressions/lib/index' { + declare module.exports: $Exports<'@babel/plugin-proposal-throw-expressions/lib'>; +} +declare module '@babel/plugin-proposal-throw-expressions/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-proposal-throw-expressions/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-syntax-dynamic-import_vx.x.x.js b/flow-typed/npm/@babel/plugin-syntax-dynamic-import_vx.x.x.js index 148dce89..5a88eb5a 100644 --- a/flow-typed/npm/@babel/plugin-syntax-dynamic-import_vx.x.x.js +++ b/flow-typed/npm/@babel/plugin-syntax-dynamic-import_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: afb2ea802e6a967f4afa01f452c7afef -// flow-typed version: <>/@babel/plugin-syntax-dynamic-import_v^7.0.0-beta.40/flow_v0.66.0 +// flow-typed signature: cf202b70bb9e88a3de16188deefecf9f +// flow-typed version: <>/@babel/plugin-syntax-dynamic-import_v^7.2.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,11 +22,14 @@ declare module '@babel/plugin-syntax-dynamic-import' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module '@babel/plugin-syntax-dynamic-import/lib/index' { +declare module '@babel/plugin-syntax-dynamic-import/lib' { declare module.exports: any; } // Filename aliases -declare module '@babel/plugin-syntax-dynamic-import/lib/index.js' { - declare module.exports: $Exports<'@babel/plugin-syntax-dynamic-import/lib/index'>; +declare module '@babel/plugin-syntax-dynamic-import/lib/index' { + declare module.exports: $Exports<'@babel/plugin-syntax-dynamic-import/lib'>; +} +declare module '@babel/plugin-syntax-dynamic-import/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-syntax-dynamic-import/lib'>; } diff --git a/flow-typed/npm/@babel/plugin-syntax-import-meta_vx.x.x.js b/flow-typed/npm/@babel/plugin-syntax-import-meta_vx.x.x.js new file mode 100644 index 00000000..991571c8 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-syntax-import-meta_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: b9f20e3c91ce647ee904bd8b9fb9a3fa +// flow-typed version: <>/@babel/plugin-syntax-import-meta_v^7.2.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-syntax-import-meta' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-syntax-import-meta' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-syntax-import-meta/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-syntax-import-meta/lib/index' { + declare module.exports: $Exports<'@babel/plugin-syntax-import-meta/lib'>; +} +declare module '@babel/plugin-syntax-import-meta/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-syntax-import-meta/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-transform-member-expression-literals_vx.x.x.js b/flow-typed/npm/@babel/plugin-transform-member-expression-literals_vx.x.x.js new file mode 100644 index 00000000..15ea28d4 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-transform-member-expression-literals_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: dd33ab6d358e3ec9c9b9fbe0c77d7be5 +// flow-typed version: <>/@babel/plugin-transform-member-expression-literals_v^7.2.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-transform-member-expression-literals' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-transform-member-expression-literals' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-transform-member-expression-literals/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-transform-member-expression-literals/lib/index' { + declare module.exports: $Exports<'@babel/plugin-transform-member-expression-literals/lib'>; +} +declare module '@babel/plugin-transform-member-expression-literals/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-transform-member-expression-literals/lib'>; +} diff --git a/flow-typed/npm/@babel/plugin-transform-property-literals_vx.x.x.js b/flow-typed/npm/@babel/plugin-transform-property-literals_vx.x.x.js new file mode 100644 index 00000000..1ac3a5a3 --- /dev/null +++ b/flow-typed/npm/@babel/plugin-transform-property-literals_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: cde4cc57e9aaab4c3b0bbae9651c5e3c +// flow-typed version: <>/@babel/plugin-transform-property-literals_v^7.2.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@babel/plugin-transform-property-literals' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@babel/plugin-transform-property-literals' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@babel/plugin-transform-property-literals/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module '@babel/plugin-transform-property-literals/lib/index' { + declare module.exports: $Exports<'@babel/plugin-transform-property-literals/lib'>; +} +declare module '@babel/plugin-transform-property-literals/lib/index.js' { + declare module.exports: $Exports<'@babel/plugin-transform-property-literals/lib'>; +} diff --git a/flow-typed/npm/@babel/polyfill_v7.x.x.js b/flow-typed/npm/@babel/polyfill_v7.x.x.js new file mode 100644 index 00000000..67cbdd4c --- /dev/null +++ b/flow-typed/npm/@babel/polyfill_v7.x.x.js @@ -0,0 +1,4 @@ +// flow-typed signature: 70ae65c95b3420e3469c9c30171c1835 +// flow-typed version: c6154227d1/@babel/polyfill_v7.x.x/flow_>=v0.104.x + +declare module '@babel/polyfill' {} diff --git a/flow-typed/npm/@babel/polyfill_vx.x.x.js b/flow-typed/npm/@babel/polyfill_vx.x.x.js deleted file mode 100644 index 19ba8db6..00000000 --- a/flow-typed/npm/@babel/polyfill_vx.x.x.js +++ /dev/null @@ -1,67 +0,0 @@ -// flow-typed signature: 27ca8f7ebfa282daa160858c8104f161 -// flow-typed version: <>/@babel/polyfill_v^7.0.0-beta.40/flow_v0.66.0 - -/** - * This is an autogenerated libdef stub for: - * - * '@babel/polyfill' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module '@babel/polyfill' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module '@babel/polyfill/browser' { - declare module.exports: any; -} - -declare module '@babel/polyfill/dist/polyfill' { - declare module.exports: any; -} - -declare module '@babel/polyfill/dist/polyfill.min' { - declare module.exports: any; -} - -declare module '@babel/polyfill/lib/index' { - declare module.exports: any; -} - -declare module '@babel/polyfill/scripts/postpublish' { - declare module.exports: any; -} - -declare module '@babel/polyfill/scripts/prepublish' { - declare module.exports: any; -} - -// Filename aliases -declare module '@babel/polyfill/browser.js' { - declare module.exports: $Exports<'@babel/polyfill/browser'>; -} -declare module '@babel/polyfill/dist/polyfill.js' { - declare module.exports: $Exports<'@babel/polyfill/dist/polyfill'>; -} -declare module '@babel/polyfill/dist/polyfill.min.js' { - declare module.exports: $Exports<'@babel/polyfill/dist/polyfill.min'>; -} -declare module '@babel/polyfill/lib/index.js' { - declare module.exports: $Exports<'@babel/polyfill/lib/index'>; -} -declare module '@babel/polyfill/scripts/postpublish.js' { - declare module.exports: $Exports<'@babel/polyfill/scripts/postpublish'>; -} -declare module '@babel/polyfill/scripts/prepublish.js' { - declare module.exports: $Exports<'@babel/polyfill/scripts/prepublish'>; -} diff --git a/flow-typed/npm/@babel/preset-env_vx.x.x.js b/flow-typed/npm/@babel/preset-env_vx.x.x.js index 042c80c6..01ab2a6c 100644 --- a/flow-typed/npm/@babel/preset-env_vx.x.x.js +++ b/flow-typed/npm/@babel/preset-env_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 01692f98aa49618c1bf63e8379cc090e -// flow-typed version: <>/@babel/preset-env_v^7.0.0-beta.40/flow_v0.66.0 +// flow-typed signature: a9f31ad47694fa9095adbe0bfa994c2e +// flow-typed version: <>/@babel/preset-env_v7.7.1/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,7 +22,15 @@ declare module '@babel/preset-env' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module '@babel/preset-env/data/built-in-features' { +declare module '@babel/preset-env/data/built-ins.json' { + declare module.exports: any; +} + +declare module '@babel/preset-env/data/corejs2-built-in-features' { + declare module.exports: any; +} + +declare module '@babel/preset-env/data/overlapping-plugins' { declare module.exports: any; } @@ -42,23 +50,19 @@ declare module '@babel/preset-env/lib/available-plugins' { declare module.exports: any; } -declare module '@babel/preset-env/lib/built-in-definitions' { - declare module.exports: any; -} - declare module '@babel/preset-env/lib/debug' { declare module.exports: any; } -declare module '@babel/preset-env/lib/default-includes' { +declare module '@babel/preset-env/lib/filter-items' { declare module.exports: any; } -declare module '@babel/preset-env/lib/defaults' { +declare module '@babel/preset-env/lib/get-option-specific-excludes' { declare module.exports: any; } -declare module '@babel/preset-env/lib/index' { +declare module '@babel/preset-env/lib' { declare module.exports: any; } @@ -70,25 +74,67 @@ declare module '@babel/preset-env/lib/normalize-options' { declare module.exports: any; } +declare module '@babel/preset-env/lib/options' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/corejs2/built-in-definitions' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/corejs2/entry-plugin' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/corejs2/get-platform-specific-default' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/corejs2/usage-plugin' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/corejs3/built-in-definitions' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/corejs3/entry-plugin' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/corejs3/shipped-proposals' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/corejs3/usage-plugin' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/regenerator/entry-plugin' { + declare module.exports: any; +} + +declare module '@babel/preset-env/lib/polyfills/regenerator/usage-plugin' { + declare module.exports: any; +} + declare module '@babel/preset-env/lib/targets-parser' { declare module.exports: any; } -declare module '@babel/preset-env/lib/use-built-ins-entry-plugin' { - declare module.exports: any; -} - -declare module '@babel/preset-env/lib/use-built-ins-plugin' { - declare module.exports: any; -} - declare module '@babel/preset-env/lib/utils' { declare module.exports: any; } // Filename aliases -declare module '@babel/preset-env/data/built-in-features.js' { - declare module.exports: $Exports<'@babel/preset-env/data/built-in-features'>; +declare module '@babel/preset-env/data/built-ins.json.js' { + declare module.exports: $Exports<'@babel/preset-env/data/built-ins.json'>; +} +declare module '@babel/preset-env/data/corejs2-built-in-features.js' { + declare module.exports: $Exports<'@babel/preset-env/data/corejs2-built-in-features'>; +} +declare module '@babel/preset-env/data/overlapping-plugins.js' { + declare module.exports: $Exports<'@babel/preset-env/data/overlapping-plugins'>; } declare module '@babel/preset-env/data/plugin-features.js' { declare module.exports: $Exports<'@babel/preset-env/data/plugin-features'>; @@ -102,20 +148,20 @@ declare module '@babel/preset-env/data/unreleased-labels.js' { declare module '@babel/preset-env/lib/available-plugins.js' { declare module.exports: $Exports<'@babel/preset-env/lib/available-plugins'>; } -declare module '@babel/preset-env/lib/built-in-definitions.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/built-in-definitions'>; -} declare module '@babel/preset-env/lib/debug.js' { declare module.exports: $Exports<'@babel/preset-env/lib/debug'>; } -declare module '@babel/preset-env/lib/default-includes.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/default-includes'>; +declare module '@babel/preset-env/lib/filter-items.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/filter-items'>; } -declare module '@babel/preset-env/lib/defaults.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/defaults'>; +declare module '@babel/preset-env/lib/get-option-specific-excludes.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/get-option-specific-excludes'>; +} +declare module '@babel/preset-env/lib/index' { + declare module.exports: $Exports<'@babel/preset-env/lib'>; } declare module '@babel/preset-env/lib/index.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/index'>; + declare module.exports: $Exports<'@babel/preset-env/lib'>; } declare module '@babel/preset-env/lib/module-transformations.js' { declare module.exports: $Exports<'@babel/preset-env/lib/module-transformations'>; @@ -123,15 +169,42 @@ declare module '@babel/preset-env/lib/module-transformations.js' { declare module '@babel/preset-env/lib/normalize-options.js' { declare module.exports: $Exports<'@babel/preset-env/lib/normalize-options'>; } +declare module '@babel/preset-env/lib/options.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/options'>; +} +declare module '@babel/preset-env/lib/polyfills/corejs2/built-in-definitions.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/built-in-definitions'>; +} +declare module '@babel/preset-env/lib/polyfills/corejs2/entry-plugin.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/entry-plugin'>; +} +declare module '@babel/preset-env/lib/polyfills/corejs2/get-platform-specific-default.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/get-platform-specific-default'>; +} +declare module '@babel/preset-env/lib/polyfills/corejs2/usage-plugin.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs2/usage-plugin'>; +} +declare module '@babel/preset-env/lib/polyfills/corejs3/built-in-definitions.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/built-in-definitions'>; +} +declare module '@babel/preset-env/lib/polyfills/corejs3/entry-plugin.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/entry-plugin'>; +} +declare module '@babel/preset-env/lib/polyfills/corejs3/shipped-proposals.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/shipped-proposals'>; +} +declare module '@babel/preset-env/lib/polyfills/corejs3/usage-plugin.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/corejs3/usage-plugin'>; +} +declare module '@babel/preset-env/lib/polyfills/regenerator/entry-plugin.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/regenerator/entry-plugin'>; +} +declare module '@babel/preset-env/lib/polyfills/regenerator/usage-plugin.js' { + declare module.exports: $Exports<'@babel/preset-env/lib/polyfills/regenerator/usage-plugin'>; +} declare module '@babel/preset-env/lib/targets-parser.js' { declare module.exports: $Exports<'@babel/preset-env/lib/targets-parser'>; } -declare module '@babel/preset-env/lib/use-built-ins-entry-plugin.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/use-built-ins-entry-plugin'>; -} -declare module '@babel/preset-env/lib/use-built-ins-plugin.js' { - declare module.exports: $Exports<'@babel/preset-env/lib/use-built-ins-plugin'>; -} declare module '@babel/preset-env/lib/utils.js' { declare module.exports: $Exports<'@babel/preset-env/lib/utils'>; } diff --git a/flow-typed/npm/@babel/preset-flow_vx.x.x.js b/flow-typed/npm/@babel/preset-flow_vx.x.x.js index a40c8db7..0f7602c6 100644 --- a/flow-typed/npm/@babel/preset-flow_vx.x.x.js +++ b/flow-typed/npm/@babel/preset-flow_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 124bbfa6515921796233a34d1dfc8e6d -// flow-typed version: <>/@babel/preset-flow_v^7.0.0-beta.40/flow_v0.66.0 +// flow-typed signature: ef0deafc05cec8b9ce7ba10749bd1ef0 +// flow-typed version: <>/@babel/preset-flow_v^7.0.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,11 +22,14 @@ declare module '@babel/preset-flow' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module '@babel/preset-flow/lib/index' { +declare module '@babel/preset-flow/lib' { declare module.exports: any; } // Filename aliases -declare module '@babel/preset-flow/lib/index.js' { - declare module.exports: $Exports<'@babel/preset-flow/lib/index'>; +declare module '@babel/preset-flow/lib/index' { + declare module.exports: $Exports<'@babel/preset-flow/lib'>; +} +declare module '@babel/preset-flow/lib/index.js' { + declare module.exports: $Exports<'@babel/preset-flow/lib'>; } diff --git a/flow-typed/npm/@babel/preset-react_vx.x.x.js b/flow-typed/npm/@babel/preset-react_vx.x.x.js index 173d4bc1..9dc31b6e 100644 --- a/flow-typed/npm/@babel/preset-react_vx.x.x.js +++ b/flow-typed/npm/@babel/preset-react_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 0f576efd1583d90fd504c0043dbfab59 -// flow-typed version: <>/@babel/preset-react_v^7.0.0-beta.40/flow_v0.66.0 +// flow-typed signature: 4d3fc1035a1c524969204fcfe130ddea +// flow-typed version: <>/@babel/preset-react_v7.7.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,11 +22,14 @@ declare module '@babel/preset-react' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module '@babel/preset-react/lib/index' { +declare module '@babel/preset-react/lib' { declare module.exports: any; } // Filename aliases -declare module '@babel/preset-react/lib/index.js' { - declare module.exports: $Exports<'@babel/preset-react/lib/index'>; +declare module '@babel/preset-react/lib/index' { + declare module.exports: $Exports<'@babel/preset-react/lib'>; +} +declare module '@babel/preset-react/lib/index.js' { + declare module.exports: $Exports<'@babel/preset-react/lib'>; } diff --git a/flow-typed/npm/@gnosis.pm/safe-contracts_vx.x.x.js b/flow-typed/npm/@gnosis.pm/safe-contracts_vx.x.x.js new file mode 100644 index 00000000..fa83084f --- /dev/null +++ b/flow-typed/npm/@gnosis.pm/safe-contracts_vx.x.x.js @@ -0,0 +1,144 @@ +// flow-typed signature: b976a39727afa080906d6c7b059fafb0 +// flow-typed version: <>/@gnosis.pm/safe-contracts_v1.0.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@gnosis.pm/safe-contracts' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@gnosis.pm/safe-contracts' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@gnosis.pm/safe-contracts/test/createAndAddModules' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/dailyLimitModule' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEdition' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation2' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionEthSignTypeData' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionManagers' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionNestedSafes' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionSignatureValidatorErrors' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/gnosisSafeTeamEdition' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/multiSend' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/safeMethodNaming' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/socialRecoveryModule' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/stateChannelModule' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/utils/execution' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/utils/general' { + declare module.exports: any; +} + +declare module '@gnosis.pm/safe-contracts/test/whitelistModule' { + declare module.exports: any; +} + +// Filename aliases +declare module '@gnosis.pm/safe-contracts/test/createAndAddModules.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/createAndAddModules'>; +} +declare module '@gnosis.pm/safe-contracts/test/dailyLimitModule.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/dailyLimitModule'>; +} +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEdition.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEdition'>; +} +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation'>; +} +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation2.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionCreation2'>; +} +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionEthSignTypeData.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionEthSignTypeData'>; +} +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionManagers.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionManagers'>; +} +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionNestedSafes.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionNestedSafes'>; +} +declare module '@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionSignatureValidatorErrors.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafePersonalEditionSignatureValidatorErrors'>; +} +declare module '@gnosis.pm/safe-contracts/test/gnosisSafeTeamEdition.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/gnosisSafeTeamEdition'>; +} +declare module '@gnosis.pm/safe-contracts/test/multiSend.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/multiSend'>; +} +declare module '@gnosis.pm/safe-contracts/test/safeMethodNaming.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/safeMethodNaming'>; +} +declare module '@gnosis.pm/safe-contracts/test/socialRecoveryModule.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/socialRecoveryModule'>; +} +declare module '@gnosis.pm/safe-contracts/test/stateChannelModule.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/stateChannelModule'>; +} +declare module '@gnosis.pm/safe-contracts/test/utils/execution.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/utils/execution'>; +} +declare module '@gnosis.pm/safe-contracts/test/utils/general.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/utils/general'>; +} +declare module '@gnosis.pm/safe-contracts/test/whitelistModule.js' { + declare module.exports: $Exports<'@gnosis.pm/safe-contracts/test/whitelistModule'>; +} diff --git a/flow-typed/npm/@gnosis.pm/util-contracts_vx.x.x.js b/flow-typed/npm/@gnosis.pm/util-contracts_vx.x.x.js new file mode 100644 index 00000000..f199ef59 --- /dev/null +++ b/flow-typed/npm/@gnosis.pm/util-contracts_vx.x.x.js @@ -0,0 +1,157 @@ +// flow-typed signature: b700798c2cbf29c43d53b822bc1a59c2 +// flow-typed version: <>/@gnosis.pm/util-contracts_v2.0.4/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@gnosis.pm/util-contracts' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@gnosis.pm/util-contracts' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@gnosis.pm/util-contracts/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/migrations/2_deploy_WETH' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/conf/network-restore' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/extract_network_info' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/inject_network_info' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/2_deploy_math' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/3_deploy_WETH' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/2_deploy_math' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/3_deploy_WETH' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/util/extractNetworks' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/util/HDWalletProvider' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/util/injectNetworks' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/util/injectNetworksDeps' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/util/networkUtils' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/src/util/truffleConfig' { + declare module.exports: any; +} + +declare module '@gnosis.pm/util-contracts/truffle' { + declare module.exports: any; +} + +// Filename aliases +declare module '@gnosis.pm/util-contracts/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/migrations/1_initial_migration'>; +} +declare module '@gnosis.pm/util-contracts/migrations/2_deploy_WETH.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/migrations/2_deploy_WETH'>; +} +declare module '@gnosis.pm/util-contracts/src/conf/network-restore.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/conf/network-restore'>; +} +declare module '@gnosis.pm/util-contracts/src/extract_network_info.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/extract_network_info'>; +} +declare module '@gnosis.pm/util-contracts/src/inject_network_info.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/inject_network_info'>; +} +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/2_deploy_math.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-4/2_deploy_math'>; +} +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/3_deploy_WETH.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-4/3_deploy_WETH'>; +} +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/index' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-4'>; +} +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-4/index.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-4'>; +} +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/2_deploy_math.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-5/2_deploy_math'>; +} +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/3_deploy_WETH.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-5/3_deploy_WETH'>; +} +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/index' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-5'>; +} +declare module '@gnosis.pm/util-contracts/src/migrations-truffle-5/index.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/migrations-truffle-5'>; +} +declare module '@gnosis.pm/util-contracts/src/util/extractNetworks.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/extractNetworks'>; +} +declare module '@gnosis.pm/util-contracts/src/util/HDWalletProvider.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/HDWalletProvider'>; +} +declare module '@gnosis.pm/util-contracts/src/util/injectNetworks.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/injectNetworks'>; +} +declare module '@gnosis.pm/util-contracts/src/util/injectNetworksDeps.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/injectNetworksDeps'>; +} +declare module '@gnosis.pm/util-contracts/src/util/networkUtils.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/networkUtils'>; +} +declare module '@gnosis.pm/util-contracts/src/util/truffleConfig.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/src/util/truffleConfig'>; +} +declare module '@gnosis.pm/util-contracts/truffle.js' { + declare module.exports: $Exports<'@gnosis.pm/util-contracts/truffle'>; +} diff --git a/flow-typed/npm/@material-ui/core_vx.x.x.js b/flow-typed/npm/@material-ui/core_vx.x.x.js new file mode 100644 index 00000000..de7dc12d --- /dev/null +++ b/flow-typed/npm/@material-ui/core_vx.x.x.js @@ -0,0 +1,8330 @@ +// flow-typed signature: 678398caebd9afbf557bf838c289ded4 +// flow-typed version: <>/@material-ui/core_v4.6.1/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@material-ui/core' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@material-ui/core' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@material-ui/core/AppBar/AppBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/AppBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/Avatar/Avatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/Avatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/Backdrop/Backdrop' { + declare module.exports: any; +} + +declare module '@material-ui/core/Backdrop' { + declare module.exports: any; +} + +declare module '@material-ui/core/Badge/Badge' { + declare module.exports: any; +} + +declare module '@material-ui/core/Badge' { + declare module.exports: any; +} + +declare module '@material-ui/core/BottomNavigation/BottomNavigation' { + declare module.exports: any; +} + +declare module '@material-ui/core/BottomNavigation' { + declare module.exports: any; +} + +declare module '@material-ui/core/BottomNavigationAction/BottomNavigationAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/BottomNavigationAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/Box/Box' { + declare module.exports: any; +} + +declare module '@material-ui/core/Box' { + declare module.exports: any; +} + +declare module '@material-ui/core/Breadcrumbs/BreadcrumbCollapsed' { + declare module.exports: any; +} + +declare module '@material-ui/core/Breadcrumbs/Breadcrumbs' { + declare module.exports: any; +} + +declare module '@material-ui/core/Breadcrumbs/BreadcrumbSeparator' { + declare module.exports: any; +} + +declare module '@material-ui/core/Breadcrumbs' { + declare module.exports: any; +} + +declare module '@material-ui/core/Button/Button' { + declare module.exports: any; +} + +declare module '@material-ui/core/Button' { + declare module.exports: any; +} + +declare module '@material-ui/core/ButtonBase/ButtonBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/ButtonBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/ButtonBase/Ripple' { + declare module.exports: any; +} + +declare module '@material-ui/core/ButtonBase/TouchRipple' { + declare module.exports: any; +} + +declare module '@material-ui/core/ButtonGroup/ButtonGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/ButtonGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/Card/Card' { + declare module.exports: any; +} + +declare module '@material-ui/core/Card' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardActionArea/CardActionArea' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardActionArea' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardActions/CardActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardContent/CardContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardHeader/CardHeader' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardHeader' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardMedia/CardMedia' { + declare module.exports: any; +} + +declare module '@material-ui/core/CardMedia' { + declare module.exports: any; +} + +declare module '@material-ui/core/Checkbox/Checkbox' { + declare module.exports: any; +} + +declare module '@material-ui/core/Checkbox' { + declare module.exports: any; +} + +declare module '@material-ui/core/Chip/Chip' { + declare module.exports: any; +} + +declare module '@material-ui/core/Chip' { + declare module.exports: any; +} + +declare module '@material-ui/core/CircularProgress/CircularProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/CircularProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/ClickAwayListener/ClickAwayListener' { + declare module.exports: any; +} + +declare module '@material-ui/core/ClickAwayListener' { + declare module.exports: any; +} + +declare module '@material-ui/core/Collapse/Collapse' { + declare module.exports: any; +} + +declare module '@material-ui/core/Collapse' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/amber' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/blue' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/blueGrey' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/brown' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/common' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/cyan' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/deepOrange' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/deepPurple' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/green' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/grey' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/indigo' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/lightBlue' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/lightGreen' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/lime' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/orange' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/pink' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/purple' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/red' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/teal' { + declare module.exports: any; +} + +declare module '@material-ui/core/colors/yellow' { + declare module.exports: any; +} + +declare module '@material-ui/core/Container/Container' { + declare module.exports: any; +} + +declare module '@material-ui/core/Container' { + declare module.exports: any; +} + +declare module '@material-ui/core/CssBaseline/CssBaseline' { + declare module.exports: any; +} + +declare module '@material-ui/core/CssBaseline' { + declare module.exports: any; +} + +declare module '@material-ui/core/Dialog/Dialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/Dialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/DialogActions/DialogActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/DialogActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/DialogContent/DialogContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/DialogContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/DialogContentText/DialogContentText' { + declare module.exports: any; +} + +declare module '@material-ui/core/DialogContentText' { + declare module.exports: any; +} + +declare module '@material-ui/core/DialogTitle/DialogTitle' { + declare module.exports: any; +} + +declare module '@material-ui/core/DialogTitle' { + declare module.exports: any; +} + +declare module '@material-ui/core/Divider/Divider' { + declare module.exports: any; +} + +declare module '@material-ui/core/Divider' { + declare module.exports: any; +} + +declare module '@material-ui/core/Drawer/Drawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/Drawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/AppBar/AppBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/AppBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Avatar/Avatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Avatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Backdrop/Backdrop' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Backdrop' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Badge/Badge' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Badge' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/BottomNavigation/BottomNavigation' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/BottomNavigation' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/BottomNavigationAction/BottomNavigationAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/BottomNavigationAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Box/Box' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Box' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Breadcrumbs/BreadcrumbCollapsed' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Breadcrumbs/Breadcrumbs' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Breadcrumbs/BreadcrumbSeparator' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Breadcrumbs' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Button/Button' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Button' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ButtonBase/ButtonBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ButtonBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ButtonBase/Ripple' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ButtonBase/TouchRipple' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ButtonGroup/ButtonGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ButtonGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Card/Card' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Card' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardActionArea/CardActionArea' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardActionArea' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardActions/CardActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardContent/CardContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardHeader/CardHeader' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardHeader' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardMedia/CardMedia' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CardMedia' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Checkbox/Checkbox' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Checkbox' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Chip/Chip' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Chip' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CircularProgress/CircularProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CircularProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ClickAwayListener/ClickAwayListener' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ClickAwayListener' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Collapse/Collapse' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Collapse' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/amber' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/blue' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/blueGrey' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/brown' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/common' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/cyan' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/deepOrange' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/deepPurple' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/green' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/grey' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/indigo' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/lightBlue' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/lightGreen' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/lime' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/orange' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/pink' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/purple' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/red' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/teal' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/colors/yellow' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Container/Container' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Container' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CssBaseline/CssBaseline' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/CssBaseline' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Dialog/Dialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Dialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/DialogActions/DialogActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/DialogActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/DialogContent/DialogContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/DialogContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/DialogContentText/DialogContentText' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/DialogContentText' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/DialogTitle/DialogTitle' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/DialogTitle' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Divider/Divider' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Divider' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Drawer/Drawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Drawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ExpansionPanel/ExpansionPanel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ExpansionPanel/ExpansionPanelContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ExpansionPanel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ExpansionPanelActions/ExpansionPanelActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ExpansionPanelActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ExpansionPanelDetails/ExpansionPanelDetails' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ExpansionPanelDetails' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ExpansionPanelSummary/ExpansionPanelSummary' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ExpansionPanelSummary' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Fab/Fab' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Fab' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Fade/Fade' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Fade' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FilledInput/FilledInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FilledInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormControl/FormControl' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormControl/FormControlContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormControl/formControlState' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormControl' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormControl/useFormControl' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormControlLabel/FormControlLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormControlLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormGroup/FormGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormHelperText/FormHelperText' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormHelperText' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormLabel/FormLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/FormLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Grid/Grid' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Grid' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/GridList/GridList' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/GridList' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/GridListTile/GridListTile' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/GridListTile' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/GridListTileBar/GridListTileBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/GridListTileBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Grow/Grow' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Grow' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Hidden/Hidden' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Hidden/HiddenCss' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Hidden/HiddenJs' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Hidden' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Icon/Icon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Icon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/IconButton/IconButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/IconButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/es' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Input' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Input/Input' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/InputAdornment' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/InputAdornment/InputAdornment' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/InputBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/InputBase/InputBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/InputBase/utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/InputLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/InputLabel/InputLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/animate' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/ArrowDownward' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/ArrowDropDown' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/Cancel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/CheckBox' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/CheckBoxOutlineBlank' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/CheckCircle' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/createSvgIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/IndeterminateCheckBox' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/KeyboardArrowLeft' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/KeyboardArrowRight' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/MoreHoriz' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/RadioButtonChecked' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/RadioButtonUnchecked' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/svg-icons/Warning' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/internal/SwitchBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/LinearProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/LinearProgress/LinearProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Link' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Link/Link' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/List' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/List/List' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/List/ListContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItem/ListItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItemAvatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItemAvatar/ListItemAvatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItemIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItemIcon/ListItemIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItemSecondaryAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItemSecondaryAction/ListItemSecondaryAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItemText' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListItemText/ListItemText' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListSubheader' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/ListSubheader/ListSubheader' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Menu' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Menu/Menu' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/MenuItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/MenuItem/MenuItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/MenuList' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/MenuList/MenuList' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/MobileStepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/MobileStepper/MobileStepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Modal' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Modal/Modal' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Modal/ModalManager' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Modal/SimpleBackdrop' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Modal/TrapFocus' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/NativeSelect' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/NativeSelect/NativeSelect' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/NativeSelect/NativeSelectInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/NoSsr' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/NoSsr/NoSsr' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/OutlinedInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/OutlinedInput/NotchedOutline' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/OutlinedInput/OutlinedInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Paper' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Paper/Paper' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Popover' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Popover/Popover' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Popper' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Popper/Popper' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Portal' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Portal/Portal' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Radio' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Radio/Radio' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Radio/RadioButtonIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/RadioGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/RadioGroup/RadioGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/RadioGroup/RadioGroupContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/RootRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/RootRef/RootRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Select' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Select/Select' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Select/SelectInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Slide' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Slide/Slide' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Slider' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Slider/Slider' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Slider/ValueLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Snackbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Snackbar/Snackbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/SnackbarContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/SnackbarContent/SnackbarContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Step' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Step/Step' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepButton/StepButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepConnector' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepConnector/StepConnector' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepContent/StepContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepIcon/StepIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/StepLabel/StepLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Stepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Stepper/Stepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/colorManipulator' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/createBreakpoints' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/createMixins' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/createMuiTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/createPalette' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/createSpacing' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/createStyles' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/createTypography' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/cssUtils' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/defaultTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/makeStyles' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/MuiThemeProvider' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/responsiveFontSizes' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/shadows' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/shape' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/styled' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/transitions' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/useTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/withStyles' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/withTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/styles/zIndex' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/SvgIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/SvgIcon/SvgIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/SwipeableDrawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/SwipeableDrawer/SwipeableDrawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/SwipeableDrawer/SwipeArea' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Switch' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Switch/Switch' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Tab' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Tab/Tab' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Table' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Table/Table' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Table/TableContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Table/Tablelvl2Context' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableBody' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableBody/TableBody' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableCell' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableCell/TableCell' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableFooter' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableFooter/TableFooter' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableHead' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableHead/TableHead' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TablePagination' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TablePagination/TablePagination' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TablePagination/TablePaginationActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableRow' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableRow/TableRow' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableSortLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TableSortLabel/TableSortLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Tabs' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Tabs/ScrollbarSize' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Tabs/TabIndicator' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Tabs/Tabs' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Tabs/TabScrollButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/createMount' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/createRender' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/createShallow' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/describeConformance' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/findOutermostIntrinsic' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/getClasses' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/RenderMode' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/testRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/until' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/test-utils/unwrap' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TextareaAutosize' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TextareaAutosize/TextareaAutosize' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TextField' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/TextField/TextField' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Toolbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Toolbar/Toolbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Tooltip' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Tooltip/Tooltip' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/transitions/utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Typography' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Typography/Typography' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/useMediaQuery' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/useMediaQuery/useMediaQuery' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/useMediaQuery/useMediaQueryTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/useScrollTrigger' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/useScrollTrigger/useScrollTrigger' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/capitalize' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/createChainedFunction' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/debounce' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/deprecatedPropType' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/focusVisible' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/getScrollbarSize' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/isMuiElement' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/ownerDocument' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/ownerWindow' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/requirePropFactory' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/setRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/unsupportedProp' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/useEventCallback' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/utils/useForkRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/withMobileDialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/withMobileDialog/withMobileDialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/withWidth' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/withWidth/withWidth' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Zoom' { + declare module.exports: any; +} + +declare module '@material-ui/core/es/Zoom/Zoom' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/AppBar/AppBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/AppBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Avatar/Avatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Avatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Backdrop/Backdrop' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Backdrop' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Badge/Badge' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Badge' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/BottomNavigation/BottomNavigation' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/BottomNavigation' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/BottomNavigationAction/BottomNavigationAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/BottomNavigationAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Box/Box' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Box' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Breadcrumbs/BreadcrumbCollapsed' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Breadcrumbs/Breadcrumbs' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Breadcrumbs/BreadcrumbSeparator' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Breadcrumbs' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Button/Button' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Button' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ButtonBase/ButtonBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ButtonBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ButtonBase/Ripple' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ButtonBase/TouchRipple' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ButtonGroup/ButtonGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ButtonGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Card/Card' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Card' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardActionArea/CardActionArea' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardActionArea' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardActions/CardActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardContent/CardContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardHeader/CardHeader' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardHeader' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardMedia/CardMedia' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CardMedia' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Checkbox/Checkbox' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Checkbox' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Chip/Chip' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Chip' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CircularProgress/CircularProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CircularProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ClickAwayListener/ClickAwayListener' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ClickAwayListener' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Collapse/Collapse' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Collapse' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/amber' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/blue' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/blueGrey' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/brown' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/common' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/cyan' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/deepOrange' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/deepPurple' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/green' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/grey' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/indigo' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/lightBlue' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/lightGreen' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/lime' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/orange' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/pink' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/purple' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/red' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/teal' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/colors/yellow' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Container/Container' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Container' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CssBaseline/CssBaseline' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/CssBaseline' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Dialog/Dialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Dialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/DialogActions/DialogActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/DialogActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/DialogContent/DialogContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/DialogContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/DialogContentText/DialogContentText' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/DialogContentText' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/DialogTitle/DialogTitle' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/DialogTitle' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Divider/Divider' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Divider' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Drawer/Drawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Drawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ExpansionPanel/ExpansionPanel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ExpansionPanel/ExpansionPanelContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ExpansionPanel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ExpansionPanelActions/ExpansionPanelActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ExpansionPanelActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ExpansionPanelDetails/ExpansionPanelDetails' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ExpansionPanelDetails' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ExpansionPanelSummary/ExpansionPanelSummary' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ExpansionPanelSummary' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Fab/Fab' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Fab' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Fade/Fade' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Fade' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FilledInput/FilledInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FilledInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormControl/FormControl' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormControl/FormControlContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormControl/formControlState' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormControl' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormControl/useFormControl' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormControlLabel/FormControlLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormControlLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormGroup/FormGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormHelperText/FormHelperText' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormHelperText' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormLabel/FormLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/FormLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Grid/Grid' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Grid' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/GridList/GridList' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/GridList' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/GridListTile/GridListTile' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/GridListTile' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/GridListTileBar/GridListTileBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/GridListTileBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Grow/Grow' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Grow' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Hidden/Hidden' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Hidden/HiddenCss' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Hidden/HiddenJs' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Hidden' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Icon/Icon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Icon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/IconButton/IconButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/IconButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Input' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Input/Input' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/InputAdornment' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/InputAdornment/InputAdornment' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/InputBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/InputBase/InputBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/InputBase/utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/InputLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/InputLabel/InputLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/animate' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/ArrowDownward' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/ArrowDropDown' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/Cancel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/CheckBox' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/CheckBoxOutlineBlank' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/CheckCircle' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/createSvgIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/IndeterminateCheckBox' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/KeyboardArrowLeft' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/KeyboardArrowRight' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/MoreHoriz' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/RadioButtonChecked' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/RadioButtonUnchecked' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/svg-icons/Warning' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/internal/SwitchBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/LinearProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/LinearProgress/LinearProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Link' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Link/Link' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/List' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/List/List' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/List/ListContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItem/ListItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItemAvatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItemAvatar/ListItemAvatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItemIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItemIcon/ListItemIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItemSecondaryAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItemSecondaryAction/ListItemSecondaryAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItemText' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListItemText/ListItemText' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListSubheader' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/ListSubheader/ListSubheader' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Menu' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Menu/Menu' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/MenuItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/MenuItem/MenuItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/MenuList' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/MenuList/MenuList' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/MobileStepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/MobileStepper/MobileStepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Modal' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Modal/Modal' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Modal/ModalManager' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Modal/SimpleBackdrop' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Modal/TrapFocus' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/NativeSelect' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/NativeSelect/NativeSelect' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/NativeSelect/NativeSelectInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/NoSsr' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/NoSsr/NoSsr' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/OutlinedInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/OutlinedInput/NotchedOutline' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/OutlinedInput/OutlinedInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Paper' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Paper/Paper' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Popover' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Popover/Popover' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Popper' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Popper/Popper' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Portal' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Portal/Portal' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Radio' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Radio/Radio' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Radio/RadioButtonIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/RadioGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/RadioGroup/RadioGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/RadioGroup/RadioGroupContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/RootRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/RootRef/RootRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Select' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Select/Select' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Select/SelectInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Slide' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Slide/Slide' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Slider' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Slider/Slider' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Slider/ValueLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Snackbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Snackbar/Snackbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/SnackbarContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/SnackbarContent/SnackbarContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Step' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Step/Step' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepButton/StepButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepConnector' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepConnector/StepConnector' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepContent/StepContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepIcon/StepIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/StepLabel/StepLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Stepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Stepper/Stepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/colorManipulator' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/createBreakpoints' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/createMixins' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/createMuiTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/createPalette' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/createSpacing' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/createStyles' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/createTypography' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/cssUtils' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/defaultTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/makeStyles' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/MuiThemeProvider' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/responsiveFontSizes' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/shadows' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/shape' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/styled' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/transitions' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/useTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/withStyles' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/withTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/styles/zIndex' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/SvgIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/SvgIcon/SvgIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/SwipeableDrawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/SwipeableDrawer/SwipeableDrawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/SwipeableDrawer/SwipeArea' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Switch' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Switch/Switch' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Tab' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Tab/Tab' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Table' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Table/Table' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Table/TableContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Table/Tablelvl2Context' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableBody' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableBody/TableBody' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableCell' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableCell/TableCell' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableFooter' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableFooter/TableFooter' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableHead' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableHead/TableHead' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TablePagination' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TablePagination/TablePagination' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TablePagination/TablePaginationActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableRow' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableRow/TableRow' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableSortLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TableSortLabel/TableSortLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Tabs' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Tabs/ScrollbarSize' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Tabs/TabIndicator' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Tabs/Tabs' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Tabs/TabScrollButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/createMount' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/createRender' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/createShallow' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/describeConformance' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/findOutermostIntrinsic' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/getClasses' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/RenderMode' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/testRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/until' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/test-utils/unwrap' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TextareaAutosize' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TextareaAutosize/TextareaAutosize' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TextField' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/TextField/TextField' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Toolbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Toolbar/Toolbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Tooltip' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Tooltip/Tooltip' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/transitions/utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Typography' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Typography/Typography' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/useMediaQuery' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/useMediaQuery/useMediaQuery' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/useMediaQuery/useMediaQueryTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/useScrollTrigger' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/useScrollTrigger/useScrollTrigger' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/capitalize' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/createChainedFunction' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/debounce' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/deprecatedPropType' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/focusVisible' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/getScrollbarSize' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/isMuiElement' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/ownerDocument' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/ownerWindow' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/requirePropFactory' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/setRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/unsupportedProp' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/useEventCallback' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/utils/useForkRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/withMobileDialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/withMobileDialog/withMobileDialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/withWidth' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/withWidth/withWidth' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Zoom' { + declare module.exports: any; +} + +declare module '@material-ui/core/esm/Zoom/Zoom' { + declare module.exports: any; +} + +declare module '@material-ui/core/ExpansionPanel/ExpansionPanel' { + declare module.exports: any; +} + +declare module '@material-ui/core/ExpansionPanel/ExpansionPanelContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/ExpansionPanel' { + declare module.exports: any; +} + +declare module '@material-ui/core/ExpansionPanelActions/ExpansionPanelActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/ExpansionPanelActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/ExpansionPanelDetails/ExpansionPanelDetails' { + declare module.exports: any; +} + +declare module '@material-ui/core/ExpansionPanelDetails' { + declare module.exports: any; +} + +declare module '@material-ui/core/ExpansionPanelSummary/ExpansionPanelSummary' { + declare module.exports: any; +} + +declare module '@material-ui/core/ExpansionPanelSummary' { + declare module.exports: any; +} + +declare module '@material-ui/core/Fab/Fab' { + declare module.exports: any; +} + +declare module '@material-ui/core/Fab' { + declare module.exports: any; +} + +declare module '@material-ui/core/Fade/Fade' { + declare module.exports: any; +} + +declare module '@material-ui/core/Fade' { + declare module.exports: any; +} + +declare module '@material-ui/core/FilledInput/FilledInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/FilledInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormControl/FormControl' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormControl/FormControlContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormControl/formControlState' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormControl' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormControl/useFormControl' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormControlLabel/FormControlLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormControlLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormGroup/FormGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormHelperText/FormHelperText' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormHelperText' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormLabel/FormLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/FormLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/Grid/Grid' { + declare module.exports: any; +} + +declare module '@material-ui/core/Grid' { + declare module.exports: any; +} + +declare module '@material-ui/core/GridList/GridList' { + declare module.exports: any; +} + +declare module '@material-ui/core/GridList' { + declare module.exports: any; +} + +declare module '@material-ui/core/GridListTile/GridListTile' { + declare module.exports: any; +} + +declare module '@material-ui/core/GridListTile' { + declare module.exports: any; +} + +declare module '@material-ui/core/GridListTileBar/GridListTileBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/GridListTileBar' { + declare module.exports: any; +} + +declare module '@material-ui/core/Grow/Grow' { + declare module.exports: any; +} + +declare module '@material-ui/core/Grow' { + declare module.exports: any; +} + +declare module '@material-ui/core/Hidden/Hidden' { + declare module.exports: any; +} + +declare module '@material-ui/core/Hidden/HiddenCss' { + declare module.exports: any; +} + +declare module '@material-ui/core/Hidden/HiddenJs' { + declare module.exports: any; +} + +declare module '@material-ui/core/Hidden' { + declare module.exports: any; +} + +declare module '@material-ui/core/Icon/Icon' { + declare module.exports: any; +} + +declare module '@material-ui/core/Icon' { + declare module.exports: any; +} + +declare module '@material-ui/core/IconButton/IconButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/IconButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/Input' { + declare module.exports: any; +} + +declare module '@material-ui/core/Input/Input' { + declare module.exports: any; +} + +declare module '@material-ui/core/InputAdornment' { + declare module.exports: any; +} + +declare module '@material-ui/core/InputAdornment/InputAdornment' { + declare module.exports: any; +} + +declare module '@material-ui/core/InputBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/InputBase/InputBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/InputBase/utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/InputLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/InputLabel/InputLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/animate' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/ArrowDownward' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/ArrowDropDown' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/Cancel' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/CheckBox' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/CheckBoxOutlineBlank' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/CheckCircle' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/createSvgIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/IndeterminateCheckBox' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/KeyboardArrowLeft' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/KeyboardArrowRight' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/MoreHoriz' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/RadioButtonChecked' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/RadioButtonUnchecked' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/svg-icons/Warning' { + declare module.exports: any; +} + +declare module '@material-ui/core/internal/SwitchBase' { + declare module.exports: any; +} + +declare module '@material-ui/core/LinearProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/LinearProgress/LinearProgress' { + declare module.exports: any; +} + +declare module '@material-ui/core/Link' { + declare module.exports: any; +} + +declare module '@material-ui/core/Link/Link' { + declare module.exports: any; +} + +declare module '@material-ui/core/List' { + declare module.exports: any; +} + +declare module '@material-ui/core/List/List' { + declare module.exports: any; +} + +declare module '@material-ui/core/List/ListContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItem/ListItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItemAvatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItemAvatar/ListItemAvatar' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItemIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItemIcon/ListItemIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItemSecondaryAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItemSecondaryAction/ListItemSecondaryAction' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItemText' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListItemText/ListItemText' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListSubheader' { + declare module.exports: any; +} + +declare module '@material-ui/core/ListSubheader/ListSubheader' { + declare module.exports: any; +} + +declare module '@material-ui/core/Menu' { + declare module.exports: any; +} + +declare module '@material-ui/core/Menu/Menu' { + declare module.exports: any; +} + +declare module '@material-ui/core/MenuItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/MenuItem/MenuItem' { + declare module.exports: any; +} + +declare module '@material-ui/core/MenuList' { + declare module.exports: any; +} + +declare module '@material-ui/core/MenuList/MenuList' { + declare module.exports: any; +} + +declare module '@material-ui/core/MobileStepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/MobileStepper/MobileStepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/Modal' { + declare module.exports: any; +} + +declare module '@material-ui/core/Modal/Modal' { + declare module.exports: any; +} + +declare module '@material-ui/core/Modal/ModalManager' { + declare module.exports: any; +} + +declare module '@material-ui/core/Modal/SimpleBackdrop' { + declare module.exports: any; +} + +declare module '@material-ui/core/Modal/TrapFocus' { + declare module.exports: any; +} + +declare module '@material-ui/core/NativeSelect' { + declare module.exports: any; +} + +declare module '@material-ui/core/NativeSelect/NativeSelect' { + declare module.exports: any; +} + +declare module '@material-ui/core/NativeSelect/NativeSelectInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/NoSsr' { + declare module.exports: any; +} + +declare module '@material-ui/core/NoSsr/NoSsr' { + declare module.exports: any; +} + +declare module '@material-ui/core/OutlinedInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/OutlinedInput/NotchedOutline' { + declare module.exports: any; +} + +declare module '@material-ui/core/OutlinedInput/OutlinedInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/Paper' { + declare module.exports: any; +} + +declare module '@material-ui/core/Paper/Paper' { + declare module.exports: any; +} + +declare module '@material-ui/core/Popover' { + declare module.exports: any; +} + +declare module '@material-ui/core/Popover/Popover' { + declare module.exports: any; +} + +declare module '@material-ui/core/Popper' { + declare module.exports: any; +} + +declare module '@material-ui/core/Popper/Popper' { + declare module.exports: any; +} + +declare module '@material-ui/core/Portal' { + declare module.exports: any; +} + +declare module '@material-ui/core/Portal/Portal' { + declare module.exports: any; +} + +declare module '@material-ui/core/Radio' { + declare module.exports: any; +} + +declare module '@material-ui/core/Radio/Radio' { + declare module.exports: any; +} + +declare module '@material-ui/core/Radio/RadioButtonIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/RadioGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/RadioGroup/RadioGroup' { + declare module.exports: any; +} + +declare module '@material-ui/core/RadioGroup/RadioGroupContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/RootRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/RootRef/RootRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/Select' { + declare module.exports: any; +} + +declare module '@material-ui/core/Select/Select' { + declare module.exports: any; +} + +declare module '@material-ui/core/Select/SelectInput' { + declare module.exports: any; +} + +declare module '@material-ui/core/Slide' { + declare module.exports: any; +} + +declare module '@material-ui/core/Slide/Slide' { + declare module.exports: any; +} + +declare module '@material-ui/core/Slider' { + declare module.exports: any; +} + +declare module '@material-ui/core/Slider/Slider' { + declare module.exports: any; +} + +declare module '@material-ui/core/Slider/ValueLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/Snackbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/Snackbar/Snackbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/SnackbarContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/SnackbarContent/SnackbarContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/Step' { + declare module.exports: any; +} + +declare module '@material-ui/core/Step/Step' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepButton/StepButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepConnector' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepConnector/StepConnector' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepContent/StepContent' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepIcon/StepIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/StepLabel/StepLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/Stepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/Stepper/Stepper' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/colorManipulator' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/createBreakpoints' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/createMixins' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/createMuiTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/createPalette' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/createSpacing' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/createStyles' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/createTypography' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/cssUtils' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/defaultTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/makeStyles' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/MuiThemeProvider' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/responsiveFontSizes' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/shadows' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/shape' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/styled' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/transitions' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/useTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/withStyles' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/withTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/styles/zIndex' { + declare module.exports: any; +} + +declare module '@material-ui/core/SvgIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/SvgIcon/SvgIcon' { + declare module.exports: any; +} + +declare module '@material-ui/core/SwipeableDrawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/SwipeableDrawer/SwipeableDrawer' { + declare module.exports: any; +} + +declare module '@material-ui/core/SwipeableDrawer/SwipeArea' { + declare module.exports: any; +} + +declare module '@material-ui/core/Switch' { + declare module.exports: any; +} + +declare module '@material-ui/core/Switch/Switch' { + declare module.exports: any; +} + +declare module '@material-ui/core/Tab' { + declare module.exports: any; +} + +declare module '@material-ui/core/Tab/Tab' { + declare module.exports: any; +} + +declare module '@material-ui/core/Table' { + declare module.exports: any; +} + +declare module '@material-ui/core/Table/Table' { + declare module.exports: any; +} + +declare module '@material-ui/core/Table/TableContext' { + declare module.exports: any; +} + +declare module '@material-ui/core/Table/Tablelvl2Context' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableBody' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableBody/TableBody' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableCell' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableCell/TableCell' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableFooter' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableFooter/TableFooter' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableHead' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableHead/TableHead' { + declare module.exports: any; +} + +declare module '@material-ui/core/TablePagination' { + declare module.exports: any; +} + +declare module '@material-ui/core/TablePagination/TablePagination' { + declare module.exports: any; +} + +declare module '@material-ui/core/TablePagination/TablePaginationActions' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableRow' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableRow/TableRow' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableSortLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/TableSortLabel/TableSortLabel' { + declare module.exports: any; +} + +declare module '@material-ui/core/Tabs' { + declare module.exports: any; +} + +declare module '@material-ui/core/Tabs/ScrollbarSize' { + declare module.exports: any; +} + +declare module '@material-ui/core/Tabs/TabIndicator' { + declare module.exports: any; +} + +declare module '@material-ui/core/Tabs/Tabs' { + declare module.exports: any; +} + +declare module '@material-ui/core/Tabs/TabScrollButton' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/createMount' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/createRender' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/createShallow' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/describeConformance' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/findOutermostIntrinsic' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/getClasses' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/RenderMode' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/testRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/until' { + declare module.exports: any; +} + +declare module '@material-ui/core/test-utils/unwrap' { + declare module.exports: any; +} + +declare module '@material-ui/core/TextareaAutosize' { + declare module.exports: any; +} + +declare module '@material-ui/core/TextareaAutosize/TextareaAutosize' { + declare module.exports: any; +} + +declare module '@material-ui/core/TextField' { + declare module.exports: any; +} + +declare module '@material-ui/core/TextField/TextField' { + declare module.exports: any; +} + +declare module '@material-ui/core/Toolbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/Toolbar/Toolbar' { + declare module.exports: any; +} + +declare module '@material-ui/core/Tooltip' { + declare module.exports: any; +} + +declare module '@material-ui/core/Tooltip/Tooltip' { + declare module.exports: any; +} + +declare module '@material-ui/core/transitions/utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/Typography' { + declare module.exports: any; +} + +declare module '@material-ui/core/Typography/Typography' { + declare module.exports: any; +} + +declare module '@material-ui/core/umd/material-ui.development' { + declare module.exports: any; +} + +declare module '@material-ui/core/umd/material-ui.production.min' { + declare module.exports: any; +} + +declare module '@material-ui/core/useMediaQuery' { + declare module.exports: any; +} + +declare module '@material-ui/core/useMediaQuery/useMediaQuery' { + declare module.exports: any; +} + +declare module '@material-ui/core/useMediaQuery/useMediaQueryTheme' { + declare module.exports: any; +} + +declare module '@material-ui/core/useScrollTrigger' { + declare module.exports: any; +} + +declare module '@material-ui/core/useScrollTrigger/useScrollTrigger' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/capitalize' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/createChainedFunction' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/debounce' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/deprecatedPropType' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/focusVisible' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/getScrollbarSize' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/isMuiElement' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/ownerDocument' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/ownerWindow' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/requirePropFactory' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/setRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/unsupportedProp' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/useEventCallback' { + declare module.exports: any; +} + +declare module '@material-ui/core/utils/useForkRef' { + declare module.exports: any; +} + +declare module '@material-ui/core/withMobileDialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/withMobileDialog/withMobileDialog' { + declare module.exports: any; +} + +declare module '@material-ui/core/withWidth' { + declare module.exports: any; +} + +declare module '@material-ui/core/withWidth/withWidth' { + declare module.exports: any; +} + +declare module '@material-ui/core/Zoom' { + declare module.exports: any; +} + +declare module '@material-ui/core/Zoom/Zoom' { + declare module.exports: any; +} + +// Filename aliases +declare module '@material-ui/core/AppBar/AppBar.js' { + declare module.exports: $Exports<'@material-ui/core/AppBar/AppBar'>; +} +declare module '@material-ui/core/AppBar/index' { + declare module.exports: $Exports<'@material-ui/core/AppBar'>; +} +declare module '@material-ui/core/AppBar/index.js' { + declare module.exports: $Exports<'@material-ui/core/AppBar'>; +} +declare module '@material-ui/core/Avatar/Avatar.js' { + declare module.exports: $Exports<'@material-ui/core/Avatar/Avatar'>; +} +declare module '@material-ui/core/Avatar/index' { + declare module.exports: $Exports<'@material-ui/core/Avatar'>; +} +declare module '@material-ui/core/Avatar/index.js' { + declare module.exports: $Exports<'@material-ui/core/Avatar'>; +} +declare module '@material-ui/core/Backdrop/Backdrop.js' { + declare module.exports: $Exports<'@material-ui/core/Backdrop/Backdrop'>; +} +declare module '@material-ui/core/Backdrop/index' { + declare module.exports: $Exports<'@material-ui/core/Backdrop'>; +} +declare module '@material-ui/core/Backdrop/index.js' { + declare module.exports: $Exports<'@material-ui/core/Backdrop'>; +} +declare module '@material-ui/core/Badge/Badge.js' { + declare module.exports: $Exports<'@material-ui/core/Badge/Badge'>; +} +declare module '@material-ui/core/Badge/index' { + declare module.exports: $Exports<'@material-ui/core/Badge'>; +} +declare module '@material-ui/core/Badge/index.js' { + declare module.exports: $Exports<'@material-ui/core/Badge'>; +} +declare module '@material-ui/core/BottomNavigation/BottomNavigation.js' { + declare module.exports: $Exports<'@material-ui/core/BottomNavigation/BottomNavigation'>; +} +declare module '@material-ui/core/BottomNavigation/index' { + declare module.exports: $Exports<'@material-ui/core/BottomNavigation'>; +} +declare module '@material-ui/core/BottomNavigation/index.js' { + declare module.exports: $Exports<'@material-ui/core/BottomNavigation'>; +} +declare module '@material-ui/core/BottomNavigationAction/BottomNavigationAction.js' { + declare module.exports: $Exports<'@material-ui/core/BottomNavigationAction/BottomNavigationAction'>; +} +declare module '@material-ui/core/BottomNavigationAction/index' { + declare module.exports: $Exports<'@material-ui/core/BottomNavigationAction'>; +} +declare module '@material-ui/core/BottomNavigationAction/index.js' { + declare module.exports: $Exports<'@material-ui/core/BottomNavigationAction'>; +} +declare module '@material-ui/core/Box/Box.js' { + declare module.exports: $Exports<'@material-ui/core/Box/Box'>; +} +declare module '@material-ui/core/Box/index' { + declare module.exports: $Exports<'@material-ui/core/Box'>; +} +declare module '@material-ui/core/Box/index.js' { + declare module.exports: $Exports<'@material-ui/core/Box'>; +} +declare module '@material-ui/core/Breadcrumbs/BreadcrumbCollapsed.js' { + declare module.exports: $Exports<'@material-ui/core/Breadcrumbs/BreadcrumbCollapsed'>; +} +declare module '@material-ui/core/Breadcrumbs/Breadcrumbs.js' { + declare module.exports: $Exports<'@material-ui/core/Breadcrumbs/Breadcrumbs'>; +} +declare module '@material-ui/core/Breadcrumbs/BreadcrumbSeparator.js' { + declare module.exports: $Exports<'@material-ui/core/Breadcrumbs/BreadcrumbSeparator'>; +} +declare module '@material-ui/core/Breadcrumbs/index' { + declare module.exports: $Exports<'@material-ui/core/Breadcrumbs'>; +} +declare module '@material-ui/core/Breadcrumbs/index.js' { + declare module.exports: $Exports<'@material-ui/core/Breadcrumbs'>; +} +declare module '@material-ui/core/Button/Button.js' { + declare module.exports: $Exports<'@material-ui/core/Button/Button'>; +} +declare module '@material-ui/core/Button/index' { + declare module.exports: $Exports<'@material-ui/core/Button'>; +} +declare module '@material-ui/core/Button/index.js' { + declare module.exports: $Exports<'@material-ui/core/Button'>; +} +declare module '@material-ui/core/ButtonBase/ButtonBase.js' { + declare module.exports: $Exports<'@material-ui/core/ButtonBase/ButtonBase'>; +} +declare module '@material-ui/core/ButtonBase/index' { + declare module.exports: $Exports<'@material-ui/core/ButtonBase'>; +} +declare module '@material-ui/core/ButtonBase/index.js' { + declare module.exports: $Exports<'@material-ui/core/ButtonBase'>; +} +declare module '@material-ui/core/ButtonBase/Ripple.js' { + declare module.exports: $Exports<'@material-ui/core/ButtonBase/Ripple'>; +} +declare module '@material-ui/core/ButtonBase/TouchRipple.js' { + declare module.exports: $Exports<'@material-ui/core/ButtonBase/TouchRipple'>; +} +declare module '@material-ui/core/ButtonGroup/ButtonGroup.js' { + declare module.exports: $Exports<'@material-ui/core/ButtonGroup/ButtonGroup'>; +} +declare module '@material-ui/core/ButtonGroup/index' { + declare module.exports: $Exports<'@material-ui/core/ButtonGroup'>; +} +declare module '@material-ui/core/ButtonGroup/index.js' { + declare module.exports: $Exports<'@material-ui/core/ButtonGroup'>; +} +declare module '@material-ui/core/Card/Card.js' { + declare module.exports: $Exports<'@material-ui/core/Card/Card'>; +} +declare module '@material-ui/core/Card/index' { + declare module.exports: $Exports<'@material-ui/core/Card'>; +} +declare module '@material-ui/core/Card/index.js' { + declare module.exports: $Exports<'@material-ui/core/Card'>; +} +declare module '@material-ui/core/CardActionArea/CardActionArea.js' { + declare module.exports: $Exports<'@material-ui/core/CardActionArea/CardActionArea'>; +} +declare module '@material-ui/core/CardActionArea/index' { + declare module.exports: $Exports<'@material-ui/core/CardActionArea'>; +} +declare module '@material-ui/core/CardActionArea/index.js' { + declare module.exports: $Exports<'@material-ui/core/CardActionArea'>; +} +declare module '@material-ui/core/CardActions/CardActions.js' { + declare module.exports: $Exports<'@material-ui/core/CardActions/CardActions'>; +} +declare module '@material-ui/core/CardActions/index' { + declare module.exports: $Exports<'@material-ui/core/CardActions'>; +} +declare module '@material-ui/core/CardActions/index.js' { + declare module.exports: $Exports<'@material-ui/core/CardActions'>; +} +declare module '@material-ui/core/CardContent/CardContent.js' { + declare module.exports: $Exports<'@material-ui/core/CardContent/CardContent'>; +} +declare module '@material-ui/core/CardContent/index' { + declare module.exports: $Exports<'@material-ui/core/CardContent'>; +} +declare module '@material-ui/core/CardContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/CardContent'>; +} +declare module '@material-ui/core/CardHeader/CardHeader.js' { + declare module.exports: $Exports<'@material-ui/core/CardHeader/CardHeader'>; +} +declare module '@material-ui/core/CardHeader/index' { + declare module.exports: $Exports<'@material-ui/core/CardHeader'>; +} +declare module '@material-ui/core/CardHeader/index.js' { + declare module.exports: $Exports<'@material-ui/core/CardHeader'>; +} +declare module '@material-ui/core/CardMedia/CardMedia.js' { + declare module.exports: $Exports<'@material-ui/core/CardMedia/CardMedia'>; +} +declare module '@material-ui/core/CardMedia/index' { + declare module.exports: $Exports<'@material-ui/core/CardMedia'>; +} +declare module '@material-ui/core/CardMedia/index.js' { + declare module.exports: $Exports<'@material-ui/core/CardMedia'>; +} +declare module '@material-ui/core/Checkbox/Checkbox.js' { + declare module.exports: $Exports<'@material-ui/core/Checkbox/Checkbox'>; +} +declare module '@material-ui/core/Checkbox/index' { + declare module.exports: $Exports<'@material-ui/core/Checkbox'>; +} +declare module '@material-ui/core/Checkbox/index.js' { + declare module.exports: $Exports<'@material-ui/core/Checkbox'>; +} +declare module '@material-ui/core/Chip/Chip.js' { + declare module.exports: $Exports<'@material-ui/core/Chip/Chip'>; +} +declare module '@material-ui/core/Chip/index' { + declare module.exports: $Exports<'@material-ui/core/Chip'>; +} +declare module '@material-ui/core/Chip/index.js' { + declare module.exports: $Exports<'@material-ui/core/Chip'>; +} +declare module '@material-ui/core/CircularProgress/CircularProgress.js' { + declare module.exports: $Exports<'@material-ui/core/CircularProgress/CircularProgress'>; +} +declare module '@material-ui/core/CircularProgress/index' { + declare module.exports: $Exports<'@material-ui/core/CircularProgress'>; +} +declare module '@material-ui/core/CircularProgress/index.js' { + declare module.exports: $Exports<'@material-ui/core/CircularProgress'>; +} +declare module '@material-ui/core/ClickAwayListener/ClickAwayListener.js' { + declare module.exports: $Exports<'@material-ui/core/ClickAwayListener/ClickAwayListener'>; +} +declare module '@material-ui/core/ClickAwayListener/index' { + declare module.exports: $Exports<'@material-ui/core/ClickAwayListener'>; +} +declare module '@material-ui/core/ClickAwayListener/index.js' { + declare module.exports: $Exports<'@material-ui/core/ClickAwayListener'>; +} +declare module '@material-ui/core/Collapse/Collapse.js' { + declare module.exports: $Exports<'@material-ui/core/Collapse/Collapse'>; +} +declare module '@material-ui/core/Collapse/index' { + declare module.exports: $Exports<'@material-ui/core/Collapse'>; +} +declare module '@material-ui/core/Collapse/index.js' { + declare module.exports: $Exports<'@material-ui/core/Collapse'>; +} +declare module '@material-ui/core/colors/amber.js' { + declare module.exports: $Exports<'@material-ui/core/colors/amber'>; +} +declare module '@material-ui/core/colors/blue.js' { + declare module.exports: $Exports<'@material-ui/core/colors/blue'>; +} +declare module '@material-ui/core/colors/blueGrey.js' { + declare module.exports: $Exports<'@material-ui/core/colors/blueGrey'>; +} +declare module '@material-ui/core/colors/brown.js' { + declare module.exports: $Exports<'@material-ui/core/colors/brown'>; +} +declare module '@material-ui/core/colors/common.js' { + declare module.exports: $Exports<'@material-ui/core/colors/common'>; +} +declare module '@material-ui/core/colors/cyan.js' { + declare module.exports: $Exports<'@material-ui/core/colors/cyan'>; +} +declare module '@material-ui/core/colors/deepOrange.js' { + declare module.exports: $Exports<'@material-ui/core/colors/deepOrange'>; +} +declare module '@material-ui/core/colors/deepPurple.js' { + declare module.exports: $Exports<'@material-ui/core/colors/deepPurple'>; +} +declare module '@material-ui/core/colors/green.js' { + declare module.exports: $Exports<'@material-ui/core/colors/green'>; +} +declare module '@material-ui/core/colors/grey.js' { + declare module.exports: $Exports<'@material-ui/core/colors/grey'>; +} +declare module '@material-ui/core/colors/index' { + declare module.exports: $Exports<'@material-ui/core/colors'>; +} +declare module '@material-ui/core/colors/index.js' { + declare module.exports: $Exports<'@material-ui/core/colors'>; +} +declare module '@material-ui/core/colors/indigo.js' { + declare module.exports: $Exports<'@material-ui/core/colors/indigo'>; +} +declare module '@material-ui/core/colors/lightBlue.js' { + declare module.exports: $Exports<'@material-ui/core/colors/lightBlue'>; +} +declare module '@material-ui/core/colors/lightGreen.js' { + declare module.exports: $Exports<'@material-ui/core/colors/lightGreen'>; +} +declare module '@material-ui/core/colors/lime.js' { + declare module.exports: $Exports<'@material-ui/core/colors/lime'>; +} +declare module '@material-ui/core/colors/orange.js' { + declare module.exports: $Exports<'@material-ui/core/colors/orange'>; +} +declare module '@material-ui/core/colors/pink.js' { + declare module.exports: $Exports<'@material-ui/core/colors/pink'>; +} +declare module '@material-ui/core/colors/purple.js' { + declare module.exports: $Exports<'@material-ui/core/colors/purple'>; +} +declare module '@material-ui/core/colors/red.js' { + declare module.exports: $Exports<'@material-ui/core/colors/red'>; +} +declare module '@material-ui/core/colors/teal.js' { + declare module.exports: $Exports<'@material-ui/core/colors/teal'>; +} +declare module '@material-ui/core/colors/yellow.js' { + declare module.exports: $Exports<'@material-ui/core/colors/yellow'>; +} +declare module '@material-ui/core/Container/Container.js' { + declare module.exports: $Exports<'@material-ui/core/Container/Container'>; +} +declare module '@material-ui/core/Container/index' { + declare module.exports: $Exports<'@material-ui/core/Container'>; +} +declare module '@material-ui/core/Container/index.js' { + declare module.exports: $Exports<'@material-ui/core/Container'>; +} +declare module '@material-ui/core/CssBaseline/CssBaseline.js' { + declare module.exports: $Exports<'@material-ui/core/CssBaseline/CssBaseline'>; +} +declare module '@material-ui/core/CssBaseline/index' { + declare module.exports: $Exports<'@material-ui/core/CssBaseline'>; +} +declare module '@material-ui/core/CssBaseline/index.js' { + declare module.exports: $Exports<'@material-ui/core/CssBaseline'>; +} +declare module '@material-ui/core/Dialog/Dialog.js' { + declare module.exports: $Exports<'@material-ui/core/Dialog/Dialog'>; +} +declare module '@material-ui/core/Dialog/index' { + declare module.exports: $Exports<'@material-ui/core/Dialog'>; +} +declare module '@material-ui/core/Dialog/index.js' { + declare module.exports: $Exports<'@material-ui/core/Dialog'>; +} +declare module '@material-ui/core/DialogActions/DialogActions.js' { + declare module.exports: $Exports<'@material-ui/core/DialogActions/DialogActions'>; +} +declare module '@material-ui/core/DialogActions/index' { + declare module.exports: $Exports<'@material-ui/core/DialogActions'>; +} +declare module '@material-ui/core/DialogActions/index.js' { + declare module.exports: $Exports<'@material-ui/core/DialogActions'>; +} +declare module '@material-ui/core/DialogContent/DialogContent.js' { + declare module.exports: $Exports<'@material-ui/core/DialogContent/DialogContent'>; +} +declare module '@material-ui/core/DialogContent/index' { + declare module.exports: $Exports<'@material-ui/core/DialogContent'>; +} +declare module '@material-ui/core/DialogContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/DialogContent'>; +} +declare module '@material-ui/core/DialogContentText/DialogContentText.js' { + declare module.exports: $Exports<'@material-ui/core/DialogContentText/DialogContentText'>; +} +declare module '@material-ui/core/DialogContentText/index' { + declare module.exports: $Exports<'@material-ui/core/DialogContentText'>; +} +declare module '@material-ui/core/DialogContentText/index.js' { + declare module.exports: $Exports<'@material-ui/core/DialogContentText'>; +} +declare module '@material-ui/core/DialogTitle/DialogTitle.js' { + declare module.exports: $Exports<'@material-ui/core/DialogTitle/DialogTitle'>; +} +declare module '@material-ui/core/DialogTitle/index' { + declare module.exports: $Exports<'@material-ui/core/DialogTitle'>; +} +declare module '@material-ui/core/DialogTitle/index.js' { + declare module.exports: $Exports<'@material-ui/core/DialogTitle'>; +} +declare module '@material-ui/core/Divider/Divider.js' { + declare module.exports: $Exports<'@material-ui/core/Divider/Divider'>; +} +declare module '@material-ui/core/Divider/index' { + declare module.exports: $Exports<'@material-ui/core/Divider'>; +} +declare module '@material-ui/core/Divider/index.js' { + declare module.exports: $Exports<'@material-ui/core/Divider'>; +} +declare module '@material-ui/core/Drawer/Drawer.js' { + declare module.exports: $Exports<'@material-ui/core/Drawer/Drawer'>; +} +declare module '@material-ui/core/Drawer/index' { + declare module.exports: $Exports<'@material-ui/core/Drawer'>; +} +declare module '@material-ui/core/Drawer/index.js' { + declare module.exports: $Exports<'@material-ui/core/Drawer'>; +} +declare module '@material-ui/core/es/AppBar/AppBar.js' { + declare module.exports: $Exports<'@material-ui/core/es/AppBar/AppBar'>; +} +declare module '@material-ui/core/es/AppBar/index' { + declare module.exports: $Exports<'@material-ui/core/es/AppBar'>; +} +declare module '@material-ui/core/es/AppBar/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/AppBar'>; +} +declare module '@material-ui/core/es/Avatar/Avatar.js' { + declare module.exports: $Exports<'@material-ui/core/es/Avatar/Avatar'>; +} +declare module '@material-ui/core/es/Avatar/index' { + declare module.exports: $Exports<'@material-ui/core/es/Avatar'>; +} +declare module '@material-ui/core/es/Avatar/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Avatar'>; +} +declare module '@material-ui/core/es/Backdrop/Backdrop.js' { + declare module.exports: $Exports<'@material-ui/core/es/Backdrop/Backdrop'>; +} +declare module '@material-ui/core/es/Backdrop/index' { + declare module.exports: $Exports<'@material-ui/core/es/Backdrop'>; +} +declare module '@material-ui/core/es/Backdrop/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Backdrop'>; +} +declare module '@material-ui/core/es/Badge/Badge.js' { + declare module.exports: $Exports<'@material-ui/core/es/Badge/Badge'>; +} +declare module '@material-ui/core/es/Badge/index' { + declare module.exports: $Exports<'@material-ui/core/es/Badge'>; +} +declare module '@material-ui/core/es/Badge/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Badge'>; +} +declare module '@material-ui/core/es/BottomNavigation/BottomNavigation.js' { + declare module.exports: $Exports<'@material-ui/core/es/BottomNavigation/BottomNavigation'>; +} +declare module '@material-ui/core/es/BottomNavigation/index' { + declare module.exports: $Exports<'@material-ui/core/es/BottomNavigation'>; +} +declare module '@material-ui/core/es/BottomNavigation/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/BottomNavigation'>; +} +declare module '@material-ui/core/es/BottomNavigationAction/BottomNavigationAction.js' { + declare module.exports: $Exports<'@material-ui/core/es/BottomNavigationAction/BottomNavigationAction'>; +} +declare module '@material-ui/core/es/BottomNavigationAction/index' { + declare module.exports: $Exports<'@material-ui/core/es/BottomNavigationAction'>; +} +declare module '@material-ui/core/es/BottomNavigationAction/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/BottomNavigationAction'>; +} +declare module '@material-ui/core/es/Box/Box.js' { + declare module.exports: $Exports<'@material-ui/core/es/Box/Box'>; +} +declare module '@material-ui/core/es/Box/index' { + declare module.exports: $Exports<'@material-ui/core/es/Box'>; +} +declare module '@material-ui/core/es/Box/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Box'>; +} +declare module '@material-ui/core/es/Breadcrumbs/BreadcrumbCollapsed.js' { + declare module.exports: $Exports<'@material-ui/core/es/Breadcrumbs/BreadcrumbCollapsed'>; +} +declare module '@material-ui/core/es/Breadcrumbs/Breadcrumbs.js' { + declare module.exports: $Exports<'@material-ui/core/es/Breadcrumbs/Breadcrumbs'>; +} +declare module '@material-ui/core/es/Breadcrumbs/BreadcrumbSeparator.js' { + declare module.exports: $Exports<'@material-ui/core/es/Breadcrumbs/BreadcrumbSeparator'>; +} +declare module '@material-ui/core/es/Breadcrumbs/index' { + declare module.exports: $Exports<'@material-ui/core/es/Breadcrumbs'>; +} +declare module '@material-ui/core/es/Breadcrumbs/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Breadcrumbs'>; +} +declare module '@material-ui/core/es/Button/Button.js' { + declare module.exports: $Exports<'@material-ui/core/es/Button/Button'>; +} +declare module '@material-ui/core/es/Button/index' { + declare module.exports: $Exports<'@material-ui/core/es/Button'>; +} +declare module '@material-ui/core/es/Button/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Button'>; +} +declare module '@material-ui/core/es/ButtonBase/ButtonBase.js' { + declare module.exports: $Exports<'@material-ui/core/es/ButtonBase/ButtonBase'>; +} +declare module '@material-ui/core/es/ButtonBase/index' { + declare module.exports: $Exports<'@material-ui/core/es/ButtonBase'>; +} +declare module '@material-ui/core/es/ButtonBase/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ButtonBase'>; +} +declare module '@material-ui/core/es/ButtonBase/Ripple.js' { + declare module.exports: $Exports<'@material-ui/core/es/ButtonBase/Ripple'>; +} +declare module '@material-ui/core/es/ButtonBase/TouchRipple.js' { + declare module.exports: $Exports<'@material-ui/core/es/ButtonBase/TouchRipple'>; +} +declare module '@material-ui/core/es/ButtonGroup/ButtonGroup.js' { + declare module.exports: $Exports<'@material-ui/core/es/ButtonGroup/ButtonGroup'>; +} +declare module '@material-ui/core/es/ButtonGroup/index' { + declare module.exports: $Exports<'@material-ui/core/es/ButtonGroup'>; +} +declare module '@material-ui/core/es/ButtonGroup/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ButtonGroup'>; +} +declare module '@material-ui/core/es/Card/Card.js' { + declare module.exports: $Exports<'@material-ui/core/es/Card/Card'>; +} +declare module '@material-ui/core/es/Card/index' { + declare module.exports: $Exports<'@material-ui/core/es/Card'>; +} +declare module '@material-ui/core/es/Card/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Card'>; +} +declare module '@material-ui/core/es/CardActionArea/CardActionArea.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardActionArea/CardActionArea'>; +} +declare module '@material-ui/core/es/CardActionArea/index' { + declare module.exports: $Exports<'@material-ui/core/es/CardActionArea'>; +} +declare module '@material-ui/core/es/CardActionArea/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardActionArea'>; +} +declare module '@material-ui/core/es/CardActions/CardActions.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardActions/CardActions'>; +} +declare module '@material-ui/core/es/CardActions/index' { + declare module.exports: $Exports<'@material-ui/core/es/CardActions'>; +} +declare module '@material-ui/core/es/CardActions/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardActions'>; +} +declare module '@material-ui/core/es/CardContent/CardContent.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardContent/CardContent'>; +} +declare module '@material-ui/core/es/CardContent/index' { + declare module.exports: $Exports<'@material-ui/core/es/CardContent'>; +} +declare module '@material-ui/core/es/CardContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardContent'>; +} +declare module '@material-ui/core/es/CardHeader/CardHeader.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardHeader/CardHeader'>; +} +declare module '@material-ui/core/es/CardHeader/index' { + declare module.exports: $Exports<'@material-ui/core/es/CardHeader'>; +} +declare module '@material-ui/core/es/CardHeader/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardHeader'>; +} +declare module '@material-ui/core/es/CardMedia/CardMedia.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardMedia/CardMedia'>; +} +declare module '@material-ui/core/es/CardMedia/index' { + declare module.exports: $Exports<'@material-ui/core/es/CardMedia'>; +} +declare module '@material-ui/core/es/CardMedia/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/CardMedia'>; +} +declare module '@material-ui/core/es/Checkbox/Checkbox.js' { + declare module.exports: $Exports<'@material-ui/core/es/Checkbox/Checkbox'>; +} +declare module '@material-ui/core/es/Checkbox/index' { + declare module.exports: $Exports<'@material-ui/core/es/Checkbox'>; +} +declare module '@material-ui/core/es/Checkbox/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Checkbox'>; +} +declare module '@material-ui/core/es/Chip/Chip.js' { + declare module.exports: $Exports<'@material-ui/core/es/Chip/Chip'>; +} +declare module '@material-ui/core/es/Chip/index' { + declare module.exports: $Exports<'@material-ui/core/es/Chip'>; +} +declare module '@material-ui/core/es/Chip/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Chip'>; +} +declare module '@material-ui/core/es/CircularProgress/CircularProgress.js' { + declare module.exports: $Exports<'@material-ui/core/es/CircularProgress/CircularProgress'>; +} +declare module '@material-ui/core/es/CircularProgress/index' { + declare module.exports: $Exports<'@material-ui/core/es/CircularProgress'>; +} +declare module '@material-ui/core/es/CircularProgress/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/CircularProgress'>; +} +declare module '@material-ui/core/es/ClickAwayListener/ClickAwayListener.js' { + declare module.exports: $Exports<'@material-ui/core/es/ClickAwayListener/ClickAwayListener'>; +} +declare module '@material-ui/core/es/ClickAwayListener/index' { + declare module.exports: $Exports<'@material-ui/core/es/ClickAwayListener'>; +} +declare module '@material-ui/core/es/ClickAwayListener/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ClickAwayListener'>; +} +declare module '@material-ui/core/es/Collapse/Collapse.js' { + declare module.exports: $Exports<'@material-ui/core/es/Collapse/Collapse'>; +} +declare module '@material-ui/core/es/Collapse/index' { + declare module.exports: $Exports<'@material-ui/core/es/Collapse'>; +} +declare module '@material-ui/core/es/Collapse/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Collapse'>; +} +declare module '@material-ui/core/es/colors/amber.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/amber'>; +} +declare module '@material-ui/core/es/colors/blue.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/blue'>; +} +declare module '@material-ui/core/es/colors/blueGrey.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/blueGrey'>; +} +declare module '@material-ui/core/es/colors/brown.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/brown'>; +} +declare module '@material-ui/core/es/colors/common.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/common'>; +} +declare module '@material-ui/core/es/colors/cyan.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/cyan'>; +} +declare module '@material-ui/core/es/colors/deepOrange.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/deepOrange'>; +} +declare module '@material-ui/core/es/colors/deepPurple.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/deepPurple'>; +} +declare module '@material-ui/core/es/colors/green.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/green'>; +} +declare module '@material-ui/core/es/colors/grey.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/grey'>; +} +declare module '@material-ui/core/es/colors/index' { + declare module.exports: $Exports<'@material-ui/core/es/colors'>; +} +declare module '@material-ui/core/es/colors/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors'>; +} +declare module '@material-ui/core/es/colors/indigo.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/indigo'>; +} +declare module '@material-ui/core/es/colors/lightBlue.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/lightBlue'>; +} +declare module '@material-ui/core/es/colors/lightGreen.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/lightGreen'>; +} +declare module '@material-ui/core/es/colors/lime.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/lime'>; +} +declare module '@material-ui/core/es/colors/orange.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/orange'>; +} +declare module '@material-ui/core/es/colors/pink.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/pink'>; +} +declare module '@material-ui/core/es/colors/purple.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/purple'>; +} +declare module '@material-ui/core/es/colors/red.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/red'>; +} +declare module '@material-ui/core/es/colors/teal.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/teal'>; +} +declare module '@material-ui/core/es/colors/yellow.js' { + declare module.exports: $Exports<'@material-ui/core/es/colors/yellow'>; +} +declare module '@material-ui/core/es/Container/Container.js' { + declare module.exports: $Exports<'@material-ui/core/es/Container/Container'>; +} +declare module '@material-ui/core/es/Container/index' { + declare module.exports: $Exports<'@material-ui/core/es/Container'>; +} +declare module '@material-ui/core/es/Container/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Container'>; +} +declare module '@material-ui/core/es/CssBaseline/CssBaseline.js' { + declare module.exports: $Exports<'@material-ui/core/es/CssBaseline/CssBaseline'>; +} +declare module '@material-ui/core/es/CssBaseline/index' { + declare module.exports: $Exports<'@material-ui/core/es/CssBaseline'>; +} +declare module '@material-ui/core/es/CssBaseline/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/CssBaseline'>; +} +declare module '@material-ui/core/es/Dialog/Dialog.js' { + declare module.exports: $Exports<'@material-ui/core/es/Dialog/Dialog'>; +} +declare module '@material-ui/core/es/Dialog/index' { + declare module.exports: $Exports<'@material-ui/core/es/Dialog'>; +} +declare module '@material-ui/core/es/Dialog/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Dialog'>; +} +declare module '@material-ui/core/es/DialogActions/DialogActions.js' { + declare module.exports: $Exports<'@material-ui/core/es/DialogActions/DialogActions'>; +} +declare module '@material-ui/core/es/DialogActions/index' { + declare module.exports: $Exports<'@material-ui/core/es/DialogActions'>; +} +declare module '@material-ui/core/es/DialogActions/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/DialogActions'>; +} +declare module '@material-ui/core/es/DialogContent/DialogContent.js' { + declare module.exports: $Exports<'@material-ui/core/es/DialogContent/DialogContent'>; +} +declare module '@material-ui/core/es/DialogContent/index' { + declare module.exports: $Exports<'@material-ui/core/es/DialogContent'>; +} +declare module '@material-ui/core/es/DialogContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/DialogContent'>; +} +declare module '@material-ui/core/es/DialogContentText/DialogContentText.js' { + declare module.exports: $Exports<'@material-ui/core/es/DialogContentText/DialogContentText'>; +} +declare module '@material-ui/core/es/DialogContentText/index' { + declare module.exports: $Exports<'@material-ui/core/es/DialogContentText'>; +} +declare module '@material-ui/core/es/DialogContentText/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/DialogContentText'>; +} +declare module '@material-ui/core/es/DialogTitle/DialogTitle.js' { + declare module.exports: $Exports<'@material-ui/core/es/DialogTitle/DialogTitle'>; +} +declare module '@material-ui/core/es/DialogTitle/index' { + declare module.exports: $Exports<'@material-ui/core/es/DialogTitle'>; +} +declare module '@material-ui/core/es/DialogTitle/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/DialogTitle'>; +} +declare module '@material-ui/core/es/Divider/Divider.js' { + declare module.exports: $Exports<'@material-ui/core/es/Divider/Divider'>; +} +declare module '@material-ui/core/es/Divider/index' { + declare module.exports: $Exports<'@material-ui/core/es/Divider'>; +} +declare module '@material-ui/core/es/Divider/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Divider'>; +} +declare module '@material-ui/core/es/Drawer/Drawer.js' { + declare module.exports: $Exports<'@material-ui/core/es/Drawer/Drawer'>; +} +declare module '@material-ui/core/es/Drawer/index' { + declare module.exports: $Exports<'@material-ui/core/es/Drawer'>; +} +declare module '@material-ui/core/es/Drawer/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Drawer'>; +} +declare module '@material-ui/core/es/ExpansionPanel/ExpansionPanel.js' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanel/ExpansionPanel'>; +} +declare module '@material-ui/core/es/ExpansionPanel/ExpansionPanelContext.js' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanel/ExpansionPanelContext'>; +} +declare module '@material-ui/core/es/ExpansionPanel/index' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanel'>; +} +declare module '@material-ui/core/es/ExpansionPanel/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanel'>; +} +declare module '@material-ui/core/es/ExpansionPanelActions/ExpansionPanelActions.js' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelActions/ExpansionPanelActions'>; +} +declare module '@material-ui/core/es/ExpansionPanelActions/index' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelActions'>; +} +declare module '@material-ui/core/es/ExpansionPanelActions/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelActions'>; +} +declare module '@material-ui/core/es/ExpansionPanelDetails/ExpansionPanelDetails.js' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelDetails/ExpansionPanelDetails'>; +} +declare module '@material-ui/core/es/ExpansionPanelDetails/index' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelDetails'>; +} +declare module '@material-ui/core/es/ExpansionPanelDetails/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelDetails'>; +} +declare module '@material-ui/core/es/ExpansionPanelSummary/ExpansionPanelSummary.js' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelSummary/ExpansionPanelSummary'>; +} +declare module '@material-ui/core/es/ExpansionPanelSummary/index' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelSummary'>; +} +declare module '@material-ui/core/es/ExpansionPanelSummary/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ExpansionPanelSummary'>; +} +declare module '@material-ui/core/es/Fab/Fab.js' { + declare module.exports: $Exports<'@material-ui/core/es/Fab/Fab'>; +} +declare module '@material-ui/core/es/Fab/index' { + declare module.exports: $Exports<'@material-ui/core/es/Fab'>; +} +declare module '@material-ui/core/es/Fab/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Fab'>; +} +declare module '@material-ui/core/es/Fade/Fade.js' { + declare module.exports: $Exports<'@material-ui/core/es/Fade/Fade'>; +} +declare module '@material-ui/core/es/Fade/index' { + declare module.exports: $Exports<'@material-ui/core/es/Fade'>; +} +declare module '@material-ui/core/es/Fade/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Fade'>; +} +declare module '@material-ui/core/es/FilledInput/FilledInput.js' { + declare module.exports: $Exports<'@material-ui/core/es/FilledInput/FilledInput'>; +} +declare module '@material-ui/core/es/FilledInput/index' { + declare module.exports: $Exports<'@material-ui/core/es/FilledInput'>; +} +declare module '@material-ui/core/es/FilledInput/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/FilledInput'>; +} +declare module '@material-ui/core/es/FormControl/FormControl.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormControl/FormControl'>; +} +declare module '@material-ui/core/es/FormControl/FormControlContext.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormControl/FormControlContext'>; +} +declare module '@material-ui/core/es/FormControl/formControlState.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormControl/formControlState'>; +} +declare module '@material-ui/core/es/FormControl/index' { + declare module.exports: $Exports<'@material-ui/core/es/FormControl'>; +} +declare module '@material-ui/core/es/FormControl/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormControl'>; +} +declare module '@material-ui/core/es/FormControl/useFormControl.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormControl/useFormControl'>; +} +declare module '@material-ui/core/es/FormControlLabel/FormControlLabel.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormControlLabel/FormControlLabel'>; +} +declare module '@material-ui/core/es/FormControlLabel/index' { + declare module.exports: $Exports<'@material-ui/core/es/FormControlLabel'>; +} +declare module '@material-ui/core/es/FormControlLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormControlLabel'>; +} +declare module '@material-ui/core/es/FormGroup/FormGroup.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormGroup/FormGroup'>; +} +declare module '@material-ui/core/es/FormGroup/index' { + declare module.exports: $Exports<'@material-ui/core/es/FormGroup'>; +} +declare module '@material-ui/core/es/FormGroup/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormGroup'>; +} +declare module '@material-ui/core/es/FormHelperText/FormHelperText.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormHelperText/FormHelperText'>; +} +declare module '@material-ui/core/es/FormHelperText/index' { + declare module.exports: $Exports<'@material-ui/core/es/FormHelperText'>; +} +declare module '@material-ui/core/es/FormHelperText/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormHelperText'>; +} +declare module '@material-ui/core/es/FormLabel/FormLabel.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormLabel/FormLabel'>; +} +declare module '@material-ui/core/es/FormLabel/index' { + declare module.exports: $Exports<'@material-ui/core/es/FormLabel'>; +} +declare module '@material-ui/core/es/FormLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/FormLabel'>; +} +declare module '@material-ui/core/es/Grid/Grid.js' { + declare module.exports: $Exports<'@material-ui/core/es/Grid/Grid'>; +} +declare module '@material-ui/core/es/Grid/index' { + declare module.exports: $Exports<'@material-ui/core/es/Grid'>; +} +declare module '@material-ui/core/es/Grid/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Grid'>; +} +declare module '@material-ui/core/es/GridList/GridList.js' { + declare module.exports: $Exports<'@material-ui/core/es/GridList/GridList'>; +} +declare module '@material-ui/core/es/GridList/index' { + declare module.exports: $Exports<'@material-ui/core/es/GridList'>; +} +declare module '@material-ui/core/es/GridList/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/GridList'>; +} +declare module '@material-ui/core/es/GridListTile/GridListTile.js' { + declare module.exports: $Exports<'@material-ui/core/es/GridListTile/GridListTile'>; +} +declare module '@material-ui/core/es/GridListTile/index' { + declare module.exports: $Exports<'@material-ui/core/es/GridListTile'>; +} +declare module '@material-ui/core/es/GridListTile/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/GridListTile'>; +} +declare module '@material-ui/core/es/GridListTileBar/GridListTileBar.js' { + declare module.exports: $Exports<'@material-ui/core/es/GridListTileBar/GridListTileBar'>; +} +declare module '@material-ui/core/es/GridListTileBar/index' { + declare module.exports: $Exports<'@material-ui/core/es/GridListTileBar'>; +} +declare module '@material-ui/core/es/GridListTileBar/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/GridListTileBar'>; +} +declare module '@material-ui/core/es/Grow/Grow.js' { + declare module.exports: $Exports<'@material-ui/core/es/Grow/Grow'>; +} +declare module '@material-ui/core/es/Grow/index' { + declare module.exports: $Exports<'@material-ui/core/es/Grow'>; +} +declare module '@material-ui/core/es/Grow/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Grow'>; +} +declare module '@material-ui/core/es/Hidden/Hidden.js' { + declare module.exports: $Exports<'@material-ui/core/es/Hidden/Hidden'>; +} +declare module '@material-ui/core/es/Hidden/HiddenCss.js' { + declare module.exports: $Exports<'@material-ui/core/es/Hidden/HiddenCss'>; +} +declare module '@material-ui/core/es/Hidden/HiddenJs.js' { + declare module.exports: $Exports<'@material-ui/core/es/Hidden/HiddenJs'>; +} +declare module '@material-ui/core/es/Hidden/index' { + declare module.exports: $Exports<'@material-ui/core/es/Hidden'>; +} +declare module '@material-ui/core/es/Hidden/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Hidden'>; +} +declare module '@material-ui/core/es/Icon/Icon.js' { + declare module.exports: $Exports<'@material-ui/core/es/Icon/Icon'>; +} +declare module '@material-ui/core/es/Icon/index' { + declare module.exports: $Exports<'@material-ui/core/es/Icon'>; +} +declare module '@material-ui/core/es/Icon/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Icon'>; +} +declare module '@material-ui/core/es/IconButton/IconButton.js' { + declare module.exports: $Exports<'@material-ui/core/es/IconButton/IconButton'>; +} +declare module '@material-ui/core/es/IconButton/index' { + declare module.exports: $Exports<'@material-ui/core/es/IconButton'>; +} +declare module '@material-ui/core/es/IconButton/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/IconButton'>; +} +declare module '@material-ui/core/es/index' { + declare module.exports: $Exports<'@material-ui/core/es'>; +} +declare module '@material-ui/core/es/index.js' { + declare module.exports: $Exports<'@material-ui/core/es'>; +} +declare module '@material-ui/core/es/Input/index' { + declare module.exports: $Exports<'@material-ui/core/es/Input'>; +} +declare module '@material-ui/core/es/Input/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Input'>; +} +declare module '@material-ui/core/es/Input/Input.js' { + declare module.exports: $Exports<'@material-ui/core/es/Input/Input'>; +} +declare module '@material-ui/core/es/InputAdornment/index' { + declare module.exports: $Exports<'@material-ui/core/es/InputAdornment'>; +} +declare module '@material-ui/core/es/InputAdornment/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/InputAdornment'>; +} +declare module '@material-ui/core/es/InputAdornment/InputAdornment.js' { + declare module.exports: $Exports<'@material-ui/core/es/InputAdornment/InputAdornment'>; +} +declare module '@material-ui/core/es/InputBase/index' { + declare module.exports: $Exports<'@material-ui/core/es/InputBase'>; +} +declare module '@material-ui/core/es/InputBase/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/InputBase'>; +} +declare module '@material-ui/core/es/InputBase/InputBase.js' { + declare module.exports: $Exports<'@material-ui/core/es/InputBase/InputBase'>; +} +declare module '@material-ui/core/es/InputBase/utils.js' { + declare module.exports: $Exports<'@material-ui/core/es/InputBase/utils'>; +} +declare module '@material-ui/core/es/InputLabel/index' { + declare module.exports: $Exports<'@material-ui/core/es/InputLabel'>; +} +declare module '@material-ui/core/es/InputLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/InputLabel'>; +} +declare module '@material-ui/core/es/InputLabel/InputLabel.js' { + declare module.exports: $Exports<'@material-ui/core/es/InputLabel/InputLabel'>; +} +declare module '@material-ui/core/es/internal/animate.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/animate'>; +} +declare module '@material-ui/core/es/internal/svg-icons/ArrowDownward.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/ArrowDownward'>; +} +declare module '@material-ui/core/es/internal/svg-icons/ArrowDropDown.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/ArrowDropDown'>; +} +declare module '@material-ui/core/es/internal/svg-icons/Cancel.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/Cancel'>; +} +declare module '@material-ui/core/es/internal/svg-icons/CheckBox.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/CheckBox'>; +} +declare module '@material-ui/core/es/internal/svg-icons/CheckBoxOutlineBlank.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/CheckBoxOutlineBlank'>; +} +declare module '@material-ui/core/es/internal/svg-icons/CheckCircle.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/CheckCircle'>; +} +declare module '@material-ui/core/es/internal/svg-icons/createSvgIcon.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/createSvgIcon'>; +} +declare module '@material-ui/core/es/internal/svg-icons/IndeterminateCheckBox.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/IndeterminateCheckBox'>; +} +declare module '@material-ui/core/es/internal/svg-icons/KeyboardArrowLeft.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/KeyboardArrowLeft'>; +} +declare module '@material-ui/core/es/internal/svg-icons/KeyboardArrowRight.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/KeyboardArrowRight'>; +} +declare module '@material-ui/core/es/internal/svg-icons/MoreHoriz.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/MoreHoriz'>; +} +declare module '@material-ui/core/es/internal/svg-icons/RadioButtonChecked.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/RadioButtonChecked'>; +} +declare module '@material-ui/core/es/internal/svg-icons/RadioButtonUnchecked.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/RadioButtonUnchecked'>; +} +declare module '@material-ui/core/es/internal/svg-icons/Warning.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/svg-icons/Warning'>; +} +declare module '@material-ui/core/es/internal/SwitchBase.js' { + declare module.exports: $Exports<'@material-ui/core/es/internal/SwitchBase'>; +} +declare module '@material-ui/core/es/LinearProgress/index' { + declare module.exports: $Exports<'@material-ui/core/es/LinearProgress'>; +} +declare module '@material-ui/core/es/LinearProgress/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/LinearProgress'>; +} +declare module '@material-ui/core/es/LinearProgress/LinearProgress.js' { + declare module.exports: $Exports<'@material-ui/core/es/LinearProgress/LinearProgress'>; +} +declare module '@material-ui/core/es/Link/index' { + declare module.exports: $Exports<'@material-ui/core/es/Link'>; +} +declare module '@material-ui/core/es/Link/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Link'>; +} +declare module '@material-ui/core/es/Link/Link.js' { + declare module.exports: $Exports<'@material-ui/core/es/Link/Link'>; +} +declare module '@material-ui/core/es/List/index' { + declare module.exports: $Exports<'@material-ui/core/es/List'>; +} +declare module '@material-ui/core/es/List/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/List'>; +} +declare module '@material-ui/core/es/List/List.js' { + declare module.exports: $Exports<'@material-ui/core/es/List/List'>; +} +declare module '@material-ui/core/es/List/ListContext.js' { + declare module.exports: $Exports<'@material-ui/core/es/List/ListContext'>; +} +declare module '@material-ui/core/es/ListItem/index' { + declare module.exports: $Exports<'@material-ui/core/es/ListItem'>; +} +declare module '@material-ui/core/es/ListItem/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItem'>; +} +declare module '@material-ui/core/es/ListItem/ListItem.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItem/ListItem'>; +} +declare module '@material-ui/core/es/ListItemAvatar/index' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemAvatar'>; +} +declare module '@material-ui/core/es/ListItemAvatar/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemAvatar'>; +} +declare module '@material-ui/core/es/ListItemAvatar/ListItemAvatar.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemAvatar/ListItemAvatar'>; +} +declare module '@material-ui/core/es/ListItemIcon/index' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemIcon'>; +} +declare module '@material-ui/core/es/ListItemIcon/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemIcon'>; +} +declare module '@material-ui/core/es/ListItemIcon/ListItemIcon.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemIcon/ListItemIcon'>; +} +declare module '@material-ui/core/es/ListItemSecondaryAction/index' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemSecondaryAction'>; +} +declare module '@material-ui/core/es/ListItemSecondaryAction/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemSecondaryAction'>; +} +declare module '@material-ui/core/es/ListItemSecondaryAction/ListItemSecondaryAction.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemSecondaryAction/ListItemSecondaryAction'>; +} +declare module '@material-ui/core/es/ListItemText/index' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemText'>; +} +declare module '@material-ui/core/es/ListItemText/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemText'>; +} +declare module '@material-ui/core/es/ListItemText/ListItemText.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListItemText/ListItemText'>; +} +declare module '@material-ui/core/es/ListSubheader/index' { + declare module.exports: $Exports<'@material-ui/core/es/ListSubheader'>; +} +declare module '@material-ui/core/es/ListSubheader/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListSubheader'>; +} +declare module '@material-ui/core/es/ListSubheader/ListSubheader.js' { + declare module.exports: $Exports<'@material-ui/core/es/ListSubheader/ListSubheader'>; +} +declare module '@material-ui/core/es/Menu/index' { + declare module.exports: $Exports<'@material-ui/core/es/Menu'>; +} +declare module '@material-ui/core/es/Menu/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Menu'>; +} +declare module '@material-ui/core/es/Menu/Menu.js' { + declare module.exports: $Exports<'@material-ui/core/es/Menu/Menu'>; +} +declare module '@material-ui/core/es/MenuItem/index' { + declare module.exports: $Exports<'@material-ui/core/es/MenuItem'>; +} +declare module '@material-ui/core/es/MenuItem/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/MenuItem'>; +} +declare module '@material-ui/core/es/MenuItem/MenuItem.js' { + declare module.exports: $Exports<'@material-ui/core/es/MenuItem/MenuItem'>; +} +declare module '@material-ui/core/es/MenuList/index' { + declare module.exports: $Exports<'@material-ui/core/es/MenuList'>; +} +declare module '@material-ui/core/es/MenuList/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/MenuList'>; +} +declare module '@material-ui/core/es/MenuList/MenuList.js' { + declare module.exports: $Exports<'@material-ui/core/es/MenuList/MenuList'>; +} +declare module '@material-ui/core/es/MobileStepper/index' { + declare module.exports: $Exports<'@material-ui/core/es/MobileStepper'>; +} +declare module '@material-ui/core/es/MobileStepper/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/MobileStepper'>; +} +declare module '@material-ui/core/es/MobileStepper/MobileStepper.js' { + declare module.exports: $Exports<'@material-ui/core/es/MobileStepper/MobileStepper'>; +} +declare module '@material-ui/core/es/Modal/index' { + declare module.exports: $Exports<'@material-ui/core/es/Modal'>; +} +declare module '@material-ui/core/es/Modal/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Modal'>; +} +declare module '@material-ui/core/es/Modal/Modal.js' { + declare module.exports: $Exports<'@material-ui/core/es/Modal/Modal'>; +} +declare module '@material-ui/core/es/Modal/ModalManager.js' { + declare module.exports: $Exports<'@material-ui/core/es/Modal/ModalManager'>; +} +declare module '@material-ui/core/es/Modal/SimpleBackdrop.js' { + declare module.exports: $Exports<'@material-ui/core/es/Modal/SimpleBackdrop'>; +} +declare module '@material-ui/core/es/Modal/TrapFocus.js' { + declare module.exports: $Exports<'@material-ui/core/es/Modal/TrapFocus'>; +} +declare module '@material-ui/core/es/NativeSelect/index' { + declare module.exports: $Exports<'@material-ui/core/es/NativeSelect'>; +} +declare module '@material-ui/core/es/NativeSelect/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/NativeSelect'>; +} +declare module '@material-ui/core/es/NativeSelect/NativeSelect.js' { + declare module.exports: $Exports<'@material-ui/core/es/NativeSelect/NativeSelect'>; +} +declare module '@material-ui/core/es/NativeSelect/NativeSelectInput.js' { + declare module.exports: $Exports<'@material-ui/core/es/NativeSelect/NativeSelectInput'>; +} +declare module '@material-ui/core/es/NoSsr/index' { + declare module.exports: $Exports<'@material-ui/core/es/NoSsr'>; +} +declare module '@material-ui/core/es/NoSsr/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/NoSsr'>; +} +declare module '@material-ui/core/es/NoSsr/NoSsr.js' { + declare module.exports: $Exports<'@material-ui/core/es/NoSsr/NoSsr'>; +} +declare module '@material-ui/core/es/OutlinedInput/index' { + declare module.exports: $Exports<'@material-ui/core/es/OutlinedInput'>; +} +declare module '@material-ui/core/es/OutlinedInput/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/OutlinedInput'>; +} +declare module '@material-ui/core/es/OutlinedInput/NotchedOutline.js' { + declare module.exports: $Exports<'@material-ui/core/es/OutlinedInput/NotchedOutline'>; +} +declare module '@material-ui/core/es/OutlinedInput/OutlinedInput.js' { + declare module.exports: $Exports<'@material-ui/core/es/OutlinedInput/OutlinedInput'>; +} +declare module '@material-ui/core/es/Paper/index' { + declare module.exports: $Exports<'@material-ui/core/es/Paper'>; +} +declare module '@material-ui/core/es/Paper/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Paper'>; +} +declare module '@material-ui/core/es/Paper/Paper.js' { + declare module.exports: $Exports<'@material-ui/core/es/Paper/Paper'>; +} +declare module '@material-ui/core/es/Popover/index' { + declare module.exports: $Exports<'@material-ui/core/es/Popover'>; +} +declare module '@material-ui/core/es/Popover/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Popover'>; +} +declare module '@material-ui/core/es/Popover/Popover.js' { + declare module.exports: $Exports<'@material-ui/core/es/Popover/Popover'>; +} +declare module '@material-ui/core/es/Popper/index' { + declare module.exports: $Exports<'@material-ui/core/es/Popper'>; +} +declare module '@material-ui/core/es/Popper/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Popper'>; +} +declare module '@material-ui/core/es/Popper/Popper.js' { + declare module.exports: $Exports<'@material-ui/core/es/Popper/Popper'>; +} +declare module '@material-ui/core/es/Portal/index' { + declare module.exports: $Exports<'@material-ui/core/es/Portal'>; +} +declare module '@material-ui/core/es/Portal/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Portal'>; +} +declare module '@material-ui/core/es/Portal/Portal.js' { + declare module.exports: $Exports<'@material-ui/core/es/Portal/Portal'>; +} +declare module '@material-ui/core/es/Radio/index' { + declare module.exports: $Exports<'@material-ui/core/es/Radio'>; +} +declare module '@material-ui/core/es/Radio/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Radio'>; +} +declare module '@material-ui/core/es/Radio/Radio.js' { + declare module.exports: $Exports<'@material-ui/core/es/Radio/Radio'>; +} +declare module '@material-ui/core/es/Radio/RadioButtonIcon.js' { + declare module.exports: $Exports<'@material-ui/core/es/Radio/RadioButtonIcon'>; +} +declare module '@material-ui/core/es/RadioGroup/index' { + declare module.exports: $Exports<'@material-ui/core/es/RadioGroup'>; +} +declare module '@material-ui/core/es/RadioGroup/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/RadioGroup'>; +} +declare module '@material-ui/core/es/RadioGroup/RadioGroup.js' { + declare module.exports: $Exports<'@material-ui/core/es/RadioGroup/RadioGroup'>; +} +declare module '@material-ui/core/es/RadioGroup/RadioGroupContext.js' { + declare module.exports: $Exports<'@material-ui/core/es/RadioGroup/RadioGroupContext'>; +} +declare module '@material-ui/core/es/RootRef/index' { + declare module.exports: $Exports<'@material-ui/core/es/RootRef'>; +} +declare module '@material-ui/core/es/RootRef/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/RootRef'>; +} +declare module '@material-ui/core/es/RootRef/RootRef.js' { + declare module.exports: $Exports<'@material-ui/core/es/RootRef/RootRef'>; +} +declare module '@material-ui/core/es/Select/index' { + declare module.exports: $Exports<'@material-ui/core/es/Select'>; +} +declare module '@material-ui/core/es/Select/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Select'>; +} +declare module '@material-ui/core/es/Select/Select.js' { + declare module.exports: $Exports<'@material-ui/core/es/Select/Select'>; +} +declare module '@material-ui/core/es/Select/SelectInput.js' { + declare module.exports: $Exports<'@material-ui/core/es/Select/SelectInput'>; +} +declare module '@material-ui/core/es/Slide/index' { + declare module.exports: $Exports<'@material-ui/core/es/Slide'>; +} +declare module '@material-ui/core/es/Slide/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Slide'>; +} +declare module '@material-ui/core/es/Slide/Slide.js' { + declare module.exports: $Exports<'@material-ui/core/es/Slide/Slide'>; +} +declare module '@material-ui/core/es/Slider/index' { + declare module.exports: $Exports<'@material-ui/core/es/Slider'>; +} +declare module '@material-ui/core/es/Slider/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Slider'>; +} +declare module '@material-ui/core/es/Slider/Slider.js' { + declare module.exports: $Exports<'@material-ui/core/es/Slider/Slider'>; +} +declare module '@material-ui/core/es/Slider/ValueLabel.js' { + declare module.exports: $Exports<'@material-ui/core/es/Slider/ValueLabel'>; +} +declare module '@material-ui/core/es/Snackbar/index' { + declare module.exports: $Exports<'@material-ui/core/es/Snackbar'>; +} +declare module '@material-ui/core/es/Snackbar/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Snackbar'>; +} +declare module '@material-ui/core/es/Snackbar/Snackbar.js' { + declare module.exports: $Exports<'@material-ui/core/es/Snackbar/Snackbar'>; +} +declare module '@material-ui/core/es/SnackbarContent/index' { + declare module.exports: $Exports<'@material-ui/core/es/SnackbarContent'>; +} +declare module '@material-ui/core/es/SnackbarContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/SnackbarContent'>; +} +declare module '@material-ui/core/es/SnackbarContent/SnackbarContent.js' { + declare module.exports: $Exports<'@material-ui/core/es/SnackbarContent/SnackbarContent'>; +} +declare module '@material-ui/core/es/Step/index' { + declare module.exports: $Exports<'@material-ui/core/es/Step'>; +} +declare module '@material-ui/core/es/Step/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Step'>; +} +declare module '@material-ui/core/es/Step/Step.js' { + declare module.exports: $Exports<'@material-ui/core/es/Step/Step'>; +} +declare module '@material-ui/core/es/StepButton/index' { + declare module.exports: $Exports<'@material-ui/core/es/StepButton'>; +} +declare module '@material-ui/core/es/StepButton/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepButton'>; +} +declare module '@material-ui/core/es/StepButton/StepButton.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepButton/StepButton'>; +} +declare module '@material-ui/core/es/StepConnector/index' { + declare module.exports: $Exports<'@material-ui/core/es/StepConnector'>; +} +declare module '@material-ui/core/es/StepConnector/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepConnector'>; +} +declare module '@material-ui/core/es/StepConnector/StepConnector.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepConnector/StepConnector'>; +} +declare module '@material-ui/core/es/StepContent/index' { + declare module.exports: $Exports<'@material-ui/core/es/StepContent'>; +} +declare module '@material-ui/core/es/StepContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepContent'>; +} +declare module '@material-ui/core/es/StepContent/StepContent.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepContent/StepContent'>; +} +declare module '@material-ui/core/es/StepIcon/index' { + declare module.exports: $Exports<'@material-ui/core/es/StepIcon'>; +} +declare module '@material-ui/core/es/StepIcon/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepIcon'>; +} +declare module '@material-ui/core/es/StepIcon/StepIcon.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepIcon/StepIcon'>; +} +declare module '@material-ui/core/es/StepLabel/index' { + declare module.exports: $Exports<'@material-ui/core/es/StepLabel'>; +} +declare module '@material-ui/core/es/StepLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepLabel'>; +} +declare module '@material-ui/core/es/StepLabel/StepLabel.js' { + declare module.exports: $Exports<'@material-ui/core/es/StepLabel/StepLabel'>; +} +declare module '@material-ui/core/es/Stepper/index' { + declare module.exports: $Exports<'@material-ui/core/es/Stepper'>; +} +declare module '@material-ui/core/es/Stepper/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Stepper'>; +} +declare module '@material-ui/core/es/Stepper/Stepper.js' { + declare module.exports: $Exports<'@material-ui/core/es/Stepper/Stepper'>; +} +declare module '@material-ui/core/es/styles/colorManipulator.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/colorManipulator'>; +} +declare module '@material-ui/core/es/styles/createBreakpoints.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/createBreakpoints'>; +} +declare module '@material-ui/core/es/styles/createMixins.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/createMixins'>; +} +declare module '@material-ui/core/es/styles/createMuiTheme.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/createMuiTheme'>; +} +declare module '@material-ui/core/es/styles/createPalette.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/createPalette'>; +} +declare module '@material-ui/core/es/styles/createSpacing.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/createSpacing'>; +} +declare module '@material-ui/core/es/styles/createStyles.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/createStyles'>; +} +declare module '@material-ui/core/es/styles/createTypography.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/createTypography'>; +} +declare module '@material-ui/core/es/styles/cssUtils.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/cssUtils'>; +} +declare module '@material-ui/core/es/styles/defaultTheme.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/defaultTheme'>; +} +declare module '@material-ui/core/es/styles/index' { + declare module.exports: $Exports<'@material-ui/core/es/styles'>; +} +declare module '@material-ui/core/es/styles/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles'>; +} +declare module '@material-ui/core/es/styles/makeStyles.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/makeStyles'>; +} +declare module '@material-ui/core/es/styles/MuiThemeProvider.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/MuiThemeProvider'>; +} +declare module '@material-ui/core/es/styles/responsiveFontSizes.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/responsiveFontSizes'>; +} +declare module '@material-ui/core/es/styles/shadows.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/shadows'>; +} +declare module '@material-ui/core/es/styles/shape.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/shape'>; +} +declare module '@material-ui/core/es/styles/styled.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/styled'>; +} +declare module '@material-ui/core/es/styles/transitions.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/transitions'>; +} +declare module '@material-ui/core/es/styles/useTheme.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/useTheme'>; +} +declare module '@material-ui/core/es/styles/withStyles.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/withStyles'>; +} +declare module '@material-ui/core/es/styles/withTheme.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/withTheme'>; +} +declare module '@material-ui/core/es/styles/zIndex.js' { + declare module.exports: $Exports<'@material-ui/core/es/styles/zIndex'>; +} +declare module '@material-ui/core/es/SvgIcon/index' { + declare module.exports: $Exports<'@material-ui/core/es/SvgIcon'>; +} +declare module '@material-ui/core/es/SvgIcon/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/SvgIcon'>; +} +declare module '@material-ui/core/es/SvgIcon/SvgIcon.js' { + declare module.exports: $Exports<'@material-ui/core/es/SvgIcon/SvgIcon'>; +} +declare module '@material-ui/core/es/SwipeableDrawer/index' { + declare module.exports: $Exports<'@material-ui/core/es/SwipeableDrawer'>; +} +declare module '@material-ui/core/es/SwipeableDrawer/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/SwipeableDrawer'>; +} +declare module '@material-ui/core/es/SwipeableDrawer/SwipeableDrawer.js' { + declare module.exports: $Exports<'@material-ui/core/es/SwipeableDrawer/SwipeableDrawer'>; +} +declare module '@material-ui/core/es/SwipeableDrawer/SwipeArea.js' { + declare module.exports: $Exports<'@material-ui/core/es/SwipeableDrawer/SwipeArea'>; +} +declare module '@material-ui/core/es/Switch/index' { + declare module.exports: $Exports<'@material-ui/core/es/Switch'>; +} +declare module '@material-ui/core/es/Switch/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Switch'>; +} +declare module '@material-ui/core/es/Switch/Switch.js' { + declare module.exports: $Exports<'@material-ui/core/es/Switch/Switch'>; +} +declare module '@material-ui/core/es/Tab/index' { + declare module.exports: $Exports<'@material-ui/core/es/Tab'>; +} +declare module '@material-ui/core/es/Tab/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Tab'>; +} +declare module '@material-ui/core/es/Tab/Tab.js' { + declare module.exports: $Exports<'@material-ui/core/es/Tab/Tab'>; +} +declare module '@material-ui/core/es/Table/index' { + declare module.exports: $Exports<'@material-ui/core/es/Table'>; +} +declare module '@material-ui/core/es/Table/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Table'>; +} +declare module '@material-ui/core/es/Table/Table.js' { + declare module.exports: $Exports<'@material-ui/core/es/Table/Table'>; +} +declare module '@material-ui/core/es/Table/TableContext.js' { + declare module.exports: $Exports<'@material-ui/core/es/Table/TableContext'>; +} +declare module '@material-ui/core/es/Table/Tablelvl2Context.js' { + declare module.exports: $Exports<'@material-ui/core/es/Table/Tablelvl2Context'>; +} +declare module '@material-ui/core/es/TableBody/index' { + declare module.exports: $Exports<'@material-ui/core/es/TableBody'>; +} +declare module '@material-ui/core/es/TableBody/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableBody'>; +} +declare module '@material-ui/core/es/TableBody/TableBody.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableBody/TableBody'>; +} +declare module '@material-ui/core/es/TableCell/index' { + declare module.exports: $Exports<'@material-ui/core/es/TableCell'>; +} +declare module '@material-ui/core/es/TableCell/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableCell'>; +} +declare module '@material-ui/core/es/TableCell/TableCell.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableCell/TableCell'>; +} +declare module '@material-ui/core/es/TableFooter/index' { + declare module.exports: $Exports<'@material-ui/core/es/TableFooter'>; +} +declare module '@material-ui/core/es/TableFooter/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableFooter'>; +} +declare module '@material-ui/core/es/TableFooter/TableFooter.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableFooter/TableFooter'>; +} +declare module '@material-ui/core/es/TableHead/index' { + declare module.exports: $Exports<'@material-ui/core/es/TableHead'>; +} +declare module '@material-ui/core/es/TableHead/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableHead'>; +} +declare module '@material-ui/core/es/TableHead/TableHead.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableHead/TableHead'>; +} +declare module '@material-ui/core/es/TablePagination/index' { + declare module.exports: $Exports<'@material-ui/core/es/TablePagination'>; +} +declare module '@material-ui/core/es/TablePagination/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/TablePagination'>; +} +declare module '@material-ui/core/es/TablePagination/TablePagination.js' { + declare module.exports: $Exports<'@material-ui/core/es/TablePagination/TablePagination'>; +} +declare module '@material-ui/core/es/TablePagination/TablePaginationActions.js' { + declare module.exports: $Exports<'@material-ui/core/es/TablePagination/TablePaginationActions'>; +} +declare module '@material-ui/core/es/TableRow/index' { + declare module.exports: $Exports<'@material-ui/core/es/TableRow'>; +} +declare module '@material-ui/core/es/TableRow/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableRow'>; +} +declare module '@material-ui/core/es/TableRow/TableRow.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableRow/TableRow'>; +} +declare module '@material-ui/core/es/TableSortLabel/index' { + declare module.exports: $Exports<'@material-ui/core/es/TableSortLabel'>; +} +declare module '@material-ui/core/es/TableSortLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableSortLabel'>; +} +declare module '@material-ui/core/es/TableSortLabel/TableSortLabel.js' { + declare module.exports: $Exports<'@material-ui/core/es/TableSortLabel/TableSortLabel'>; +} +declare module '@material-ui/core/es/Tabs/index' { + declare module.exports: $Exports<'@material-ui/core/es/Tabs'>; +} +declare module '@material-ui/core/es/Tabs/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Tabs'>; +} +declare module '@material-ui/core/es/Tabs/ScrollbarSize.js' { + declare module.exports: $Exports<'@material-ui/core/es/Tabs/ScrollbarSize'>; +} +declare module '@material-ui/core/es/Tabs/TabIndicator.js' { + declare module.exports: $Exports<'@material-ui/core/es/Tabs/TabIndicator'>; +} +declare module '@material-ui/core/es/Tabs/Tabs.js' { + declare module.exports: $Exports<'@material-ui/core/es/Tabs/Tabs'>; +} +declare module '@material-ui/core/es/Tabs/TabScrollButton.js' { + declare module.exports: $Exports<'@material-ui/core/es/Tabs/TabScrollButton'>; +} +declare module '@material-ui/core/es/test-utils/createMount.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/createMount'>; +} +declare module '@material-ui/core/es/test-utils/createRender.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/createRender'>; +} +declare module '@material-ui/core/es/test-utils/createShallow.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/createShallow'>; +} +declare module '@material-ui/core/es/test-utils/describeConformance.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/describeConformance'>; +} +declare module '@material-ui/core/es/test-utils/findOutermostIntrinsic.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/findOutermostIntrinsic'>; +} +declare module '@material-ui/core/es/test-utils/getClasses.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/getClasses'>; +} +declare module '@material-ui/core/es/test-utils/index' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils'>; +} +declare module '@material-ui/core/es/test-utils/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils'>; +} +declare module '@material-ui/core/es/test-utils/RenderMode.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/RenderMode'>; +} +declare module '@material-ui/core/es/test-utils/testRef.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/testRef'>; +} +declare module '@material-ui/core/es/test-utils/until.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/until'>; +} +declare module '@material-ui/core/es/test-utils/unwrap.js' { + declare module.exports: $Exports<'@material-ui/core/es/test-utils/unwrap'>; +} +declare module '@material-ui/core/es/TextareaAutosize/index' { + declare module.exports: $Exports<'@material-ui/core/es/TextareaAutosize'>; +} +declare module '@material-ui/core/es/TextareaAutosize/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/TextareaAutosize'>; +} +declare module '@material-ui/core/es/TextareaAutosize/TextareaAutosize.js' { + declare module.exports: $Exports<'@material-ui/core/es/TextareaAutosize/TextareaAutosize'>; +} +declare module '@material-ui/core/es/TextField/index' { + declare module.exports: $Exports<'@material-ui/core/es/TextField'>; +} +declare module '@material-ui/core/es/TextField/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/TextField'>; +} +declare module '@material-ui/core/es/TextField/TextField.js' { + declare module.exports: $Exports<'@material-ui/core/es/TextField/TextField'>; +} +declare module '@material-ui/core/es/Toolbar/index' { + declare module.exports: $Exports<'@material-ui/core/es/Toolbar'>; +} +declare module '@material-ui/core/es/Toolbar/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Toolbar'>; +} +declare module '@material-ui/core/es/Toolbar/Toolbar.js' { + declare module.exports: $Exports<'@material-ui/core/es/Toolbar/Toolbar'>; +} +declare module '@material-ui/core/es/Tooltip/index' { + declare module.exports: $Exports<'@material-ui/core/es/Tooltip'>; +} +declare module '@material-ui/core/es/Tooltip/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Tooltip'>; +} +declare module '@material-ui/core/es/Tooltip/Tooltip.js' { + declare module.exports: $Exports<'@material-ui/core/es/Tooltip/Tooltip'>; +} +declare module '@material-ui/core/es/transitions/utils.js' { + declare module.exports: $Exports<'@material-ui/core/es/transitions/utils'>; +} +declare module '@material-ui/core/es/Typography/index' { + declare module.exports: $Exports<'@material-ui/core/es/Typography'>; +} +declare module '@material-ui/core/es/Typography/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Typography'>; +} +declare module '@material-ui/core/es/Typography/Typography.js' { + declare module.exports: $Exports<'@material-ui/core/es/Typography/Typography'>; +} +declare module '@material-ui/core/es/useMediaQuery/index' { + declare module.exports: $Exports<'@material-ui/core/es/useMediaQuery'>; +} +declare module '@material-ui/core/es/useMediaQuery/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/useMediaQuery'>; +} +declare module '@material-ui/core/es/useMediaQuery/useMediaQuery.js' { + declare module.exports: $Exports<'@material-ui/core/es/useMediaQuery/useMediaQuery'>; +} +declare module '@material-ui/core/es/useMediaQuery/useMediaQueryTheme.js' { + declare module.exports: $Exports<'@material-ui/core/es/useMediaQuery/useMediaQueryTheme'>; +} +declare module '@material-ui/core/es/useScrollTrigger/index' { + declare module.exports: $Exports<'@material-ui/core/es/useScrollTrigger'>; +} +declare module '@material-ui/core/es/useScrollTrigger/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/useScrollTrigger'>; +} +declare module '@material-ui/core/es/useScrollTrigger/useScrollTrigger.js' { + declare module.exports: $Exports<'@material-ui/core/es/useScrollTrigger/useScrollTrigger'>; +} +declare module '@material-ui/core/es/utils/capitalize.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/capitalize'>; +} +declare module '@material-ui/core/es/utils/createChainedFunction.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/createChainedFunction'>; +} +declare module '@material-ui/core/es/utils/debounce.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/debounce'>; +} +declare module '@material-ui/core/es/utils/deprecatedPropType.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/deprecatedPropType'>; +} +declare module '@material-ui/core/es/utils/focusVisible.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/focusVisible'>; +} +declare module '@material-ui/core/es/utils/getScrollbarSize.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/getScrollbarSize'>; +} +declare module '@material-ui/core/es/utils/index' { + declare module.exports: $Exports<'@material-ui/core/es/utils'>; +} +declare module '@material-ui/core/es/utils/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils'>; +} +declare module '@material-ui/core/es/utils/isMuiElement.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/isMuiElement'>; +} +declare module '@material-ui/core/es/utils/ownerDocument.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/ownerDocument'>; +} +declare module '@material-ui/core/es/utils/ownerWindow.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/ownerWindow'>; +} +declare module '@material-ui/core/es/utils/requirePropFactory.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/requirePropFactory'>; +} +declare module '@material-ui/core/es/utils/setRef.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/setRef'>; +} +declare module '@material-ui/core/es/utils/unsupportedProp.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/unsupportedProp'>; +} +declare module '@material-ui/core/es/utils/useEventCallback.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/useEventCallback'>; +} +declare module '@material-ui/core/es/utils/useForkRef.js' { + declare module.exports: $Exports<'@material-ui/core/es/utils/useForkRef'>; +} +declare module '@material-ui/core/es/withMobileDialog/index' { + declare module.exports: $Exports<'@material-ui/core/es/withMobileDialog'>; +} +declare module '@material-ui/core/es/withMobileDialog/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/withMobileDialog'>; +} +declare module '@material-ui/core/es/withMobileDialog/withMobileDialog.js' { + declare module.exports: $Exports<'@material-ui/core/es/withMobileDialog/withMobileDialog'>; +} +declare module '@material-ui/core/es/withWidth/index' { + declare module.exports: $Exports<'@material-ui/core/es/withWidth'>; +} +declare module '@material-ui/core/es/withWidth/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/withWidth'>; +} +declare module '@material-ui/core/es/withWidth/withWidth.js' { + declare module.exports: $Exports<'@material-ui/core/es/withWidth/withWidth'>; +} +declare module '@material-ui/core/es/Zoom/index' { + declare module.exports: $Exports<'@material-ui/core/es/Zoom'>; +} +declare module '@material-ui/core/es/Zoom/index.js' { + declare module.exports: $Exports<'@material-ui/core/es/Zoom'>; +} +declare module '@material-ui/core/es/Zoom/Zoom.js' { + declare module.exports: $Exports<'@material-ui/core/es/Zoom/Zoom'>; +} +declare module '@material-ui/core/esm/AppBar/AppBar.js' { + declare module.exports: $Exports<'@material-ui/core/esm/AppBar/AppBar'>; +} +declare module '@material-ui/core/esm/AppBar/index' { + declare module.exports: $Exports<'@material-ui/core/esm/AppBar'>; +} +declare module '@material-ui/core/esm/AppBar/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/AppBar'>; +} +declare module '@material-ui/core/esm/Avatar/Avatar.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Avatar/Avatar'>; +} +declare module '@material-ui/core/esm/Avatar/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Avatar'>; +} +declare module '@material-ui/core/esm/Avatar/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Avatar'>; +} +declare module '@material-ui/core/esm/Backdrop/Backdrop.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Backdrop/Backdrop'>; +} +declare module '@material-ui/core/esm/Backdrop/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Backdrop'>; +} +declare module '@material-ui/core/esm/Backdrop/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Backdrop'>; +} +declare module '@material-ui/core/esm/Badge/Badge.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Badge/Badge'>; +} +declare module '@material-ui/core/esm/Badge/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Badge'>; +} +declare module '@material-ui/core/esm/Badge/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Badge'>; +} +declare module '@material-ui/core/esm/BottomNavigation/BottomNavigation.js' { + declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigation/BottomNavigation'>; +} +declare module '@material-ui/core/esm/BottomNavigation/index' { + declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigation'>; +} +declare module '@material-ui/core/esm/BottomNavigation/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigation'>; +} +declare module '@material-ui/core/esm/BottomNavigationAction/BottomNavigationAction.js' { + declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigationAction/BottomNavigationAction'>; +} +declare module '@material-ui/core/esm/BottomNavigationAction/index' { + declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigationAction'>; +} +declare module '@material-ui/core/esm/BottomNavigationAction/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/BottomNavigationAction'>; +} +declare module '@material-ui/core/esm/Box/Box.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Box/Box'>; +} +declare module '@material-ui/core/esm/Box/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Box'>; +} +declare module '@material-ui/core/esm/Box/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Box'>; +} +declare module '@material-ui/core/esm/Breadcrumbs/BreadcrumbCollapsed.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Breadcrumbs/BreadcrumbCollapsed'>; +} +declare module '@material-ui/core/esm/Breadcrumbs/Breadcrumbs.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Breadcrumbs/Breadcrumbs'>; +} +declare module '@material-ui/core/esm/Breadcrumbs/BreadcrumbSeparator.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Breadcrumbs/BreadcrumbSeparator'>; +} +declare module '@material-ui/core/esm/Breadcrumbs/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Breadcrumbs'>; +} +declare module '@material-ui/core/esm/Breadcrumbs/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Breadcrumbs'>; +} +declare module '@material-ui/core/esm/Button/Button.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Button/Button'>; +} +declare module '@material-ui/core/esm/Button/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Button'>; +} +declare module '@material-ui/core/esm/Button/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Button'>; +} +declare module '@material-ui/core/esm/ButtonBase/ButtonBase.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase/ButtonBase'>; +} +declare module '@material-ui/core/esm/ButtonBase/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase'>; +} +declare module '@material-ui/core/esm/ButtonBase/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase'>; +} +declare module '@material-ui/core/esm/ButtonBase/Ripple.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase/Ripple'>; +} +declare module '@material-ui/core/esm/ButtonBase/TouchRipple.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ButtonBase/TouchRipple'>; +} +declare module '@material-ui/core/esm/ButtonGroup/ButtonGroup.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ButtonGroup/ButtonGroup'>; +} +declare module '@material-ui/core/esm/ButtonGroup/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ButtonGroup'>; +} +declare module '@material-ui/core/esm/ButtonGroup/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ButtonGroup'>; +} +declare module '@material-ui/core/esm/Card/Card.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Card/Card'>; +} +declare module '@material-ui/core/esm/Card/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Card'>; +} +declare module '@material-ui/core/esm/Card/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Card'>; +} +declare module '@material-ui/core/esm/CardActionArea/CardActionArea.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardActionArea/CardActionArea'>; +} +declare module '@material-ui/core/esm/CardActionArea/index' { + declare module.exports: $Exports<'@material-ui/core/esm/CardActionArea'>; +} +declare module '@material-ui/core/esm/CardActionArea/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardActionArea'>; +} +declare module '@material-ui/core/esm/CardActions/CardActions.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardActions/CardActions'>; +} +declare module '@material-ui/core/esm/CardActions/index' { + declare module.exports: $Exports<'@material-ui/core/esm/CardActions'>; +} +declare module '@material-ui/core/esm/CardActions/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardActions'>; +} +declare module '@material-ui/core/esm/CardContent/CardContent.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardContent/CardContent'>; +} +declare module '@material-ui/core/esm/CardContent/index' { + declare module.exports: $Exports<'@material-ui/core/esm/CardContent'>; +} +declare module '@material-ui/core/esm/CardContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardContent'>; +} +declare module '@material-ui/core/esm/CardHeader/CardHeader.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardHeader/CardHeader'>; +} +declare module '@material-ui/core/esm/CardHeader/index' { + declare module.exports: $Exports<'@material-ui/core/esm/CardHeader'>; +} +declare module '@material-ui/core/esm/CardHeader/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardHeader'>; +} +declare module '@material-ui/core/esm/CardMedia/CardMedia.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardMedia/CardMedia'>; +} +declare module '@material-ui/core/esm/CardMedia/index' { + declare module.exports: $Exports<'@material-ui/core/esm/CardMedia'>; +} +declare module '@material-ui/core/esm/CardMedia/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CardMedia'>; +} +declare module '@material-ui/core/esm/Checkbox/Checkbox.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Checkbox/Checkbox'>; +} +declare module '@material-ui/core/esm/Checkbox/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Checkbox'>; +} +declare module '@material-ui/core/esm/Checkbox/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Checkbox'>; +} +declare module '@material-ui/core/esm/Chip/Chip.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Chip/Chip'>; +} +declare module '@material-ui/core/esm/Chip/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Chip'>; +} +declare module '@material-ui/core/esm/Chip/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Chip'>; +} +declare module '@material-ui/core/esm/CircularProgress/CircularProgress.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CircularProgress/CircularProgress'>; +} +declare module '@material-ui/core/esm/CircularProgress/index' { + declare module.exports: $Exports<'@material-ui/core/esm/CircularProgress'>; +} +declare module '@material-ui/core/esm/CircularProgress/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CircularProgress'>; +} +declare module '@material-ui/core/esm/ClickAwayListener/ClickAwayListener.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ClickAwayListener/ClickAwayListener'>; +} +declare module '@material-ui/core/esm/ClickAwayListener/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ClickAwayListener'>; +} +declare module '@material-ui/core/esm/ClickAwayListener/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ClickAwayListener'>; +} +declare module '@material-ui/core/esm/Collapse/Collapse.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Collapse/Collapse'>; +} +declare module '@material-ui/core/esm/Collapse/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Collapse'>; +} +declare module '@material-ui/core/esm/Collapse/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Collapse'>; +} +declare module '@material-ui/core/esm/colors/amber.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/amber'>; +} +declare module '@material-ui/core/esm/colors/blue.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/blue'>; +} +declare module '@material-ui/core/esm/colors/blueGrey.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/blueGrey'>; +} +declare module '@material-ui/core/esm/colors/brown.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/brown'>; +} +declare module '@material-ui/core/esm/colors/common.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/common'>; +} +declare module '@material-ui/core/esm/colors/cyan.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/cyan'>; +} +declare module '@material-ui/core/esm/colors/deepOrange.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/deepOrange'>; +} +declare module '@material-ui/core/esm/colors/deepPurple.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/deepPurple'>; +} +declare module '@material-ui/core/esm/colors/green.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/green'>; +} +declare module '@material-ui/core/esm/colors/grey.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/grey'>; +} +declare module '@material-ui/core/esm/colors/index' { + declare module.exports: $Exports<'@material-ui/core/esm/colors'>; +} +declare module '@material-ui/core/esm/colors/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors'>; +} +declare module '@material-ui/core/esm/colors/indigo.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/indigo'>; +} +declare module '@material-ui/core/esm/colors/lightBlue.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/lightBlue'>; +} +declare module '@material-ui/core/esm/colors/lightGreen.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/lightGreen'>; +} +declare module '@material-ui/core/esm/colors/lime.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/lime'>; +} +declare module '@material-ui/core/esm/colors/orange.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/orange'>; +} +declare module '@material-ui/core/esm/colors/pink.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/pink'>; +} +declare module '@material-ui/core/esm/colors/purple.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/purple'>; +} +declare module '@material-ui/core/esm/colors/red.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/red'>; +} +declare module '@material-ui/core/esm/colors/teal.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/teal'>; +} +declare module '@material-ui/core/esm/colors/yellow.js' { + declare module.exports: $Exports<'@material-ui/core/esm/colors/yellow'>; +} +declare module '@material-ui/core/esm/Container/Container.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Container/Container'>; +} +declare module '@material-ui/core/esm/Container/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Container'>; +} +declare module '@material-ui/core/esm/Container/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Container'>; +} +declare module '@material-ui/core/esm/CssBaseline/CssBaseline.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CssBaseline/CssBaseline'>; +} +declare module '@material-ui/core/esm/CssBaseline/index' { + declare module.exports: $Exports<'@material-ui/core/esm/CssBaseline'>; +} +declare module '@material-ui/core/esm/CssBaseline/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/CssBaseline'>; +} +declare module '@material-ui/core/esm/Dialog/Dialog.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Dialog/Dialog'>; +} +declare module '@material-ui/core/esm/Dialog/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Dialog'>; +} +declare module '@material-ui/core/esm/Dialog/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Dialog'>; +} +declare module '@material-ui/core/esm/DialogActions/DialogActions.js' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogActions/DialogActions'>; +} +declare module '@material-ui/core/esm/DialogActions/index' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogActions'>; +} +declare module '@material-ui/core/esm/DialogActions/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogActions'>; +} +declare module '@material-ui/core/esm/DialogContent/DialogContent.js' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogContent/DialogContent'>; +} +declare module '@material-ui/core/esm/DialogContent/index' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogContent'>; +} +declare module '@material-ui/core/esm/DialogContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogContent'>; +} +declare module '@material-ui/core/esm/DialogContentText/DialogContentText.js' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogContentText/DialogContentText'>; +} +declare module '@material-ui/core/esm/DialogContentText/index' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogContentText'>; +} +declare module '@material-ui/core/esm/DialogContentText/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogContentText'>; +} +declare module '@material-ui/core/esm/DialogTitle/DialogTitle.js' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogTitle/DialogTitle'>; +} +declare module '@material-ui/core/esm/DialogTitle/index' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogTitle'>; +} +declare module '@material-ui/core/esm/DialogTitle/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/DialogTitle'>; +} +declare module '@material-ui/core/esm/Divider/Divider.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Divider/Divider'>; +} +declare module '@material-ui/core/esm/Divider/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Divider'>; +} +declare module '@material-ui/core/esm/Divider/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Divider'>; +} +declare module '@material-ui/core/esm/Drawer/Drawer.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Drawer/Drawer'>; +} +declare module '@material-ui/core/esm/Drawer/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Drawer'>; +} +declare module '@material-ui/core/esm/Drawer/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Drawer'>; +} +declare module '@material-ui/core/esm/ExpansionPanel/ExpansionPanel.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanel/ExpansionPanel'>; +} +declare module '@material-ui/core/esm/ExpansionPanel/ExpansionPanelContext.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanel/ExpansionPanelContext'>; +} +declare module '@material-ui/core/esm/ExpansionPanel/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanel'>; +} +declare module '@material-ui/core/esm/ExpansionPanel/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanel'>; +} +declare module '@material-ui/core/esm/ExpansionPanelActions/ExpansionPanelActions.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelActions/ExpansionPanelActions'>; +} +declare module '@material-ui/core/esm/ExpansionPanelActions/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelActions'>; +} +declare module '@material-ui/core/esm/ExpansionPanelActions/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelActions'>; +} +declare module '@material-ui/core/esm/ExpansionPanelDetails/ExpansionPanelDetails.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelDetails/ExpansionPanelDetails'>; +} +declare module '@material-ui/core/esm/ExpansionPanelDetails/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelDetails'>; +} +declare module '@material-ui/core/esm/ExpansionPanelDetails/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelDetails'>; +} +declare module '@material-ui/core/esm/ExpansionPanelSummary/ExpansionPanelSummary.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelSummary/ExpansionPanelSummary'>; +} +declare module '@material-ui/core/esm/ExpansionPanelSummary/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelSummary'>; +} +declare module '@material-ui/core/esm/ExpansionPanelSummary/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ExpansionPanelSummary'>; +} +declare module '@material-ui/core/esm/Fab/Fab.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Fab/Fab'>; +} +declare module '@material-ui/core/esm/Fab/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Fab'>; +} +declare module '@material-ui/core/esm/Fab/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Fab'>; +} +declare module '@material-ui/core/esm/Fade/Fade.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Fade/Fade'>; +} +declare module '@material-ui/core/esm/Fade/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Fade'>; +} +declare module '@material-ui/core/esm/Fade/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Fade'>; +} +declare module '@material-ui/core/esm/FilledInput/FilledInput.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FilledInput/FilledInput'>; +} +declare module '@material-ui/core/esm/FilledInput/index' { + declare module.exports: $Exports<'@material-ui/core/esm/FilledInput'>; +} +declare module '@material-ui/core/esm/FilledInput/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FilledInput'>; +} +declare module '@material-ui/core/esm/FormControl/FormControl.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormControl/FormControl'>; +} +declare module '@material-ui/core/esm/FormControl/FormControlContext.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormControl/FormControlContext'>; +} +declare module '@material-ui/core/esm/FormControl/formControlState.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormControl/formControlState'>; +} +declare module '@material-ui/core/esm/FormControl/index' { + declare module.exports: $Exports<'@material-ui/core/esm/FormControl'>; +} +declare module '@material-ui/core/esm/FormControl/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormControl'>; +} +declare module '@material-ui/core/esm/FormControl/useFormControl.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormControl/useFormControl'>; +} +declare module '@material-ui/core/esm/FormControlLabel/FormControlLabel.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormControlLabel/FormControlLabel'>; +} +declare module '@material-ui/core/esm/FormControlLabel/index' { + declare module.exports: $Exports<'@material-ui/core/esm/FormControlLabel'>; +} +declare module '@material-ui/core/esm/FormControlLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormControlLabel'>; +} +declare module '@material-ui/core/esm/FormGroup/FormGroup.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormGroup/FormGroup'>; +} +declare module '@material-ui/core/esm/FormGroup/index' { + declare module.exports: $Exports<'@material-ui/core/esm/FormGroup'>; +} +declare module '@material-ui/core/esm/FormGroup/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormGroup'>; +} +declare module '@material-ui/core/esm/FormHelperText/FormHelperText.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormHelperText/FormHelperText'>; +} +declare module '@material-ui/core/esm/FormHelperText/index' { + declare module.exports: $Exports<'@material-ui/core/esm/FormHelperText'>; +} +declare module '@material-ui/core/esm/FormHelperText/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormHelperText'>; +} +declare module '@material-ui/core/esm/FormLabel/FormLabel.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormLabel/FormLabel'>; +} +declare module '@material-ui/core/esm/FormLabel/index' { + declare module.exports: $Exports<'@material-ui/core/esm/FormLabel'>; +} +declare module '@material-ui/core/esm/FormLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/FormLabel'>; +} +declare module '@material-ui/core/esm/Grid/Grid.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Grid/Grid'>; +} +declare module '@material-ui/core/esm/Grid/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Grid'>; +} +declare module '@material-ui/core/esm/Grid/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Grid'>; +} +declare module '@material-ui/core/esm/GridList/GridList.js' { + declare module.exports: $Exports<'@material-ui/core/esm/GridList/GridList'>; +} +declare module '@material-ui/core/esm/GridList/index' { + declare module.exports: $Exports<'@material-ui/core/esm/GridList'>; +} +declare module '@material-ui/core/esm/GridList/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/GridList'>; +} +declare module '@material-ui/core/esm/GridListTile/GridListTile.js' { + declare module.exports: $Exports<'@material-ui/core/esm/GridListTile/GridListTile'>; +} +declare module '@material-ui/core/esm/GridListTile/index' { + declare module.exports: $Exports<'@material-ui/core/esm/GridListTile'>; +} +declare module '@material-ui/core/esm/GridListTile/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/GridListTile'>; +} +declare module '@material-ui/core/esm/GridListTileBar/GridListTileBar.js' { + declare module.exports: $Exports<'@material-ui/core/esm/GridListTileBar/GridListTileBar'>; +} +declare module '@material-ui/core/esm/GridListTileBar/index' { + declare module.exports: $Exports<'@material-ui/core/esm/GridListTileBar'>; +} +declare module '@material-ui/core/esm/GridListTileBar/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/GridListTileBar'>; +} +declare module '@material-ui/core/esm/Grow/Grow.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Grow/Grow'>; +} +declare module '@material-ui/core/esm/Grow/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Grow'>; +} +declare module '@material-ui/core/esm/Grow/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Grow'>; +} +declare module '@material-ui/core/esm/Hidden/Hidden.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Hidden/Hidden'>; +} +declare module '@material-ui/core/esm/Hidden/HiddenCss.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Hidden/HiddenCss'>; +} +declare module '@material-ui/core/esm/Hidden/HiddenJs.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Hidden/HiddenJs'>; +} +declare module '@material-ui/core/esm/Hidden/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Hidden'>; +} +declare module '@material-ui/core/esm/Hidden/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Hidden'>; +} +declare module '@material-ui/core/esm/Icon/Icon.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Icon/Icon'>; +} +declare module '@material-ui/core/esm/Icon/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Icon'>; +} +declare module '@material-ui/core/esm/Icon/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Icon'>; +} +declare module '@material-ui/core/esm/IconButton/IconButton.js' { + declare module.exports: $Exports<'@material-ui/core/esm/IconButton/IconButton'>; +} +declare module '@material-ui/core/esm/IconButton/index' { + declare module.exports: $Exports<'@material-ui/core/esm/IconButton'>; +} +declare module '@material-ui/core/esm/IconButton/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/IconButton'>; +} +declare module '@material-ui/core/esm/index' { + declare module.exports: $Exports<'@material-ui/core/esm'>; +} +declare module '@material-ui/core/esm/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm'>; +} +declare module '@material-ui/core/esm/Input/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Input'>; +} +declare module '@material-ui/core/esm/Input/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Input'>; +} +declare module '@material-ui/core/esm/Input/Input.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Input/Input'>; +} +declare module '@material-ui/core/esm/InputAdornment/index' { + declare module.exports: $Exports<'@material-ui/core/esm/InputAdornment'>; +} +declare module '@material-ui/core/esm/InputAdornment/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/InputAdornment'>; +} +declare module '@material-ui/core/esm/InputAdornment/InputAdornment.js' { + declare module.exports: $Exports<'@material-ui/core/esm/InputAdornment/InputAdornment'>; +} +declare module '@material-ui/core/esm/InputBase/index' { + declare module.exports: $Exports<'@material-ui/core/esm/InputBase'>; +} +declare module '@material-ui/core/esm/InputBase/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/InputBase'>; +} +declare module '@material-ui/core/esm/InputBase/InputBase.js' { + declare module.exports: $Exports<'@material-ui/core/esm/InputBase/InputBase'>; +} +declare module '@material-ui/core/esm/InputBase/utils.js' { + declare module.exports: $Exports<'@material-ui/core/esm/InputBase/utils'>; +} +declare module '@material-ui/core/esm/InputLabel/index' { + declare module.exports: $Exports<'@material-ui/core/esm/InputLabel'>; +} +declare module '@material-ui/core/esm/InputLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/InputLabel'>; +} +declare module '@material-ui/core/esm/InputLabel/InputLabel.js' { + declare module.exports: $Exports<'@material-ui/core/esm/InputLabel/InputLabel'>; +} +declare module '@material-ui/core/esm/internal/animate.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/animate'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/ArrowDownward.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/ArrowDownward'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/ArrowDropDown.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/ArrowDropDown'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/Cancel.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/Cancel'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/CheckBox.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/CheckBox'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/CheckBoxOutlineBlank.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/CheckBoxOutlineBlank'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/CheckCircle.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/CheckCircle'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/createSvgIcon.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/createSvgIcon'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/IndeterminateCheckBox.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/IndeterminateCheckBox'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/KeyboardArrowLeft.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/KeyboardArrowLeft'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/KeyboardArrowRight.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/KeyboardArrowRight'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/MoreHoriz.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/MoreHoriz'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/RadioButtonChecked.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/RadioButtonChecked'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/RadioButtonUnchecked.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/RadioButtonUnchecked'>; +} +declare module '@material-ui/core/esm/internal/svg-icons/Warning.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/svg-icons/Warning'>; +} +declare module '@material-ui/core/esm/internal/SwitchBase.js' { + declare module.exports: $Exports<'@material-ui/core/esm/internal/SwitchBase'>; +} +declare module '@material-ui/core/esm/LinearProgress/index' { + declare module.exports: $Exports<'@material-ui/core/esm/LinearProgress'>; +} +declare module '@material-ui/core/esm/LinearProgress/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/LinearProgress'>; +} +declare module '@material-ui/core/esm/LinearProgress/LinearProgress.js' { + declare module.exports: $Exports<'@material-ui/core/esm/LinearProgress/LinearProgress'>; +} +declare module '@material-ui/core/esm/Link/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Link'>; +} +declare module '@material-ui/core/esm/Link/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Link'>; +} +declare module '@material-ui/core/esm/Link/Link.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Link/Link'>; +} +declare module '@material-ui/core/esm/List/index' { + declare module.exports: $Exports<'@material-ui/core/esm/List'>; +} +declare module '@material-ui/core/esm/List/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/List'>; +} +declare module '@material-ui/core/esm/List/List.js' { + declare module.exports: $Exports<'@material-ui/core/esm/List/List'>; +} +declare module '@material-ui/core/esm/List/ListContext.js' { + declare module.exports: $Exports<'@material-ui/core/esm/List/ListContext'>; +} +declare module '@material-ui/core/esm/ListItem/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItem'>; +} +declare module '@material-ui/core/esm/ListItem/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItem'>; +} +declare module '@material-ui/core/esm/ListItem/ListItem.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItem/ListItem'>; +} +declare module '@material-ui/core/esm/ListItemAvatar/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemAvatar'>; +} +declare module '@material-ui/core/esm/ListItemAvatar/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemAvatar'>; +} +declare module '@material-ui/core/esm/ListItemAvatar/ListItemAvatar.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemAvatar/ListItemAvatar'>; +} +declare module '@material-ui/core/esm/ListItemIcon/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemIcon'>; +} +declare module '@material-ui/core/esm/ListItemIcon/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemIcon'>; +} +declare module '@material-ui/core/esm/ListItemIcon/ListItemIcon.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemIcon/ListItemIcon'>; +} +declare module '@material-ui/core/esm/ListItemSecondaryAction/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemSecondaryAction'>; +} +declare module '@material-ui/core/esm/ListItemSecondaryAction/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemSecondaryAction'>; +} +declare module '@material-ui/core/esm/ListItemSecondaryAction/ListItemSecondaryAction.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemSecondaryAction/ListItemSecondaryAction'>; +} +declare module '@material-ui/core/esm/ListItemText/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemText'>; +} +declare module '@material-ui/core/esm/ListItemText/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemText'>; +} +declare module '@material-ui/core/esm/ListItemText/ListItemText.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListItemText/ListItemText'>; +} +declare module '@material-ui/core/esm/ListSubheader/index' { + declare module.exports: $Exports<'@material-ui/core/esm/ListSubheader'>; +} +declare module '@material-ui/core/esm/ListSubheader/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListSubheader'>; +} +declare module '@material-ui/core/esm/ListSubheader/ListSubheader.js' { + declare module.exports: $Exports<'@material-ui/core/esm/ListSubheader/ListSubheader'>; +} +declare module '@material-ui/core/esm/Menu/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Menu'>; +} +declare module '@material-ui/core/esm/Menu/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Menu'>; +} +declare module '@material-ui/core/esm/Menu/Menu.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Menu/Menu'>; +} +declare module '@material-ui/core/esm/MenuItem/index' { + declare module.exports: $Exports<'@material-ui/core/esm/MenuItem'>; +} +declare module '@material-ui/core/esm/MenuItem/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/MenuItem'>; +} +declare module '@material-ui/core/esm/MenuItem/MenuItem.js' { + declare module.exports: $Exports<'@material-ui/core/esm/MenuItem/MenuItem'>; +} +declare module '@material-ui/core/esm/MenuList/index' { + declare module.exports: $Exports<'@material-ui/core/esm/MenuList'>; +} +declare module '@material-ui/core/esm/MenuList/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/MenuList'>; +} +declare module '@material-ui/core/esm/MenuList/MenuList.js' { + declare module.exports: $Exports<'@material-ui/core/esm/MenuList/MenuList'>; +} +declare module '@material-ui/core/esm/MobileStepper/index' { + declare module.exports: $Exports<'@material-ui/core/esm/MobileStepper'>; +} +declare module '@material-ui/core/esm/MobileStepper/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/MobileStepper'>; +} +declare module '@material-ui/core/esm/MobileStepper/MobileStepper.js' { + declare module.exports: $Exports<'@material-ui/core/esm/MobileStepper/MobileStepper'>; +} +declare module '@material-ui/core/esm/Modal/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Modal'>; +} +declare module '@material-ui/core/esm/Modal/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Modal'>; +} +declare module '@material-ui/core/esm/Modal/Modal.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Modal/Modal'>; +} +declare module '@material-ui/core/esm/Modal/ModalManager.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Modal/ModalManager'>; +} +declare module '@material-ui/core/esm/Modal/SimpleBackdrop.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Modal/SimpleBackdrop'>; +} +declare module '@material-ui/core/esm/Modal/TrapFocus.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Modal/TrapFocus'>; +} +declare module '@material-ui/core/esm/NativeSelect/index' { + declare module.exports: $Exports<'@material-ui/core/esm/NativeSelect'>; +} +declare module '@material-ui/core/esm/NativeSelect/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/NativeSelect'>; +} +declare module '@material-ui/core/esm/NativeSelect/NativeSelect.js' { + declare module.exports: $Exports<'@material-ui/core/esm/NativeSelect/NativeSelect'>; +} +declare module '@material-ui/core/esm/NativeSelect/NativeSelectInput.js' { + declare module.exports: $Exports<'@material-ui/core/esm/NativeSelect/NativeSelectInput'>; +} +declare module '@material-ui/core/esm/NoSsr/index' { + declare module.exports: $Exports<'@material-ui/core/esm/NoSsr'>; +} +declare module '@material-ui/core/esm/NoSsr/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/NoSsr'>; +} +declare module '@material-ui/core/esm/NoSsr/NoSsr.js' { + declare module.exports: $Exports<'@material-ui/core/esm/NoSsr/NoSsr'>; +} +declare module '@material-ui/core/esm/OutlinedInput/index' { + declare module.exports: $Exports<'@material-ui/core/esm/OutlinedInput'>; +} +declare module '@material-ui/core/esm/OutlinedInput/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/OutlinedInput'>; +} +declare module '@material-ui/core/esm/OutlinedInput/NotchedOutline.js' { + declare module.exports: $Exports<'@material-ui/core/esm/OutlinedInput/NotchedOutline'>; +} +declare module '@material-ui/core/esm/OutlinedInput/OutlinedInput.js' { + declare module.exports: $Exports<'@material-ui/core/esm/OutlinedInput/OutlinedInput'>; +} +declare module '@material-ui/core/esm/Paper/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Paper'>; +} +declare module '@material-ui/core/esm/Paper/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Paper'>; +} +declare module '@material-ui/core/esm/Paper/Paper.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Paper/Paper'>; +} +declare module '@material-ui/core/esm/Popover/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Popover'>; +} +declare module '@material-ui/core/esm/Popover/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Popover'>; +} +declare module '@material-ui/core/esm/Popover/Popover.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Popover/Popover'>; +} +declare module '@material-ui/core/esm/Popper/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Popper'>; +} +declare module '@material-ui/core/esm/Popper/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Popper'>; +} +declare module '@material-ui/core/esm/Popper/Popper.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Popper/Popper'>; +} +declare module '@material-ui/core/esm/Portal/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Portal'>; +} +declare module '@material-ui/core/esm/Portal/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Portal'>; +} +declare module '@material-ui/core/esm/Portal/Portal.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Portal/Portal'>; +} +declare module '@material-ui/core/esm/Radio/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Radio'>; +} +declare module '@material-ui/core/esm/Radio/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Radio'>; +} +declare module '@material-ui/core/esm/Radio/Radio.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Radio/Radio'>; +} +declare module '@material-ui/core/esm/Radio/RadioButtonIcon.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Radio/RadioButtonIcon'>; +} +declare module '@material-ui/core/esm/RadioGroup/index' { + declare module.exports: $Exports<'@material-ui/core/esm/RadioGroup'>; +} +declare module '@material-ui/core/esm/RadioGroup/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/RadioGroup'>; +} +declare module '@material-ui/core/esm/RadioGroup/RadioGroup.js' { + declare module.exports: $Exports<'@material-ui/core/esm/RadioGroup/RadioGroup'>; +} +declare module '@material-ui/core/esm/RadioGroup/RadioGroupContext.js' { + declare module.exports: $Exports<'@material-ui/core/esm/RadioGroup/RadioGroupContext'>; +} +declare module '@material-ui/core/esm/RootRef/index' { + declare module.exports: $Exports<'@material-ui/core/esm/RootRef'>; +} +declare module '@material-ui/core/esm/RootRef/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/RootRef'>; +} +declare module '@material-ui/core/esm/RootRef/RootRef.js' { + declare module.exports: $Exports<'@material-ui/core/esm/RootRef/RootRef'>; +} +declare module '@material-ui/core/esm/Select/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Select'>; +} +declare module '@material-ui/core/esm/Select/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Select'>; +} +declare module '@material-ui/core/esm/Select/Select.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Select/Select'>; +} +declare module '@material-ui/core/esm/Select/SelectInput.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Select/SelectInput'>; +} +declare module '@material-ui/core/esm/Slide/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Slide'>; +} +declare module '@material-ui/core/esm/Slide/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Slide'>; +} +declare module '@material-ui/core/esm/Slide/Slide.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Slide/Slide'>; +} +declare module '@material-ui/core/esm/Slider/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Slider'>; +} +declare module '@material-ui/core/esm/Slider/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Slider'>; +} +declare module '@material-ui/core/esm/Slider/Slider.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Slider/Slider'>; +} +declare module '@material-ui/core/esm/Slider/ValueLabel.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Slider/ValueLabel'>; +} +declare module '@material-ui/core/esm/Snackbar/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Snackbar'>; +} +declare module '@material-ui/core/esm/Snackbar/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Snackbar'>; +} +declare module '@material-ui/core/esm/Snackbar/Snackbar.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Snackbar/Snackbar'>; +} +declare module '@material-ui/core/esm/SnackbarContent/index' { + declare module.exports: $Exports<'@material-ui/core/esm/SnackbarContent'>; +} +declare module '@material-ui/core/esm/SnackbarContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/SnackbarContent'>; +} +declare module '@material-ui/core/esm/SnackbarContent/SnackbarContent.js' { + declare module.exports: $Exports<'@material-ui/core/esm/SnackbarContent/SnackbarContent'>; +} +declare module '@material-ui/core/esm/Step/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Step'>; +} +declare module '@material-ui/core/esm/Step/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Step'>; +} +declare module '@material-ui/core/esm/Step/Step.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Step/Step'>; +} +declare module '@material-ui/core/esm/StepButton/index' { + declare module.exports: $Exports<'@material-ui/core/esm/StepButton'>; +} +declare module '@material-ui/core/esm/StepButton/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepButton'>; +} +declare module '@material-ui/core/esm/StepButton/StepButton.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepButton/StepButton'>; +} +declare module '@material-ui/core/esm/StepConnector/index' { + declare module.exports: $Exports<'@material-ui/core/esm/StepConnector'>; +} +declare module '@material-ui/core/esm/StepConnector/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepConnector'>; +} +declare module '@material-ui/core/esm/StepConnector/StepConnector.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepConnector/StepConnector'>; +} +declare module '@material-ui/core/esm/StepContent/index' { + declare module.exports: $Exports<'@material-ui/core/esm/StepContent'>; +} +declare module '@material-ui/core/esm/StepContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepContent'>; +} +declare module '@material-ui/core/esm/StepContent/StepContent.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepContent/StepContent'>; +} +declare module '@material-ui/core/esm/StepIcon/index' { + declare module.exports: $Exports<'@material-ui/core/esm/StepIcon'>; +} +declare module '@material-ui/core/esm/StepIcon/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepIcon'>; +} +declare module '@material-ui/core/esm/StepIcon/StepIcon.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepIcon/StepIcon'>; +} +declare module '@material-ui/core/esm/StepLabel/index' { + declare module.exports: $Exports<'@material-ui/core/esm/StepLabel'>; +} +declare module '@material-ui/core/esm/StepLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepLabel'>; +} +declare module '@material-ui/core/esm/StepLabel/StepLabel.js' { + declare module.exports: $Exports<'@material-ui/core/esm/StepLabel/StepLabel'>; +} +declare module '@material-ui/core/esm/Stepper/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Stepper'>; +} +declare module '@material-ui/core/esm/Stepper/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Stepper'>; +} +declare module '@material-ui/core/esm/Stepper/Stepper.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Stepper/Stepper'>; +} +declare module '@material-ui/core/esm/styles/colorManipulator.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/colorManipulator'>; +} +declare module '@material-ui/core/esm/styles/createBreakpoints.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/createBreakpoints'>; +} +declare module '@material-ui/core/esm/styles/createMixins.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/createMixins'>; +} +declare module '@material-ui/core/esm/styles/createMuiTheme.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/createMuiTheme'>; +} +declare module '@material-ui/core/esm/styles/createPalette.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/createPalette'>; +} +declare module '@material-ui/core/esm/styles/createSpacing.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/createSpacing'>; +} +declare module '@material-ui/core/esm/styles/createStyles.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/createStyles'>; +} +declare module '@material-ui/core/esm/styles/createTypography.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/createTypography'>; +} +declare module '@material-ui/core/esm/styles/cssUtils.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/cssUtils'>; +} +declare module '@material-ui/core/esm/styles/defaultTheme.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/defaultTheme'>; +} +declare module '@material-ui/core/esm/styles/index' { + declare module.exports: $Exports<'@material-ui/core/esm/styles'>; +} +declare module '@material-ui/core/esm/styles/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles'>; +} +declare module '@material-ui/core/esm/styles/makeStyles.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/makeStyles'>; +} +declare module '@material-ui/core/esm/styles/MuiThemeProvider.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/MuiThemeProvider'>; +} +declare module '@material-ui/core/esm/styles/responsiveFontSizes.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/responsiveFontSizes'>; +} +declare module '@material-ui/core/esm/styles/shadows.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/shadows'>; +} +declare module '@material-ui/core/esm/styles/shape.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/shape'>; +} +declare module '@material-ui/core/esm/styles/styled.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/styled'>; +} +declare module '@material-ui/core/esm/styles/transitions.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/transitions'>; +} +declare module '@material-ui/core/esm/styles/useTheme.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/useTheme'>; +} +declare module '@material-ui/core/esm/styles/withStyles.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/withStyles'>; +} +declare module '@material-ui/core/esm/styles/withTheme.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/withTheme'>; +} +declare module '@material-ui/core/esm/styles/zIndex.js' { + declare module.exports: $Exports<'@material-ui/core/esm/styles/zIndex'>; +} +declare module '@material-ui/core/esm/SvgIcon/index' { + declare module.exports: $Exports<'@material-ui/core/esm/SvgIcon'>; +} +declare module '@material-ui/core/esm/SvgIcon/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/SvgIcon'>; +} +declare module '@material-ui/core/esm/SvgIcon/SvgIcon.js' { + declare module.exports: $Exports<'@material-ui/core/esm/SvgIcon/SvgIcon'>; +} +declare module '@material-ui/core/esm/SwipeableDrawer/index' { + declare module.exports: $Exports<'@material-ui/core/esm/SwipeableDrawer'>; +} +declare module '@material-ui/core/esm/SwipeableDrawer/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/SwipeableDrawer'>; +} +declare module '@material-ui/core/esm/SwipeableDrawer/SwipeableDrawer.js' { + declare module.exports: $Exports<'@material-ui/core/esm/SwipeableDrawer/SwipeableDrawer'>; +} +declare module '@material-ui/core/esm/SwipeableDrawer/SwipeArea.js' { + declare module.exports: $Exports<'@material-ui/core/esm/SwipeableDrawer/SwipeArea'>; +} +declare module '@material-ui/core/esm/Switch/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Switch'>; +} +declare module '@material-ui/core/esm/Switch/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Switch'>; +} +declare module '@material-ui/core/esm/Switch/Switch.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Switch/Switch'>; +} +declare module '@material-ui/core/esm/Tab/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Tab'>; +} +declare module '@material-ui/core/esm/Tab/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Tab'>; +} +declare module '@material-ui/core/esm/Tab/Tab.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Tab/Tab'>; +} +declare module '@material-ui/core/esm/Table/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Table'>; +} +declare module '@material-ui/core/esm/Table/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Table'>; +} +declare module '@material-ui/core/esm/Table/Table.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Table/Table'>; +} +declare module '@material-ui/core/esm/Table/TableContext.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Table/TableContext'>; +} +declare module '@material-ui/core/esm/Table/Tablelvl2Context.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Table/Tablelvl2Context'>; +} +declare module '@material-ui/core/esm/TableBody/index' { + declare module.exports: $Exports<'@material-ui/core/esm/TableBody'>; +} +declare module '@material-ui/core/esm/TableBody/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableBody'>; +} +declare module '@material-ui/core/esm/TableBody/TableBody.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableBody/TableBody'>; +} +declare module '@material-ui/core/esm/TableCell/index' { + declare module.exports: $Exports<'@material-ui/core/esm/TableCell'>; +} +declare module '@material-ui/core/esm/TableCell/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableCell'>; +} +declare module '@material-ui/core/esm/TableCell/TableCell.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableCell/TableCell'>; +} +declare module '@material-ui/core/esm/TableFooter/index' { + declare module.exports: $Exports<'@material-ui/core/esm/TableFooter'>; +} +declare module '@material-ui/core/esm/TableFooter/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableFooter'>; +} +declare module '@material-ui/core/esm/TableFooter/TableFooter.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableFooter/TableFooter'>; +} +declare module '@material-ui/core/esm/TableHead/index' { + declare module.exports: $Exports<'@material-ui/core/esm/TableHead'>; +} +declare module '@material-ui/core/esm/TableHead/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableHead'>; +} +declare module '@material-ui/core/esm/TableHead/TableHead.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableHead/TableHead'>; +} +declare module '@material-ui/core/esm/TablePagination/index' { + declare module.exports: $Exports<'@material-ui/core/esm/TablePagination'>; +} +declare module '@material-ui/core/esm/TablePagination/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TablePagination'>; +} +declare module '@material-ui/core/esm/TablePagination/TablePagination.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TablePagination/TablePagination'>; +} +declare module '@material-ui/core/esm/TablePagination/TablePaginationActions.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TablePagination/TablePaginationActions'>; +} +declare module '@material-ui/core/esm/TableRow/index' { + declare module.exports: $Exports<'@material-ui/core/esm/TableRow'>; +} +declare module '@material-ui/core/esm/TableRow/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableRow'>; +} +declare module '@material-ui/core/esm/TableRow/TableRow.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableRow/TableRow'>; +} +declare module '@material-ui/core/esm/TableSortLabel/index' { + declare module.exports: $Exports<'@material-ui/core/esm/TableSortLabel'>; +} +declare module '@material-ui/core/esm/TableSortLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableSortLabel'>; +} +declare module '@material-ui/core/esm/TableSortLabel/TableSortLabel.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TableSortLabel/TableSortLabel'>; +} +declare module '@material-ui/core/esm/Tabs/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Tabs'>; +} +declare module '@material-ui/core/esm/Tabs/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Tabs'>; +} +declare module '@material-ui/core/esm/Tabs/ScrollbarSize.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Tabs/ScrollbarSize'>; +} +declare module '@material-ui/core/esm/Tabs/TabIndicator.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Tabs/TabIndicator'>; +} +declare module '@material-ui/core/esm/Tabs/Tabs.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Tabs/Tabs'>; +} +declare module '@material-ui/core/esm/Tabs/TabScrollButton.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Tabs/TabScrollButton'>; +} +declare module '@material-ui/core/esm/test-utils/createMount.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/createMount'>; +} +declare module '@material-ui/core/esm/test-utils/createRender.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/createRender'>; +} +declare module '@material-ui/core/esm/test-utils/createShallow.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/createShallow'>; +} +declare module '@material-ui/core/esm/test-utils/describeConformance.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/describeConformance'>; +} +declare module '@material-ui/core/esm/test-utils/findOutermostIntrinsic.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/findOutermostIntrinsic'>; +} +declare module '@material-ui/core/esm/test-utils/getClasses.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/getClasses'>; +} +declare module '@material-ui/core/esm/test-utils/index' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils'>; +} +declare module '@material-ui/core/esm/test-utils/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils'>; +} +declare module '@material-ui/core/esm/test-utils/RenderMode.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/RenderMode'>; +} +declare module '@material-ui/core/esm/test-utils/testRef.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/testRef'>; +} +declare module '@material-ui/core/esm/test-utils/until.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/until'>; +} +declare module '@material-ui/core/esm/test-utils/unwrap.js' { + declare module.exports: $Exports<'@material-ui/core/esm/test-utils/unwrap'>; +} +declare module '@material-ui/core/esm/TextareaAutosize/index' { + declare module.exports: $Exports<'@material-ui/core/esm/TextareaAutosize'>; +} +declare module '@material-ui/core/esm/TextareaAutosize/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TextareaAutosize'>; +} +declare module '@material-ui/core/esm/TextareaAutosize/TextareaAutosize.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TextareaAutosize/TextareaAutosize'>; +} +declare module '@material-ui/core/esm/TextField/index' { + declare module.exports: $Exports<'@material-ui/core/esm/TextField'>; +} +declare module '@material-ui/core/esm/TextField/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TextField'>; +} +declare module '@material-ui/core/esm/TextField/TextField.js' { + declare module.exports: $Exports<'@material-ui/core/esm/TextField/TextField'>; +} +declare module '@material-ui/core/esm/Toolbar/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Toolbar'>; +} +declare module '@material-ui/core/esm/Toolbar/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Toolbar'>; +} +declare module '@material-ui/core/esm/Toolbar/Toolbar.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Toolbar/Toolbar'>; +} +declare module '@material-ui/core/esm/Tooltip/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Tooltip'>; +} +declare module '@material-ui/core/esm/Tooltip/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Tooltip'>; +} +declare module '@material-ui/core/esm/Tooltip/Tooltip.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Tooltip/Tooltip'>; +} +declare module '@material-ui/core/esm/transitions/utils.js' { + declare module.exports: $Exports<'@material-ui/core/esm/transitions/utils'>; +} +declare module '@material-ui/core/esm/Typography/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Typography'>; +} +declare module '@material-ui/core/esm/Typography/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Typography'>; +} +declare module '@material-ui/core/esm/Typography/Typography.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Typography/Typography'>; +} +declare module '@material-ui/core/esm/useMediaQuery/index' { + declare module.exports: $Exports<'@material-ui/core/esm/useMediaQuery'>; +} +declare module '@material-ui/core/esm/useMediaQuery/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/useMediaQuery'>; +} +declare module '@material-ui/core/esm/useMediaQuery/useMediaQuery.js' { + declare module.exports: $Exports<'@material-ui/core/esm/useMediaQuery/useMediaQuery'>; +} +declare module '@material-ui/core/esm/useMediaQuery/useMediaQueryTheme.js' { + declare module.exports: $Exports<'@material-ui/core/esm/useMediaQuery/useMediaQueryTheme'>; +} +declare module '@material-ui/core/esm/useScrollTrigger/index' { + declare module.exports: $Exports<'@material-ui/core/esm/useScrollTrigger'>; +} +declare module '@material-ui/core/esm/useScrollTrigger/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/useScrollTrigger'>; +} +declare module '@material-ui/core/esm/useScrollTrigger/useScrollTrigger.js' { + declare module.exports: $Exports<'@material-ui/core/esm/useScrollTrigger/useScrollTrigger'>; +} +declare module '@material-ui/core/esm/utils/capitalize.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/capitalize'>; +} +declare module '@material-ui/core/esm/utils/createChainedFunction.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/createChainedFunction'>; +} +declare module '@material-ui/core/esm/utils/debounce.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/debounce'>; +} +declare module '@material-ui/core/esm/utils/deprecatedPropType.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/deprecatedPropType'>; +} +declare module '@material-ui/core/esm/utils/focusVisible.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/focusVisible'>; +} +declare module '@material-ui/core/esm/utils/getScrollbarSize.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/getScrollbarSize'>; +} +declare module '@material-ui/core/esm/utils/index' { + declare module.exports: $Exports<'@material-ui/core/esm/utils'>; +} +declare module '@material-ui/core/esm/utils/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils'>; +} +declare module '@material-ui/core/esm/utils/isMuiElement.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/isMuiElement'>; +} +declare module '@material-ui/core/esm/utils/ownerDocument.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/ownerDocument'>; +} +declare module '@material-ui/core/esm/utils/ownerWindow.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/ownerWindow'>; +} +declare module '@material-ui/core/esm/utils/requirePropFactory.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/requirePropFactory'>; +} +declare module '@material-ui/core/esm/utils/setRef.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/setRef'>; +} +declare module '@material-ui/core/esm/utils/unsupportedProp.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/unsupportedProp'>; +} +declare module '@material-ui/core/esm/utils/useEventCallback.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/useEventCallback'>; +} +declare module '@material-ui/core/esm/utils/useForkRef.js' { + declare module.exports: $Exports<'@material-ui/core/esm/utils/useForkRef'>; +} +declare module '@material-ui/core/esm/withMobileDialog/index' { + declare module.exports: $Exports<'@material-ui/core/esm/withMobileDialog'>; +} +declare module '@material-ui/core/esm/withMobileDialog/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/withMobileDialog'>; +} +declare module '@material-ui/core/esm/withMobileDialog/withMobileDialog.js' { + declare module.exports: $Exports<'@material-ui/core/esm/withMobileDialog/withMobileDialog'>; +} +declare module '@material-ui/core/esm/withWidth/index' { + declare module.exports: $Exports<'@material-ui/core/esm/withWidth'>; +} +declare module '@material-ui/core/esm/withWidth/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/withWidth'>; +} +declare module '@material-ui/core/esm/withWidth/withWidth.js' { + declare module.exports: $Exports<'@material-ui/core/esm/withWidth/withWidth'>; +} +declare module '@material-ui/core/esm/Zoom/index' { + declare module.exports: $Exports<'@material-ui/core/esm/Zoom'>; +} +declare module '@material-ui/core/esm/Zoom/index.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Zoom'>; +} +declare module '@material-ui/core/esm/Zoom/Zoom.js' { + declare module.exports: $Exports<'@material-ui/core/esm/Zoom/Zoom'>; +} +declare module '@material-ui/core/ExpansionPanel/ExpansionPanel.js' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanel/ExpansionPanel'>; +} +declare module '@material-ui/core/ExpansionPanel/ExpansionPanelContext.js' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanel/ExpansionPanelContext'>; +} +declare module '@material-ui/core/ExpansionPanel/index' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanel'>; +} +declare module '@material-ui/core/ExpansionPanel/index.js' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanel'>; +} +declare module '@material-ui/core/ExpansionPanelActions/ExpansionPanelActions.js' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanelActions/ExpansionPanelActions'>; +} +declare module '@material-ui/core/ExpansionPanelActions/index' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanelActions'>; +} +declare module '@material-ui/core/ExpansionPanelActions/index.js' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanelActions'>; +} +declare module '@material-ui/core/ExpansionPanelDetails/ExpansionPanelDetails.js' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanelDetails/ExpansionPanelDetails'>; +} +declare module '@material-ui/core/ExpansionPanelDetails/index' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanelDetails'>; +} +declare module '@material-ui/core/ExpansionPanelDetails/index.js' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanelDetails'>; +} +declare module '@material-ui/core/ExpansionPanelSummary/ExpansionPanelSummary.js' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanelSummary/ExpansionPanelSummary'>; +} +declare module '@material-ui/core/ExpansionPanelSummary/index' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanelSummary'>; +} +declare module '@material-ui/core/ExpansionPanelSummary/index.js' { + declare module.exports: $Exports<'@material-ui/core/ExpansionPanelSummary'>; +} +declare module '@material-ui/core/Fab/Fab.js' { + declare module.exports: $Exports<'@material-ui/core/Fab/Fab'>; +} +declare module '@material-ui/core/Fab/index' { + declare module.exports: $Exports<'@material-ui/core/Fab'>; +} +declare module '@material-ui/core/Fab/index.js' { + declare module.exports: $Exports<'@material-ui/core/Fab'>; +} +declare module '@material-ui/core/Fade/Fade.js' { + declare module.exports: $Exports<'@material-ui/core/Fade/Fade'>; +} +declare module '@material-ui/core/Fade/index' { + declare module.exports: $Exports<'@material-ui/core/Fade'>; +} +declare module '@material-ui/core/Fade/index.js' { + declare module.exports: $Exports<'@material-ui/core/Fade'>; +} +declare module '@material-ui/core/FilledInput/FilledInput.js' { + declare module.exports: $Exports<'@material-ui/core/FilledInput/FilledInput'>; +} +declare module '@material-ui/core/FilledInput/index' { + declare module.exports: $Exports<'@material-ui/core/FilledInput'>; +} +declare module '@material-ui/core/FilledInput/index.js' { + declare module.exports: $Exports<'@material-ui/core/FilledInput'>; +} +declare module '@material-ui/core/FormControl/FormControl.js' { + declare module.exports: $Exports<'@material-ui/core/FormControl/FormControl'>; +} +declare module '@material-ui/core/FormControl/FormControlContext.js' { + declare module.exports: $Exports<'@material-ui/core/FormControl/FormControlContext'>; +} +declare module '@material-ui/core/FormControl/formControlState.js' { + declare module.exports: $Exports<'@material-ui/core/FormControl/formControlState'>; +} +declare module '@material-ui/core/FormControl/index' { + declare module.exports: $Exports<'@material-ui/core/FormControl'>; +} +declare module '@material-ui/core/FormControl/index.js' { + declare module.exports: $Exports<'@material-ui/core/FormControl'>; +} +declare module '@material-ui/core/FormControl/useFormControl.js' { + declare module.exports: $Exports<'@material-ui/core/FormControl/useFormControl'>; +} +declare module '@material-ui/core/FormControlLabel/FormControlLabel.js' { + declare module.exports: $Exports<'@material-ui/core/FormControlLabel/FormControlLabel'>; +} +declare module '@material-ui/core/FormControlLabel/index' { + declare module.exports: $Exports<'@material-ui/core/FormControlLabel'>; +} +declare module '@material-ui/core/FormControlLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/FormControlLabel'>; +} +declare module '@material-ui/core/FormGroup/FormGroup.js' { + declare module.exports: $Exports<'@material-ui/core/FormGroup/FormGroup'>; +} +declare module '@material-ui/core/FormGroup/index' { + declare module.exports: $Exports<'@material-ui/core/FormGroup'>; +} +declare module '@material-ui/core/FormGroup/index.js' { + declare module.exports: $Exports<'@material-ui/core/FormGroup'>; +} +declare module '@material-ui/core/FormHelperText/FormHelperText.js' { + declare module.exports: $Exports<'@material-ui/core/FormHelperText/FormHelperText'>; +} +declare module '@material-ui/core/FormHelperText/index' { + declare module.exports: $Exports<'@material-ui/core/FormHelperText'>; +} +declare module '@material-ui/core/FormHelperText/index.js' { + declare module.exports: $Exports<'@material-ui/core/FormHelperText'>; +} +declare module '@material-ui/core/FormLabel/FormLabel.js' { + declare module.exports: $Exports<'@material-ui/core/FormLabel/FormLabel'>; +} +declare module '@material-ui/core/FormLabel/index' { + declare module.exports: $Exports<'@material-ui/core/FormLabel'>; +} +declare module '@material-ui/core/FormLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/FormLabel'>; +} +declare module '@material-ui/core/Grid/Grid.js' { + declare module.exports: $Exports<'@material-ui/core/Grid/Grid'>; +} +declare module '@material-ui/core/Grid/index' { + declare module.exports: $Exports<'@material-ui/core/Grid'>; +} +declare module '@material-ui/core/Grid/index.js' { + declare module.exports: $Exports<'@material-ui/core/Grid'>; +} +declare module '@material-ui/core/GridList/GridList.js' { + declare module.exports: $Exports<'@material-ui/core/GridList/GridList'>; +} +declare module '@material-ui/core/GridList/index' { + declare module.exports: $Exports<'@material-ui/core/GridList'>; +} +declare module '@material-ui/core/GridList/index.js' { + declare module.exports: $Exports<'@material-ui/core/GridList'>; +} +declare module '@material-ui/core/GridListTile/GridListTile.js' { + declare module.exports: $Exports<'@material-ui/core/GridListTile/GridListTile'>; +} +declare module '@material-ui/core/GridListTile/index' { + declare module.exports: $Exports<'@material-ui/core/GridListTile'>; +} +declare module '@material-ui/core/GridListTile/index.js' { + declare module.exports: $Exports<'@material-ui/core/GridListTile'>; +} +declare module '@material-ui/core/GridListTileBar/GridListTileBar.js' { + declare module.exports: $Exports<'@material-ui/core/GridListTileBar/GridListTileBar'>; +} +declare module '@material-ui/core/GridListTileBar/index' { + declare module.exports: $Exports<'@material-ui/core/GridListTileBar'>; +} +declare module '@material-ui/core/GridListTileBar/index.js' { + declare module.exports: $Exports<'@material-ui/core/GridListTileBar'>; +} +declare module '@material-ui/core/Grow/Grow.js' { + declare module.exports: $Exports<'@material-ui/core/Grow/Grow'>; +} +declare module '@material-ui/core/Grow/index' { + declare module.exports: $Exports<'@material-ui/core/Grow'>; +} +declare module '@material-ui/core/Grow/index.js' { + declare module.exports: $Exports<'@material-ui/core/Grow'>; +} +declare module '@material-ui/core/Hidden/Hidden.js' { + declare module.exports: $Exports<'@material-ui/core/Hidden/Hidden'>; +} +declare module '@material-ui/core/Hidden/HiddenCss.js' { + declare module.exports: $Exports<'@material-ui/core/Hidden/HiddenCss'>; +} +declare module '@material-ui/core/Hidden/HiddenJs.js' { + declare module.exports: $Exports<'@material-ui/core/Hidden/HiddenJs'>; +} +declare module '@material-ui/core/Hidden/index' { + declare module.exports: $Exports<'@material-ui/core/Hidden'>; +} +declare module '@material-ui/core/Hidden/index.js' { + declare module.exports: $Exports<'@material-ui/core/Hidden'>; +} +declare module '@material-ui/core/Icon/Icon.js' { + declare module.exports: $Exports<'@material-ui/core/Icon/Icon'>; +} +declare module '@material-ui/core/Icon/index' { + declare module.exports: $Exports<'@material-ui/core/Icon'>; +} +declare module '@material-ui/core/Icon/index.js' { + declare module.exports: $Exports<'@material-ui/core/Icon'>; +} +declare module '@material-ui/core/IconButton/IconButton.js' { + declare module.exports: $Exports<'@material-ui/core/IconButton/IconButton'>; +} +declare module '@material-ui/core/IconButton/index' { + declare module.exports: $Exports<'@material-ui/core/IconButton'>; +} +declare module '@material-ui/core/IconButton/index.js' { + declare module.exports: $Exports<'@material-ui/core/IconButton'>; +} +declare module '@material-ui/core/index' { + declare module.exports: $Exports<'@material-ui/core'>; +} +declare module '@material-ui/core/index.js' { + declare module.exports: $Exports<'@material-ui/core'>; +} +declare module '@material-ui/core/Input/index' { + declare module.exports: $Exports<'@material-ui/core/Input'>; +} +declare module '@material-ui/core/Input/index.js' { + declare module.exports: $Exports<'@material-ui/core/Input'>; +} +declare module '@material-ui/core/Input/Input.js' { + declare module.exports: $Exports<'@material-ui/core/Input/Input'>; +} +declare module '@material-ui/core/InputAdornment/index' { + declare module.exports: $Exports<'@material-ui/core/InputAdornment'>; +} +declare module '@material-ui/core/InputAdornment/index.js' { + declare module.exports: $Exports<'@material-ui/core/InputAdornment'>; +} +declare module '@material-ui/core/InputAdornment/InputAdornment.js' { + declare module.exports: $Exports<'@material-ui/core/InputAdornment/InputAdornment'>; +} +declare module '@material-ui/core/InputBase/index' { + declare module.exports: $Exports<'@material-ui/core/InputBase'>; +} +declare module '@material-ui/core/InputBase/index.js' { + declare module.exports: $Exports<'@material-ui/core/InputBase'>; +} +declare module '@material-ui/core/InputBase/InputBase.js' { + declare module.exports: $Exports<'@material-ui/core/InputBase/InputBase'>; +} +declare module '@material-ui/core/InputBase/utils.js' { + declare module.exports: $Exports<'@material-ui/core/InputBase/utils'>; +} +declare module '@material-ui/core/InputLabel/index' { + declare module.exports: $Exports<'@material-ui/core/InputLabel'>; +} +declare module '@material-ui/core/InputLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/InputLabel'>; +} +declare module '@material-ui/core/InputLabel/InputLabel.js' { + declare module.exports: $Exports<'@material-ui/core/InputLabel/InputLabel'>; +} +declare module '@material-ui/core/internal/animate.js' { + declare module.exports: $Exports<'@material-ui/core/internal/animate'>; +} +declare module '@material-ui/core/internal/svg-icons/ArrowDownward.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/ArrowDownward'>; +} +declare module '@material-ui/core/internal/svg-icons/ArrowDropDown.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/ArrowDropDown'>; +} +declare module '@material-ui/core/internal/svg-icons/Cancel.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/Cancel'>; +} +declare module '@material-ui/core/internal/svg-icons/CheckBox.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/CheckBox'>; +} +declare module '@material-ui/core/internal/svg-icons/CheckBoxOutlineBlank.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/CheckBoxOutlineBlank'>; +} +declare module '@material-ui/core/internal/svg-icons/CheckCircle.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/CheckCircle'>; +} +declare module '@material-ui/core/internal/svg-icons/createSvgIcon.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/createSvgIcon'>; +} +declare module '@material-ui/core/internal/svg-icons/IndeterminateCheckBox.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/IndeterminateCheckBox'>; +} +declare module '@material-ui/core/internal/svg-icons/KeyboardArrowLeft.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/KeyboardArrowLeft'>; +} +declare module '@material-ui/core/internal/svg-icons/KeyboardArrowRight.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/KeyboardArrowRight'>; +} +declare module '@material-ui/core/internal/svg-icons/MoreHoriz.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/MoreHoriz'>; +} +declare module '@material-ui/core/internal/svg-icons/RadioButtonChecked.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/RadioButtonChecked'>; +} +declare module '@material-ui/core/internal/svg-icons/RadioButtonUnchecked.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/RadioButtonUnchecked'>; +} +declare module '@material-ui/core/internal/svg-icons/Warning.js' { + declare module.exports: $Exports<'@material-ui/core/internal/svg-icons/Warning'>; +} +declare module '@material-ui/core/internal/SwitchBase.js' { + declare module.exports: $Exports<'@material-ui/core/internal/SwitchBase'>; +} +declare module '@material-ui/core/LinearProgress/index' { + declare module.exports: $Exports<'@material-ui/core/LinearProgress'>; +} +declare module '@material-ui/core/LinearProgress/index.js' { + declare module.exports: $Exports<'@material-ui/core/LinearProgress'>; +} +declare module '@material-ui/core/LinearProgress/LinearProgress.js' { + declare module.exports: $Exports<'@material-ui/core/LinearProgress/LinearProgress'>; +} +declare module '@material-ui/core/Link/index' { + declare module.exports: $Exports<'@material-ui/core/Link'>; +} +declare module '@material-ui/core/Link/index.js' { + declare module.exports: $Exports<'@material-ui/core/Link'>; +} +declare module '@material-ui/core/Link/Link.js' { + declare module.exports: $Exports<'@material-ui/core/Link/Link'>; +} +declare module '@material-ui/core/List/index' { + declare module.exports: $Exports<'@material-ui/core/List'>; +} +declare module '@material-ui/core/List/index.js' { + declare module.exports: $Exports<'@material-ui/core/List'>; +} +declare module '@material-ui/core/List/List.js' { + declare module.exports: $Exports<'@material-ui/core/List/List'>; +} +declare module '@material-ui/core/List/ListContext.js' { + declare module.exports: $Exports<'@material-ui/core/List/ListContext'>; +} +declare module '@material-ui/core/ListItem/index' { + declare module.exports: $Exports<'@material-ui/core/ListItem'>; +} +declare module '@material-ui/core/ListItem/index.js' { + declare module.exports: $Exports<'@material-ui/core/ListItem'>; +} +declare module '@material-ui/core/ListItem/ListItem.js' { + declare module.exports: $Exports<'@material-ui/core/ListItem/ListItem'>; +} +declare module '@material-ui/core/ListItemAvatar/index' { + declare module.exports: $Exports<'@material-ui/core/ListItemAvatar'>; +} +declare module '@material-ui/core/ListItemAvatar/index.js' { + declare module.exports: $Exports<'@material-ui/core/ListItemAvatar'>; +} +declare module '@material-ui/core/ListItemAvatar/ListItemAvatar.js' { + declare module.exports: $Exports<'@material-ui/core/ListItemAvatar/ListItemAvatar'>; +} +declare module '@material-ui/core/ListItemIcon/index' { + declare module.exports: $Exports<'@material-ui/core/ListItemIcon'>; +} +declare module '@material-ui/core/ListItemIcon/index.js' { + declare module.exports: $Exports<'@material-ui/core/ListItemIcon'>; +} +declare module '@material-ui/core/ListItemIcon/ListItemIcon.js' { + declare module.exports: $Exports<'@material-ui/core/ListItemIcon/ListItemIcon'>; +} +declare module '@material-ui/core/ListItemSecondaryAction/index' { + declare module.exports: $Exports<'@material-ui/core/ListItemSecondaryAction'>; +} +declare module '@material-ui/core/ListItemSecondaryAction/index.js' { + declare module.exports: $Exports<'@material-ui/core/ListItemSecondaryAction'>; +} +declare module '@material-ui/core/ListItemSecondaryAction/ListItemSecondaryAction.js' { + declare module.exports: $Exports<'@material-ui/core/ListItemSecondaryAction/ListItemSecondaryAction'>; +} +declare module '@material-ui/core/ListItemText/index' { + declare module.exports: $Exports<'@material-ui/core/ListItemText'>; +} +declare module '@material-ui/core/ListItemText/index.js' { + declare module.exports: $Exports<'@material-ui/core/ListItemText'>; +} +declare module '@material-ui/core/ListItemText/ListItemText.js' { + declare module.exports: $Exports<'@material-ui/core/ListItemText/ListItemText'>; +} +declare module '@material-ui/core/ListSubheader/index' { + declare module.exports: $Exports<'@material-ui/core/ListSubheader'>; +} +declare module '@material-ui/core/ListSubheader/index.js' { + declare module.exports: $Exports<'@material-ui/core/ListSubheader'>; +} +declare module '@material-ui/core/ListSubheader/ListSubheader.js' { + declare module.exports: $Exports<'@material-ui/core/ListSubheader/ListSubheader'>; +} +declare module '@material-ui/core/Menu/index' { + declare module.exports: $Exports<'@material-ui/core/Menu'>; +} +declare module '@material-ui/core/Menu/index.js' { + declare module.exports: $Exports<'@material-ui/core/Menu'>; +} +declare module '@material-ui/core/Menu/Menu.js' { + declare module.exports: $Exports<'@material-ui/core/Menu/Menu'>; +} +declare module '@material-ui/core/MenuItem/index' { + declare module.exports: $Exports<'@material-ui/core/MenuItem'>; +} +declare module '@material-ui/core/MenuItem/index.js' { + declare module.exports: $Exports<'@material-ui/core/MenuItem'>; +} +declare module '@material-ui/core/MenuItem/MenuItem.js' { + declare module.exports: $Exports<'@material-ui/core/MenuItem/MenuItem'>; +} +declare module '@material-ui/core/MenuList/index' { + declare module.exports: $Exports<'@material-ui/core/MenuList'>; +} +declare module '@material-ui/core/MenuList/index.js' { + declare module.exports: $Exports<'@material-ui/core/MenuList'>; +} +declare module '@material-ui/core/MenuList/MenuList.js' { + declare module.exports: $Exports<'@material-ui/core/MenuList/MenuList'>; +} +declare module '@material-ui/core/MobileStepper/index' { + declare module.exports: $Exports<'@material-ui/core/MobileStepper'>; +} +declare module '@material-ui/core/MobileStepper/index.js' { + declare module.exports: $Exports<'@material-ui/core/MobileStepper'>; +} +declare module '@material-ui/core/MobileStepper/MobileStepper.js' { + declare module.exports: $Exports<'@material-ui/core/MobileStepper/MobileStepper'>; +} +declare module '@material-ui/core/Modal/index' { + declare module.exports: $Exports<'@material-ui/core/Modal'>; +} +declare module '@material-ui/core/Modal/index.js' { + declare module.exports: $Exports<'@material-ui/core/Modal'>; +} +declare module '@material-ui/core/Modal/Modal.js' { + declare module.exports: $Exports<'@material-ui/core/Modal/Modal'>; +} +declare module '@material-ui/core/Modal/ModalManager.js' { + declare module.exports: $Exports<'@material-ui/core/Modal/ModalManager'>; +} +declare module '@material-ui/core/Modal/SimpleBackdrop.js' { + declare module.exports: $Exports<'@material-ui/core/Modal/SimpleBackdrop'>; +} +declare module '@material-ui/core/Modal/TrapFocus.js' { + declare module.exports: $Exports<'@material-ui/core/Modal/TrapFocus'>; +} +declare module '@material-ui/core/NativeSelect/index' { + declare module.exports: $Exports<'@material-ui/core/NativeSelect'>; +} +declare module '@material-ui/core/NativeSelect/index.js' { + declare module.exports: $Exports<'@material-ui/core/NativeSelect'>; +} +declare module '@material-ui/core/NativeSelect/NativeSelect.js' { + declare module.exports: $Exports<'@material-ui/core/NativeSelect/NativeSelect'>; +} +declare module '@material-ui/core/NativeSelect/NativeSelectInput.js' { + declare module.exports: $Exports<'@material-ui/core/NativeSelect/NativeSelectInput'>; +} +declare module '@material-ui/core/NoSsr/index' { + declare module.exports: $Exports<'@material-ui/core/NoSsr'>; +} +declare module '@material-ui/core/NoSsr/index.js' { + declare module.exports: $Exports<'@material-ui/core/NoSsr'>; +} +declare module '@material-ui/core/NoSsr/NoSsr.js' { + declare module.exports: $Exports<'@material-ui/core/NoSsr/NoSsr'>; +} +declare module '@material-ui/core/OutlinedInput/index' { + declare module.exports: $Exports<'@material-ui/core/OutlinedInput'>; +} +declare module '@material-ui/core/OutlinedInput/index.js' { + declare module.exports: $Exports<'@material-ui/core/OutlinedInput'>; +} +declare module '@material-ui/core/OutlinedInput/NotchedOutline.js' { + declare module.exports: $Exports<'@material-ui/core/OutlinedInput/NotchedOutline'>; +} +declare module '@material-ui/core/OutlinedInput/OutlinedInput.js' { + declare module.exports: $Exports<'@material-ui/core/OutlinedInput/OutlinedInput'>; +} +declare module '@material-ui/core/Paper/index' { + declare module.exports: $Exports<'@material-ui/core/Paper'>; +} +declare module '@material-ui/core/Paper/index.js' { + declare module.exports: $Exports<'@material-ui/core/Paper'>; +} +declare module '@material-ui/core/Paper/Paper.js' { + declare module.exports: $Exports<'@material-ui/core/Paper/Paper'>; +} +declare module '@material-ui/core/Popover/index' { + declare module.exports: $Exports<'@material-ui/core/Popover'>; +} +declare module '@material-ui/core/Popover/index.js' { + declare module.exports: $Exports<'@material-ui/core/Popover'>; +} +declare module '@material-ui/core/Popover/Popover.js' { + declare module.exports: $Exports<'@material-ui/core/Popover/Popover'>; +} +declare module '@material-ui/core/Popper/index' { + declare module.exports: $Exports<'@material-ui/core/Popper'>; +} +declare module '@material-ui/core/Popper/index.js' { + declare module.exports: $Exports<'@material-ui/core/Popper'>; +} +declare module '@material-ui/core/Popper/Popper.js' { + declare module.exports: $Exports<'@material-ui/core/Popper/Popper'>; +} +declare module '@material-ui/core/Portal/index' { + declare module.exports: $Exports<'@material-ui/core/Portal'>; +} +declare module '@material-ui/core/Portal/index.js' { + declare module.exports: $Exports<'@material-ui/core/Portal'>; +} +declare module '@material-ui/core/Portal/Portal.js' { + declare module.exports: $Exports<'@material-ui/core/Portal/Portal'>; +} +declare module '@material-ui/core/Radio/index' { + declare module.exports: $Exports<'@material-ui/core/Radio'>; +} +declare module '@material-ui/core/Radio/index.js' { + declare module.exports: $Exports<'@material-ui/core/Radio'>; +} +declare module '@material-ui/core/Radio/Radio.js' { + declare module.exports: $Exports<'@material-ui/core/Radio/Radio'>; +} +declare module '@material-ui/core/Radio/RadioButtonIcon.js' { + declare module.exports: $Exports<'@material-ui/core/Radio/RadioButtonIcon'>; +} +declare module '@material-ui/core/RadioGroup/index' { + declare module.exports: $Exports<'@material-ui/core/RadioGroup'>; +} +declare module '@material-ui/core/RadioGroup/index.js' { + declare module.exports: $Exports<'@material-ui/core/RadioGroup'>; +} +declare module '@material-ui/core/RadioGroup/RadioGroup.js' { + declare module.exports: $Exports<'@material-ui/core/RadioGroup/RadioGroup'>; +} +declare module '@material-ui/core/RadioGroup/RadioGroupContext.js' { + declare module.exports: $Exports<'@material-ui/core/RadioGroup/RadioGroupContext'>; +} +declare module '@material-ui/core/RootRef/index' { + declare module.exports: $Exports<'@material-ui/core/RootRef'>; +} +declare module '@material-ui/core/RootRef/index.js' { + declare module.exports: $Exports<'@material-ui/core/RootRef'>; +} +declare module '@material-ui/core/RootRef/RootRef.js' { + declare module.exports: $Exports<'@material-ui/core/RootRef/RootRef'>; +} +declare module '@material-ui/core/Select/index' { + declare module.exports: $Exports<'@material-ui/core/Select'>; +} +declare module '@material-ui/core/Select/index.js' { + declare module.exports: $Exports<'@material-ui/core/Select'>; +} +declare module '@material-ui/core/Select/Select.js' { + declare module.exports: $Exports<'@material-ui/core/Select/Select'>; +} +declare module '@material-ui/core/Select/SelectInput.js' { + declare module.exports: $Exports<'@material-ui/core/Select/SelectInput'>; +} +declare module '@material-ui/core/Slide/index' { + declare module.exports: $Exports<'@material-ui/core/Slide'>; +} +declare module '@material-ui/core/Slide/index.js' { + declare module.exports: $Exports<'@material-ui/core/Slide'>; +} +declare module '@material-ui/core/Slide/Slide.js' { + declare module.exports: $Exports<'@material-ui/core/Slide/Slide'>; +} +declare module '@material-ui/core/Slider/index' { + declare module.exports: $Exports<'@material-ui/core/Slider'>; +} +declare module '@material-ui/core/Slider/index.js' { + declare module.exports: $Exports<'@material-ui/core/Slider'>; +} +declare module '@material-ui/core/Slider/Slider.js' { + declare module.exports: $Exports<'@material-ui/core/Slider/Slider'>; +} +declare module '@material-ui/core/Slider/ValueLabel.js' { + declare module.exports: $Exports<'@material-ui/core/Slider/ValueLabel'>; +} +declare module '@material-ui/core/Snackbar/index' { + declare module.exports: $Exports<'@material-ui/core/Snackbar'>; +} +declare module '@material-ui/core/Snackbar/index.js' { + declare module.exports: $Exports<'@material-ui/core/Snackbar'>; +} +declare module '@material-ui/core/Snackbar/Snackbar.js' { + declare module.exports: $Exports<'@material-ui/core/Snackbar/Snackbar'>; +} +declare module '@material-ui/core/SnackbarContent/index' { + declare module.exports: $Exports<'@material-ui/core/SnackbarContent'>; +} +declare module '@material-ui/core/SnackbarContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/SnackbarContent'>; +} +declare module '@material-ui/core/SnackbarContent/SnackbarContent.js' { + declare module.exports: $Exports<'@material-ui/core/SnackbarContent/SnackbarContent'>; +} +declare module '@material-ui/core/Step/index' { + declare module.exports: $Exports<'@material-ui/core/Step'>; +} +declare module '@material-ui/core/Step/index.js' { + declare module.exports: $Exports<'@material-ui/core/Step'>; +} +declare module '@material-ui/core/Step/Step.js' { + declare module.exports: $Exports<'@material-ui/core/Step/Step'>; +} +declare module '@material-ui/core/StepButton/index' { + declare module.exports: $Exports<'@material-ui/core/StepButton'>; +} +declare module '@material-ui/core/StepButton/index.js' { + declare module.exports: $Exports<'@material-ui/core/StepButton'>; +} +declare module '@material-ui/core/StepButton/StepButton.js' { + declare module.exports: $Exports<'@material-ui/core/StepButton/StepButton'>; +} +declare module '@material-ui/core/StepConnector/index' { + declare module.exports: $Exports<'@material-ui/core/StepConnector'>; +} +declare module '@material-ui/core/StepConnector/index.js' { + declare module.exports: $Exports<'@material-ui/core/StepConnector'>; +} +declare module '@material-ui/core/StepConnector/StepConnector.js' { + declare module.exports: $Exports<'@material-ui/core/StepConnector/StepConnector'>; +} +declare module '@material-ui/core/StepContent/index' { + declare module.exports: $Exports<'@material-ui/core/StepContent'>; +} +declare module '@material-ui/core/StepContent/index.js' { + declare module.exports: $Exports<'@material-ui/core/StepContent'>; +} +declare module '@material-ui/core/StepContent/StepContent.js' { + declare module.exports: $Exports<'@material-ui/core/StepContent/StepContent'>; +} +declare module '@material-ui/core/StepIcon/index' { + declare module.exports: $Exports<'@material-ui/core/StepIcon'>; +} +declare module '@material-ui/core/StepIcon/index.js' { + declare module.exports: $Exports<'@material-ui/core/StepIcon'>; +} +declare module '@material-ui/core/StepIcon/StepIcon.js' { + declare module.exports: $Exports<'@material-ui/core/StepIcon/StepIcon'>; +} +declare module '@material-ui/core/StepLabel/index' { + declare module.exports: $Exports<'@material-ui/core/StepLabel'>; +} +declare module '@material-ui/core/StepLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/StepLabel'>; +} +declare module '@material-ui/core/StepLabel/StepLabel.js' { + declare module.exports: $Exports<'@material-ui/core/StepLabel/StepLabel'>; +} +declare module '@material-ui/core/Stepper/index' { + declare module.exports: $Exports<'@material-ui/core/Stepper'>; +} +declare module '@material-ui/core/Stepper/index.js' { + declare module.exports: $Exports<'@material-ui/core/Stepper'>; +} +declare module '@material-ui/core/Stepper/Stepper.js' { + declare module.exports: $Exports<'@material-ui/core/Stepper/Stepper'>; +} +declare module '@material-ui/core/styles/colorManipulator.js' { + declare module.exports: $Exports<'@material-ui/core/styles/colorManipulator'>; +} +declare module '@material-ui/core/styles/createBreakpoints.js' { + declare module.exports: $Exports<'@material-ui/core/styles/createBreakpoints'>; +} +declare module '@material-ui/core/styles/createMixins.js' { + declare module.exports: $Exports<'@material-ui/core/styles/createMixins'>; +} +declare module '@material-ui/core/styles/createMuiTheme.js' { + declare module.exports: $Exports<'@material-ui/core/styles/createMuiTheme'>; +} +declare module '@material-ui/core/styles/createPalette.js' { + declare module.exports: $Exports<'@material-ui/core/styles/createPalette'>; +} +declare module '@material-ui/core/styles/createSpacing.js' { + declare module.exports: $Exports<'@material-ui/core/styles/createSpacing'>; +} +declare module '@material-ui/core/styles/createStyles.js' { + declare module.exports: $Exports<'@material-ui/core/styles/createStyles'>; +} +declare module '@material-ui/core/styles/createTypography.js' { + declare module.exports: $Exports<'@material-ui/core/styles/createTypography'>; +} +declare module '@material-ui/core/styles/cssUtils.js' { + declare module.exports: $Exports<'@material-ui/core/styles/cssUtils'>; +} +declare module '@material-ui/core/styles/defaultTheme.js' { + declare module.exports: $Exports<'@material-ui/core/styles/defaultTheme'>; +} +declare module '@material-ui/core/styles/index' { + declare module.exports: $Exports<'@material-ui/core/styles'>; +} +declare module '@material-ui/core/styles/index.js' { + declare module.exports: $Exports<'@material-ui/core/styles'>; +} +declare module '@material-ui/core/styles/makeStyles.js' { + declare module.exports: $Exports<'@material-ui/core/styles/makeStyles'>; +} +declare module '@material-ui/core/styles/MuiThemeProvider.js' { + declare module.exports: $Exports<'@material-ui/core/styles/MuiThemeProvider'>; +} +declare module '@material-ui/core/styles/responsiveFontSizes.js' { + declare module.exports: $Exports<'@material-ui/core/styles/responsiveFontSizes'>; +} +declare module '@material-ui/core/styles/shadows.js' { + declare module.exports: $Exports<'@material-ui/core/styles/shadows'>; +} +declare module '@material-ui/core/styles/shape.js' { + declare module.exports: $Exports<'@material-ui/core/styles/shape'>; +} +declare module '@material-ui/core/styles/styled.js' { + declare module.exports: $Exports<'@material-ui/core/styles/styled'>; +} +declare module '@material-ui/core/styles/transitions.js' { + declare module.exports: $Exports<'@material-ui/core/styles/transitions'>; +} +declare module '@material-ui/core/styles/useTheme.js' { + declare module.exports: $Exports<'@material-ui/core/styles/useTheme'>; +} +declare module '@material-ui/core/styles/withStyles.js' { + declare module.exports: $Exports<'@material-ui/core/styles/withStyles'>; +} +declare module '@material-ui/core/styles/withTheme.js' { + declare module.exports: $Exports<'@material-ui/core/styles/withTheme'>; +} +declare module '@material-ui/core/styles/zIndex.js' { + declare module.exports: $Exports<'@material-ui/core/styles/zIndex'>; +} +declare module '@material-ui/core/SvgIcon/index' { + declare module.exports: $Exports<'@material-ui/core/SvgIcon'>; +} +declare module '@material-ui/core/SvgIcon/index.js' { + declare module.exports: $Exports<'@material-ui/core/SvgIcon'>; +} +declare module '@material-ui/core/SvgIcon/SvgIcon.js' { + declare module.exports: $Exports<'@material-ui/core/SvgIcon/SvgIcon'>; +} +declare module '@material-ui/core/SwipeableDrawer/index' { + declare module.exports: $Exports<'@material-ui/core/SwipeableDrawer'>; +} +declare module '@material-ui/core/SwipeableDrawer/index.js' { + declare module.exports: $Exports<'@material-ui/core/SwipeableDrawer'>; +} +declare module '@material-ui/core/SwipeableDrawer/SwipeableDrawer.js' { + declare module.exports: $Exports<'@material-ui/core/SwipeableDrawer/SwipeableDrawer'>; +} +declare module '@material-ui/core/SwipeableDrawer/SwipeArea.js' { + declare module.exports: $Exports<'@material-ui/core/SwipeableDrawer/SwipeArea'>; +} +declare module '@material-ui/core/Switch/index' { + declare module.exports: $Exports<'@material-ui/core/Switch'>; +} +declare module '@material-ui/core/Switch/index.js' { + declare module.exports: $Exports<'@material-ui/core/Switch'>; +} +declare module '@material-ui/core/Switch/Switch.js' { + declare module.exports: $Exports<'@material-ui/core/Switch/Switch'>; +} +declare module '@material-ui/core/Tab/index' { + declare module.exports: $Exports<'@material-ui/core/Tab'>; +} +declare module '@material-ui/core/Tab/index.js' { + declare module.exports: $Exports<'@material-ui/core/Tab'>; +} +declare module '@material-ui/core/Tab/Tab.js' { + declare module.exports: $Exports<'@material-ui/core/Tab/Tab'>; +} +declare module '@material-ui/core/Table/index' { + declare module.exports: $Exports<'@material-ui/core/Table'>; +} +declare module '@material-ui/core/Table/index.js' { + declare module.exports: $Exports<'@material-ui/core/Table'>; +} +declare module '@material-ui/core/Table/Table.js' { + declare module.exports: $Exports<'@material-ui/core/Table/Table'>; +} +declare module '@material-ui/core/Table/TableContext.js' { + declare module.exports: $Exports<'@material-ui/core/Table/TableContext'>; +} +declare module '@material-ui/core/Table/Tablelvl2Context.js' { + declare module.exports: $Exports<'@material-ui/core/Table/Tablelvl2Context'>; +} +declare module '@material-ui/core/TableBody/index' { + declare module.exports: $Exports<'@material-ui/core/TableBody'>; +} +declare module '@material-ui/core/TableBody/index.js' { + declare module.exports: $Exports<'@material-ui/core/TableBody'>; +} +declare module '@material-ui/core/TableBody/TableBody.js' { + declare module.exports: $Exports<'@material-ui/core/TableBody/TableBody'>; +} +declare module '@material-ui/core/TableCell/index' { + declare module.exports: $Exports<'@material-ui/core/TableCell'>; +} +declare module '@material-ui/core/TableCell/index.js' { + declare module.exports: $Exports<'@material-ui/core/TableCell'>; +} +declare module '@material-ui/core/TableCell/TableCell.js' { + declare module.exports: $Exports<'@material-ui/core/TableCell/TableCell'>; +} +declare module '@material-ui/core/TableFooter/index' { + declare module.exports: $Exports<'@material-ui/core/TableFooter'>; +} +declare module '@material-ui/core/TableFooter/index.js' { + declare module.exports: $Exports<'@material-ui/core/TableFooter'>; +} +declare module '@material-ui/core/TableFooter/TableFooter.js' { + declare module.exports: $Exports<'@material-ui/core/TableFooter/TableFooter'>; +} +declare module '@material-ui/core/TableHead/index' { + declare module.exports: $Exports<'@material-ui/core/TableHead'>; +} +declare module '@material-ui/core/TableHead/index.js' { + declare module.exports: $Exports<'@material-ui/core/TableHead'>; +} +declare module '@material-ui/core/TableHead/TableHead.js' { + declare module.exports: $Exports<'@material-ui/core/TableHead/TableHead'>; +} +declare module '@material-ui/core/TablePagination/index' { + declare module.exports: $Exports<'@material-ui/core/TablePagination'>; +} +declare module '@material-ui/core/TablePagination/index.js' { + declare module.exports: $Exports<'@material-ui/core/TablePagination'>; +} +declare module '@material-ui/core/TablePagination/TablePagination.js' { + declare module.exports: $Exports<'@material-ui/core/TablePagination/TablePagination'>; +} +declare module '@material-ui/core/TablePagination/TablePaginationActions.js' { + declare module.exports: $Exports<'@material-ui/core/TablePagination/TablePaginationActions'>; +} +declare module '@material-ui/core/TableRow/index' { + declare module.exports: $Exports<'@material-ui/core/TableRow'>; +} +declare module '@material-ui/core/TableRow/index.js' { + declare module.exports: $Exports<'@material-ui/core/TableRow'>; +} +declare module '@material-ui/core/TableRow/TableRow.js' { + declare module.exports: $Exports<'@material-ui/core/TableRow/TableRow'>; +} +declare module '@material-ui/core/TableSortLabel/index' { + declare module.exports: $Exports<'@material-ui/core/TableSortLabel'>; +} +declare module '@material-ui/core/TableSortLabel/index.js' { + declare module.exports: $Exports<'@material-ui/core/TableSortLabel'>; +} +declare module '@material-ui/core/TableSortLabel/TableSortLabel.js' { + declare module.exports: $Exports<'@material-ui/core/TableSortLabel/TableSortLabel'>; +} +declare module '@material-ui/core/Tabs/index' { + declare module.exports: $Exports<'@material-ui/core/Tabs'>; +} +declare module '@material-ui/core/Tabs/index.js' { + declare module.exports: $Exports<'@material-ui/core/Tabs'>; +} +declare module '@material-ui/core/Tabs/ScrollbarSize.js' { + declare module.exports: $Exports<'@material-ui/core/Tabs/ScrollbarSize'>; +} +declare module '@material-ui/core/Tabs/TabIndicator.js' { + declare module.exports: $Exports<'@material-ui/core/Tabs/TabIndicator'>; +} +declare module '@material-ui/core/Tabs/Tabs.js' { + declare module.exports: $Exports<'@material-ui/core/Tabs/Tabs'>; +} +declare module '@material-ui/core/Tabs/TabScrollButton.js' { + declare module.exports: $Exports<'@material-ui/core/Tabs/TabScrollButton'>; +} +declare module '@material-ui/core/test-utils/createMount.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/createMount'>; +} +declare module '@material-ui/core/test-utils/createRender.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/createRender'>; +} +declare module '@material-ui/core/test-utils/createShallow.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/createShallow'>; +} +declare module '@material-ui/core/test-utils/describeConformance.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/describeConformance'>; +} +declare module '@material-ui/core/test-utils/findOutermostIntrinsic.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/findOutermostIntrinsic'>; +} +declare module '@material-ui/core/test-utils/getClasses.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/getClasses'>; +} +declare module '@material-ui/core/test-utils/index' { + declare module.exports: $Exports<'@material-ui/core/test-utils'>; +} +declare module '@material-ui/core/test-utils/index.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils'>; +} +declare module '@material-ui/core/test-utils/RenderMode.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/RenderMode'>; +} +declare module '@material-ui/core/test-utils/testRef.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/testRef'>; +} +declare module '@material-ui/core/test-utils/until.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/until'>; +} +declare module '@material-ui/core/test-utils/unwrap.js' { + declare module.exports: $Exports<'@material-ui/core/test-utils/unwrap'>; +} +declare module '@material-ui/core/TextareaAutosize/index' { + declare module.exports: $Exports<'@material-ui/core/TextareaAutosize'>; +} +declare module '@material-ui/core/TextareaAutosize/index.js' { + declare module.exports: $Exports<'@material-ui/core/TextareaAutosize'>; +} +declare module '@material-ui/core/TextareaAutosize/TextareaAutosize.js' { + declare module.exports: $Exports<'@material-ui/core/TextareaAutosize/TextareaAutosize'>; +} +declare module '@material-ui/core/TextField/index' { + declare module.exports: $Exports<'@material-ui/core/TextField'>; +} +declare module '@material-ui/core/TextField/index.js' { + declare module.exports: $Exports<'@material-ui/core/TextField'>; +} +declare module '@material-ui/core/TextField/TextField.js' { + declare module.exports: $Exports<'@material-ui/core/TextField/TextField'>; +} +declare module '@material-ui/core/Toolbar/index' { + declare module.exports: $Exports<'@material-ui/core/Toolbar'>; +} +declare module '@material-ui/core/Toolbar/index.js' { + declare module.exports: $Exports<'@material-ui/core/Toolbar'>; +} +declare module '@material-ui/core/Toolbar/Toolbar.js' { + declare module.exports: $Exports<'@material-ui/core/Toolbar/Toolbar'>; +} +declare module '@material-ui/core/Tooltip/index' { + declare module.exports: $Exports<'@material-ui/core/Tooltip'>; +} +declare module '@material-ui/core/Tooltip/index.js' { + declare module.exports: $Exports<'@material-ui/core/Tooltip'>; +} +declare module '@material-ui/core/Tooltip/Tooltip.js' { + declare module.exports: $Exports<'@material-ui/core/Tooltip/Tooltip'>; +} +declare module '@material-ui/core/transitions/utils.js' { + declare module.exports: $Exports<'@material-ui/core/transitions/utils'>; +} +declare module '@material-ui/core/Typography/index' { + declare module.exports: $Exports<'@material-ui/core/Typography'>; +} +declare module '@material-ui/core/Typography/index.js' { + declare module.exports: $Exports<'@material-ui/core/Typography'>; +} +declare module '@material-ui/core/Typography/Typography.js' { + declare module.exports: $Exports<'@material-ui/core/Typography/Typography'>; +} +declare module '@material-ui/core/umd/material-ui.development.js' { + declare module.exports: $Exports<'@material-ui/core/umd/material-ui.development'>; +} +declare module '@material-ui/core/umd/material-ui.production.min.js' { + declare module.exports: $Exports<'@material-ui/core/umd/material-ui.production.min'>; +} +declare module '@material-ui/core/useMediaQuery/index' { + declare module.exports: $Exports<'@material-ui/core/useMediaQuery'>; +} +declare module '@material-ui/core/useMediaQuery/index.js' { + declare module.exports: $Exports<'@material-ui/core/useMediaQuery'>; +} +declare module '@material-ui/core/useMediaQuery/useMediaQuery.js' { + declare module.exports: $Exports<'@material-ui/core/useMediaQuery/useMediaQuery'>; +} +declare module '@material-ui/core/useMediaQuery/useMediaQueryTheme.js' { + declare module.exports: $Exports<'@material-ui/core/useMediaQuery/useMediaQueryTheme'>; +} +declare module '@material-ui/core/useScrollTrigger/index' { + declare module.exports: $Exports<'@material-ui/core/useScrollTrigger'>; +} +declare module '@material-ui/core/useScrollTrigger/index.js' { + declare module.exports: $Exports<'@material-ui/core/useScrollTrigger'>; +} +declare module '@material-ui/core/useScrollTrigger/useScrollTrigger.js' { + declare module.exports: $Exports<'@material-ui/core/useScrollTrigger/useScrollTrigger'>; +} +declare module '@material-ui/core/utils/capitalize.js' { + declare module.exports: $Exports<'@material-ui/core/utils/capitalize'>; +} +declare module '@material-ui/core/utils/createChainedFunction.js' { + declare module.exports: $Exports<'@material-ui/core/utils/createChainedFunction'>; +} +declare module '@material-ui/core/utils/debounce.js' { + declare module.exports: $Exports<'@material-ui/core/utils/debounce'>; +} +declare module '@material-ui/core/utils/deprecatedPropType.js' { + declare module.exports: $Exports<'@material-ui/core/utils/deprecatedPropType'>; +} +declare module '@material-ui/core/utils/focusVisible.js' { + declare module.exports: $Exports<'@material-ui/core/utils/focusVisible'>; +} +declare module '@material-ui/core/utils/getScrollbarSize.js' { + declare module.exports: $Exports<'@material-ui/core/utils/getScrollbarSize'>; +} +declare module '@material-ui/core/utils/index' { + declare module.exports: $Exports<'@material-ui/core/utils'>; +} +declare module '@material-ui/core/utils/index.js' { + declare module.exports: $Exports<'@material-ui/core/utils'>; +} +declare module '@material-ui/core/utils/isMuiElement.js' { + declare module.exports: $Exports<'@material-ui/core/utils/isMuiElement'>; +} +declare module '@material-ui/core/utils/ownerDocument.js' { + declare module.exports: $Exports<'@material-ui/core/utils/ownerDocument'>; +} +declare module '@material-ui/core/utils/ownerWindow.js' { + declare module.exports: $Exports<'@material-ui/core/utils/ownerWindow'>; +} +declare module '@material-ui/core/utils/requirePropFactory.js' { + declare module.exports: $Exports<'@material-ui/core/utils/requirePropFactory'>; +} +declare module '@material-ui/core/utils/setRef.js' { + declare module.exports: $Exports<'@material-ui/core/utils/setRef'>; +} +declare module '@material-ui/core/utils/unsupportedProp.js' { + declare module.exports: $Exports<'@material-ui/core/utils/unsupportedProp'>; +} +declare module '@material-ui/core/utils/useEventCallback.js' { + declare module.exports: $Exports<'@material-ui/core/utils/useEventCallback'>; +} +declare module '@material-ui/core/utils/useForkRef.js' { + declare module.exports: $Exports<'@material-ui/core/utils/useForkRef'>; +} +declare module '@material-ui/core/withMobileDialog/index' { + declare module.exports: $Exports<'@material-ui/core/withMobileDialog'>; +} +declare module '@material-ui/core/withMobileDialog/index.js' { + declare module.exports: $Exports<'@material-ui/core/withMobileDialog'>; +} +declare module '@material-ui/core/withMobileDialog/withMobileDialog.js' { + declare module.exports: $Exports<'@material-ui/core/withMobileDialog/withMobileDialog'>; +} +declare module '@material-ui/core/withWidth/index' { + declare module.exports: $Exports<'@material-ui/core/withWidth'>; +} +declare module '@material-ui/core/withWidth/index.js' { + declare module.exports: $Exports<'@material-ui/core/withWidth'>; +} +declare module '@material-ui/core/withWidth/withWidth.js' { + declare module.exports: $Exports<'@material-ui/core/withWidth/withWidth'>; +} +declare module '@material-ui/core/Zoom/index' { + declare module.exports: $Exports<'@material-ui/core/Zoom'>; +} +declare module '@material-ui/core/Zoom/index.js' { + declare module.exports: $Exports<'@material-ui/core/Zoom'>; +} +declare module '@material-ui/core/Zoom/Zoom.js' { + declare module.exports: $Exports<'@material-ui/core/Zoom/Zoom'>; +} diff --git a/flow-typed/npm/@material-ui/icons_v4.x.x.js b/flow-typed/npm/@material-ui/icons_v4.x.x.js new file mode 100644 index 00000000..06c45536 --- /dev/null +++ b/flow-typed/npm/@material-ui/icons_v4.x.x.js @@ -0,0 +1,35153 @@ +// flow-typed signature: cfa1aefc9e7f27753c67f625b05ab1ec +// flow-typed version: c6154227d1/@material-ui/icons_v4.x.x/flow_>=v0.104.x + +/* + * Created and maintained: https://github.com/retyui + */ + +/* + * A next module declaration is a copy paste of type from `@material-ui/core` + * I use `@@SvgIcon` name to not cause conflicts with the original type. + * More info: https://github.com/flow-typed/flow-typed/pull/3303#issuecomment-493877563 + */ +declare module '@material-ui/core/@@SvgIcon' { + declare type SVGElementProps = {...}; + + // https://github.com/mui-org/material-ui/blob/4d363ad26a3da350344ef5d374841647adf9e5b0/packages/material-ui/src/index.d.ts#L54 + declare type PropTypes$Color = + | 'inherit' + | 'primary' + | 'secondary' + | 'default'; + declare export type SvgIconProps = SVGElementProps & { + classes?: {| + root?: string, + colorSecondary?: string, + colorAction?: string, + colorDisabled?: string, + colorError?: string, + colorPrimary?: string, + fontSizeInherit?: string, + fontSizeSmall?: string, + fontSizeLarge?: string, + |}, + color?: PropTypes$Color | 'action' | 'disabled' | 'error', + fontSize?: 'inherit' | 'default' | 'small' | 'large', + htmlColor?: string, + shapeRendering?: string, + titleAccess?: string, + viewBox?: string, + className?: string, + style?: {...}, + component?: mixed, + ... + }; + + declare export default React$ComponentType; +} + +declare module '@material-ui/icons/AccessAlarm' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessAlarmOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessAlarmRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessAlarmSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessAlarms' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessAlarmsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessAlarmsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessAlarmsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessAlarmsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessAlarmTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Accessibility' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibilityNew' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibilityNewOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibilityNewRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibilityNewSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibilityNewTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibilityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibilityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibilitySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibilityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibleForward' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibleForwardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibleForwardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibleForwardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibleForwardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Accessible' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessibleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessTime' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessTimeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessTimeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessTimeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccessTimeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalance' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalanceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalanceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalanceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalanceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalanceWallet' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalanceWalletOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalanceWalletRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalanceWalletSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBalanceWalletTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBox' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBoxOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBoxRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBoxSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountBoxTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AccountCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AcUnit' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AcUnitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AcUnitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AcUnitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AcUnitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Adb' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AdbOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AdbRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AdbSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AdbTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlarm' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlarmOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlarmRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlarmSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlarmTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlert' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlertOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlertRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlertSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAlertTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAPhoto' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAPhotoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAPhotoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAPhotoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddAPhotoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddBox' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddBoxOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddBoxRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddBoxSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddBoxTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircleOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircleOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircleOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircleOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircleOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddComment' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCommentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCommentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCommentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddCommentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Add' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddLocation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddLocationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddLocationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddLocationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddLocationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddPhotoAlternate' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddPhotoAlternateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddPhotoAlternateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddPhotoAlternateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddPhotoAlternateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddShoppingCart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddShoppingCartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddShoppingCartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddShoppingCartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddShoppingCartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToHomeScreen' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToHomeScreenOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToHomeScreenRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToHomeScreenSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToHomeScreenTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToPhotos' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToPhotosOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToPhotosRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToPhotosSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToPhotosTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToQueue' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToQueueOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToQueueRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToQueueSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddToQueueTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AddTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Adjust' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AdjustOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AdjustRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AdjustSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AdjustTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlatAngled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlatAngledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlatAngledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlatAngledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlatAngledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlat' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlatOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlatRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlatSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatFlatTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatIndividualSuite' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatIndividualSuiteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatIndividualSuiteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatIndividualSuiteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatIndividualSuiteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomExtra' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomExtraOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomExtraRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomExtraSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomExtraTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomNormal' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomNormalOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomNormalRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomNormalSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomNormalTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomReduced' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomReducedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomReducedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomReducedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatLegroomReducedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineExtra' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineExtraOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineExtraRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineExtraSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineExtraTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineNormal' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineNormalOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineNormalRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineNormalSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirlineSeatReclineNormalTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeActive' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeActiveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeActiveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeActiveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeActiveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeInactive' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeInactiveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeInactiveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeInactiveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplanemodeInactiveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Airplay' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirplayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirportShuttle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirportShuttleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirportShuttleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirportShuttleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AirportShuttleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmAdd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmAddOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmAddRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmAddSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmAddTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Alarm' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlarmTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Album' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlbumOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlbumRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlbumSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlbumTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInbox' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInboxOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInboxRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInboxSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInboxTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInclusive' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInclusiveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInclusiveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInclusiveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllInclusiveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllOut' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllOutOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllOutRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllOutSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AllOutTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlternateEmail' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlternateEmailOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlternateEmailRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlternateEmailSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AlternateEmailTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Android' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AndroidOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AndroidRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AndroidSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AndroidTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Announcement' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AnnouncementOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AnnouncementRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AnnouncementSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AnnouncementTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Apps' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AppsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AppsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AppsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AppsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Archive' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArchiveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArchiveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArchiveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArchiveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBackIos' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBackIosOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBackIosRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBackIosSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBackIosTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBack' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBackOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBackRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBackSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowBackTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDownward' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDownwardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDownwardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDownwardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDownwardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDownCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDownCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDownCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDownCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDownCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDown' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDownOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDownRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDownSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropDownTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropUp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropUpOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropUpRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropUpSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowDropUpTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForwardIos' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForwardIosOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForwardIosRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForwardIosSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForwardIosTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForward' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForwardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForwardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForwardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowForwardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowLeft' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowLeftOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowLeftRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowLeftSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowLeftTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRightAlt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRightAltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRightAltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRightAltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRightAltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowRightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowUpward' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowUpwardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowUpwardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowUpwardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArrowUpwardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArtTrack' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArtTrackOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArtTrackRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArtTrackSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ArtTrackTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AspectRatio' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AspectRatioOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AspectRatioRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AspectRatioSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AspectRatioTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Assessment' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssessmentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssessmentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssessmentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssessmentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentInd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentIndOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentIndRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentIndSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentIndTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Assignment' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentLate' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentLateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentLateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentLateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentLateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturned' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturnedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturnedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturnedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturnedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentReturnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentTurnedIn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentTurnedInOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentTurnedInRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentTurnedInSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentTurnedInTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssignmentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Assistant' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssistantOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssistantPhoto' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssistantPhotoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssistantPhotoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssistantPhotoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssistantPhotoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssistantRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssistantSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AssistantTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Atm' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AtmOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AtmRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AtmSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AtmTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachFile' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachFileOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachFileRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachFileSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachFileTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Attachment' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachmentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachmentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachmentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachmentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachMoney' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachMoneyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachMoneyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachMoneySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AttachMoneyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Audiotrack' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AudiotrackOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AudiotrackRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AudiotrackSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AudiotrackTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Autorenew' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AutorenewOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AutorenewRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AutorenewSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AutorenewTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AvTimer' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AvTimerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AvTimerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AvTimerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/AvTimerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Backspace' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BackspaceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BackspaceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BackspaceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BackspaceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Backup' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BackupOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BackupRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BackupSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BackupTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Ballot' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BallotOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BallotRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BallotSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BallotTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BarChart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BarChartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BarChartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BarChartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BarChartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery20' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery20Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery20Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery20Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery20TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery30' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery30Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery30Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery30Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery30TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery50' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery50Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery50Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery50Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery50TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery60' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery60Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery60Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery60Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery60TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery80' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery80Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery80Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery80Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery80TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery90' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery90Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery90Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery90Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Battery90TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryAlert' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryAlertOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryAlertRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryAlertSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryAlertTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging20' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging20Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging20Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging20Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging20TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging30' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging30Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging30Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging30Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging30TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging50' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging50Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging50Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging50Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging50TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging60' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging60Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging60Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging60Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging60TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging80' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging80Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging80Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging80Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging80TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging90' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging90Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging90Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging90Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryCharging90TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryChargingFull' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryChargingFullOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryChargingFullRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryChargingFullSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryChargingFullTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryFull' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryFullOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryFullRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryFullSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryFullTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryStd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryStdOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryStdRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryStdSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryStdTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryUnknown' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryUnknownOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryUnknownRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryUnknownSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BatteryUnknownTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BeachAccess' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BeachAccessOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BeachAccessRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BeachAccessSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BeachAccessTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Beenhere' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BeenhereOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BeenhereRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BeenhereSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BeenhereTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Block' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothAudio' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothAudioOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothAudioRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothAudioSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothAudioTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothConnected' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothConnectedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothConnectedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothConnectedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothConnectedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothDisabled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothDisabledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothDisabledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothDisabledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothDisabledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Bluetooth' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothSearching' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothSearchingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothSearchingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothSearchingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothSearchingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BluetoothTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurCircular' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurCircularOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurCircularRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurCircularSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurCircularTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurLinear' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurLinearOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurLinearRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurLinearSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurLinearTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BlurOnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Book' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarkBorder' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarkBorderOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarkBorderRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarkBorderSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarkBorderTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Bookmark' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Bookmarks' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarksOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarksRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarksSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarksTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookmarkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BookTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderAll' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderAllOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderAllRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderAllSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderAllTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderBottom' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderBottomOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderBottomRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderBottomSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderBottomTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderClear' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderClearOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderClearRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderClearSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderClearTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderColor' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderColorOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderColorRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderColorSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderColorTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderHorizontal' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderHorizontalOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderHorizontalRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderHorizontalSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderHorizontalTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderInner' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderInnerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderInnerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderInnerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderInnerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderLeft' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderLeftOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderLeftRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderLeftSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderLeftTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderOuter' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderOuterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderOuterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderOuterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderOuterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderRight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderRightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderRightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderRightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderRightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderStyle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderStyleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderStyleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderStyleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderStyleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderTop' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderTopOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderTopRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderTopSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderTopTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderVertical' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderVerticalOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderVerticalRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderVerticalSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BorderVerticalTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrandingWatermark' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrandingWatermarkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrandingWatermarkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrandingWatermarkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrandingWatermarkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness1' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness1Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness1Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness1Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness1TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness2' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness2Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness2Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness2Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness2TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness3' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness3Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness3Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness3Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness3TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness4' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness4Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness4Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness4Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness4TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness5' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness5Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness5Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness5Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness5TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness6' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness6Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness6Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness6Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness6TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness7' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness7Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness7Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness7Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brightness7TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessAuto' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessAutoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessAutoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessAutoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessAutoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessHigh' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessHighOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessHighRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessHighSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessHighTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessLow' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessLowOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessLowRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessLowSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessLowTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessMedium' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessMediumOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessMediumRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessMediumSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrightnessMediumTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrokenImage' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrokenImageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrokenImageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrokenImageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrokenImageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Brush' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrushOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrushRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrushSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BrushTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BubbleChart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BubbleChartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BubbleChartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BubbleChartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BubbleChartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BugReport' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BugReportOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BugReportRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BugReportSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BugReportTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Build' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BuildOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BuildRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BuildSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BuildTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BurstMode' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BurstModeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BurstModeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BurstModeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BurstModeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BusinessCenter' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BusinessCenterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BusinessCenterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BusinessCenterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BusinessCenterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Business' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BusinessOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BusinessRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BusinessSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/BusinessTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Cached' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CachedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CachedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CachedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CachedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Cake' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CakeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CakeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CakeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CakeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarToday' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarTodayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarTodayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarTodaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarTodayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarViewDay' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarViewDayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarViewDayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarViewDaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CalendarViewDayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallEnd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallEndOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallEndRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallEndSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallEndTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Call' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMade' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMadeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMadeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMadeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMadeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMerge' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMergeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMergeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMergeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMergeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissed' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissedOutgoing' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissedOutgoingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissedOutgoingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissedOutgoingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissedOutgoingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallMissedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallReceived' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallReceivedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallReceivedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallReceivedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallReceivedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallSplit' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallSplitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallSplitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallSplitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallSplitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallToAction' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallToActionOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallToActionRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallToActionSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallToActionTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CallTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraAlt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraAltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraAltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraAltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraAltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraEnhance' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraEnhanceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraEnhanceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraEnhanceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraEnhanceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraFront' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraFrontOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraFrontRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraFrontSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraFrontTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Camera' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRear' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRearOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRearRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRearSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRearTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRoll' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRollOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRollRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRollSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRollTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CameraTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Cancel' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CancelOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CancelPresentation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CancelPresentationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CancelPresentationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CancelPresentationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CancelPresentationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CancelRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CancelSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CancelTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardGiftcard' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardGiftcardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardGiftcardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardGiftcardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardGiftcardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardMembership' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardMembershipOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardMembershipRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardMembershipSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardMembershipTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardTravel' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardTravelOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardTravelRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardTravelSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CardTravelTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Casino' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CasinoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CasinoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CasinoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CasinoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastConnected' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastConnectedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastConnectedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastConnectedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastConnectedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastForEducation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastForEducationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastForEducationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastForEducationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastForEducationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Cast' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CastTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Category' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CategoryOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CategoryRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CategorySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CategoryTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CellWifi' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CellWifiOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CellWifiRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CellWifiSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CellWifiTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusStrong' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusStrongOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusStrongRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusStrongSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusStrongTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusWeak' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusWeakOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusWeakRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusWeakSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CenterFocusWeakTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChangeHistory' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChangeHistoryOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChangeHistoryRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChangeHistorySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChangeHistoryTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubble' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubbleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubbleOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubbleOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubbleOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubbleOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubbleOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubbleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubbleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatBubbleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Chat' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChatTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBox' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBoxOutlineBlank' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBoxOutlineBlankOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBoxOutlineBlankRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBoxOutlineBlankSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBoxOutlineBlankTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBoxOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBoxRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBoxSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckBoxTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircleOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircleOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircleOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircleOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircleOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Check' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CheckTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronLeft' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronLeftOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronLeftRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronLeftSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronLeftTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronRight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronRightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronRightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronRightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChevronRightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildCare' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildCareOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildCareRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildCareSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildCareTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildFriendly' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildFriendlyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildFriendlyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildFriendlySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChildFriendlyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChromeReaderMode' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChromeReaderModeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChromeReaderModeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChromeReaderModeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ChromeReaderModeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Class' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClassOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClassRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClassSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClassTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClearAll' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClearAllOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClearAllRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClearAllSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClearAllTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Clear' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClearOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClearRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClearSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClearTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClosedCaption' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClosedCaptionOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClosedCaptionRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClosedCaptionSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ClosedCaptionTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Close' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloseOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloseRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloseSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloseTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDownload' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDownloadOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDownloadRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDownloadSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudDownloadTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Cloud' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudQueue' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudQueueOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudQueueRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudQueueSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudQueueTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudUpload' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudUploadOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudUploadRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudUploadSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CloudUploadTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Code' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CodeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CodeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CodeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CodeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CollectionsBookmark' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CollectionsBookmarkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CollectionsBookmarkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CollectionsBookmarkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CollectionsBookmarkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Collections' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CollectionsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CollectionsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CollectionsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CollectionsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Colorize' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ColorizeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ColorizeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ColorizeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ColorizeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ColorLens' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ColorLensOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ColorLensRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ColorLensSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ColorLensTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Comment' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CommentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CommentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CommentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CommentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Commute' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CommuteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CommuteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CommuteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CommuteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompareArrows' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompareArrowsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompareArrowsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompareArrowsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompareArrowsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Compare' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompareOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompareRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompareSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompareTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompassCalibration' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompassCalibrationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompassCalibrationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompassCalibrationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CompassCalibrationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Computer' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ComputerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ComputerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ComputerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ComputerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ConfirmationNumber' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ConfirmationNumberOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ConfirmationNumberRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ConfirmationNumberSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ConfirmationNumberTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactMail' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactMailOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactMailRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactMailSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactMailTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactPhone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactPhoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactPhoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactPhoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactPhoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Contacts' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactSupport' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactSupportOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactSupportRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactSupportSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ContactSupportTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlCamera' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlCameraOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlCameraRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlCameraSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlCameraTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPointDuplicate' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPointDuplicateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPointDuplicateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPointDuplicateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPointDuplicateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPoint' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPointOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPointRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPointSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ControlPointTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Copyright' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CopyrightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CopyrightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CopyrightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CopyrightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Create' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreateNewFolder' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreateNewFolderOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreateNewFolderRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreateNewFolderSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreateNewFolderTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreditCard' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreditCardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreditCardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreditCardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CreditCardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop169' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop169Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop169Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop169Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop169TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop32' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop32Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop32Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop32Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop32TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop54' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop54Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop54Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop54Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop54TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop75' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop75Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop75Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop75Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop75TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropDin' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropDinOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropDinRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropDinSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropDinTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropFree' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropFreeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropFreeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropFreeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropFreeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Crop' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropLandscape' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropLandscapeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropLandscapeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropLandscapeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropLandscapeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropOriginal' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropOriginalOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropOriginalRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropOriginalSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropOriginalTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropPortrait' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropPortraitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropPortraitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropPortraitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropPortraitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropRotate' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropRotateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropRotateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropRotateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropRotateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropSquare' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropSquareOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropSquareRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropSquareSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropSquareTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/CropTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Dashboard' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DashboardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DashboardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DashboardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DashboardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DataUsage' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DataUsageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DataUsageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DataUsageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DataUsageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DateRange' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DateRangeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DateRangeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DateRangeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DateRangeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Dehaze' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DehazeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DehazeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DehazeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DehazeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteForever' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteForeverOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteForeverRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteForeverSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteForeverTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Delete' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteSweep' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteSweepOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteSweepRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteSweepSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteSweepTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeleteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DepartureBoard' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DepartureBoardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DepartureBoardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DepartureBoardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DepartureBoardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Description' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DescriptionOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DescriptionRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DescriptionSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DescriptionTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopAccessDisabled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopAccessDisabledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopAccessDisabledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopAccessDisabledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopAccessDisabledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopMac' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopMacOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopMacRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopMacSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopMacTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopWindows' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopWindowsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopWindowsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopWindowsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DesktopWindowsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Details' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DetailsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DetailsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DetailsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DetailsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperBoard' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperBoardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperBoardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperBoardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperBoardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperMode' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperModeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperModeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperModeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeveloperModeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceHub' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceHubOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceHubRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceHubSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceHubTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Devices' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DevicesOther' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DevicesOtherOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DevicesOtherRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DevicesOtherSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DevicesOtherTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DevicesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DevicesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DevicesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DevicesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceUnknown' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceUnknownOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceUnknownRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceUnknownSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DeviceUnknownTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DialerSip' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DialerSipOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DialerSipRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DialerSipSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DialerSipTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Dialpad' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DialpadOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DialpadRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DialpadSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DialpadTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBike' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBikeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBikeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBikeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBikeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBoat' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBoatOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBoatRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBoatSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBoatTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBus' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBusOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBusRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBusSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsBusTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsCar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsCarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsCarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsCarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsCarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Directions' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRailway' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRailwayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRailwayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRailwaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRailwayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRun' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRunOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRunRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRunSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsRunTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsSubway' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsSubwayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsSubwayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsSubwaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsSubwayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsTransit' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsTransitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsTransitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsTransitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsTransitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsWalk' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsWalkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsWalkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsWalkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DirectionsWalkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DiscFull' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DiscFullOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DiscFullRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DiscFullSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DiscFullTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Dns' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DnsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DnsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DnsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DnsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Dock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DomainDisabled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DomainDisabledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DomainDisabledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DomainDisabledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DomainDisabledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Domain' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DomainOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DomainRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DomainSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DomainTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneAll' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneAllOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneAllRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneAllSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneAllTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Done' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutLarge' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutLargeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutLargeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutLargeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutLargeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutSmall' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutSmallOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutSmallRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutSmallSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DonutSmallTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Drafts' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DraftsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DraftsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DraftsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DraftsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragHandle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragHandleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragHandleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragHandleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragHandleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragIndicator' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragIndicatorOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragIndicatorRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragIndicatorSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DragIndicatorTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DriveEta' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DriveEtaOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DriveEtaRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DriveEtaSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DriveEtaTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Duo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DuoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DuoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DuoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DuoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Dvr' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DvrOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DvrRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DvrSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/DvrTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditAttributes' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditAttributesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditAttributesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditAttributesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditAttributesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Edit' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditLocation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditLocationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditLocationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditLocationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditLocationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EditTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Eject' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EjectOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EjectRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EjectSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EjectTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Email' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EmailOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EmailRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EmailSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EmailTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EnhancedEncryption' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EnhancedEncryptionOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EnhancedEncryptionRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EnhancedEncryptionSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EnhancedEncryptionTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Equalizer' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EqualizerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EqualizerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EqualizerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EqualizerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Error' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ErrorOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ErrorOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ErrorOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ErrorOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ErrorOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ErrorOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ErrorRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ErrorSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ErrorTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EuroSymbol' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EuroSymbolOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EuroSymbolRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EuroSymbolSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EuroSymbolTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventAvailable' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventAvailableOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventAvailableRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventAvailableSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventAvailableTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventBusy' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventBusyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventBusyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventBusySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventBusyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Event' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventNote' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventNoteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventNoteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventNoteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventNoteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventSeat' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventSeatOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventSeatRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventSeatSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventSeatTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EventTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EvStation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EvStationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EvStationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EvStationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/EvStationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExitToApp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExitToAppOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExitToAppRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExitToAppSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExitToAppTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandLess' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandLessOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandLessRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandLessSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandLessTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandMore' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandMoreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandMoreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandMoreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExpandMoreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Explicit' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExplicitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExplicitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExplicitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExplicitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Explore' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExploreOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExploreOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExploreOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExploreOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExploreOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExploreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExploreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExploreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExploreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Exposure' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg1' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg1Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg1Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg1Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg1TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg2' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg2Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg2Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg2Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureNeg2TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus1' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus1Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus1Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus1Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus1TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus2' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus2Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus2Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus2Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposurePlus2TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureZero' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureZeroOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureZeroRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureZeroSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExposureZeroTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Extension' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExtensionOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExtensionRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExtensionSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ExtensionTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Face' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FaceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FaceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FaceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FaceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Fastfood' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastfoodOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastfoodRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastfoodSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastfoodTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastForward' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastForwardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastForwardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastForwardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastForwardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastRewind' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastRewindOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastRewindRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastRewindSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FastRewindTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FavoriteBorder' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FavoriteBorderOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FavoriteBorderRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FavoriteBorderSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FavoriteBorderTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Favorite' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FavoriteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FavoriteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FavoriteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FavoriteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedPlayList' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedPlayListOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedPlayListRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedPlayListSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedPlayListTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedVideo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedVideoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedVideoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedVideoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeaturedVideoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Feedback' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeedbackOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeedbackRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeedbackSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FeedbackTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberDvr' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberDvrOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberDvrRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberDvrSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberDvrTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberManualRecord' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberManualRecordOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberManualRecordRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberManualRecordSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberManualRecordTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberNew' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberNewOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberNewRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberNewSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberNewTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberPin' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberPinOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberPinRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberPinSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberPinTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberSmartRecord' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberSmartRecordOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberSmartRecordRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberSmartRecordSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FiberSmartRecordTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FileCopy' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FileCopyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FileCopyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FileCopySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FileCopyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter1' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter1Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter1Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter1Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter1TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter2' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter2Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter2Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter2Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter2TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter3' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter3Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter3Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter3Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter3TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter4' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter4Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter4Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter4Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter4TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter5' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter5Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter5Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter5Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter5TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter6' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter6Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter6Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter6Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter6TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter7' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter7Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter7Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter7Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter7TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter8' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter8Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter8Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter8Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter8TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9Plus' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9PlusOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9PlusRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9PlusSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9PlusTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter9TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterBAndW' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterBAndWOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterBAndWRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterBAndWSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterBAndWTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterCenterFocus' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterCenterFocusOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterCenterFocusRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterCenterFocusSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterCenterFocusTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterDrama' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterDramaOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterDramaRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterDramaSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterDramaTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterFrames' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterFramesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterFramesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterFramesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterFramesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterHdr' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterHdrOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterHdrRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterHdrSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterHdrTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Filter' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterList' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterListOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterListRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterListSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterListTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterNone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterNoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterNoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterNoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterNoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterTiltShift' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterTiltShiftOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterTiltShiftRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterTiltShiftSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterTiltShiftTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterVintage' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterVintageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterVintageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterVintageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FilterVintageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindInPage' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindInPageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindInPageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindInPageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindInPageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindReplace' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindReplaceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindReplaceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindReplaceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FindReplaceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Fingerprint' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FingerprintOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FingerprintRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FingerprintSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FingerprintTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FirstPage' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FirstPageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FirstPageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FirstPageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FirstPageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FitnessCenter' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FitnessCenterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FitnessCenterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FitnessCenterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FitnessCenterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Flag' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlagOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlagRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlagSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlagTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Flare' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlareOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlareRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlareSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlareTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashAuto' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashAutoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashAutoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashAutoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashAutoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlashOnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Flight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightLand' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightLandOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightLandRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightLandSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightLandTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightTakeoff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightTakeoffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightTakeoffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightTakeoffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightTakeoffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Flip' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToBack' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToBackOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToBackRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToBackSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToBackTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToFront' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToFrontOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToFrontRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToFrontSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipToFrontTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FlipTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Folder' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderOpen' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderOpenOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderOpenRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderOpenSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderOpenTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderShared' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSharedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSharedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSharedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSharedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSpecial' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSpecialOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSpecialRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSpecialSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderSpecialTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FolderTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FontDownload' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FontDownloadOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FontDownloadRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FontDownloadSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FontDownloadTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignCenter' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignCenterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignCenterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignCenterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignCenterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignJustify' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignJustifyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignJustifyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignJustifySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignJustifyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignLeft' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignLeftOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignLeftRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignLeftSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignLeftTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignRight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignRightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignRightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignRightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatAlignRightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatBold' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatBoldOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatBoldRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatBoldSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatBoldTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatClear' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatClearOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatClearRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatClearSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatClearTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorFill' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorFillOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorFillRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorFillSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorFillTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorReset' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorResetOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorResetRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorResetSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorResetTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorText' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorTextOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorTextRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorTextSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatColorTextTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentDecrease' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentDecreaseOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentDecreaseRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentDecreaseSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentDecreaseTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentIncrease' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentIncreaseOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentIncreaseRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentIncreaseSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatIndentIncreaseTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatItalic' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatItalicOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatItalicRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatItalicSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatItalicTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatLineSpacing' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatLineSpacingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatLineSpacingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatLineSpacingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatLineSpacingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListBulleted' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListBulletedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListBulletedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListBulletedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListBulletedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumbered' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumberedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumberedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumberedRtl' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumberedRtlOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumberedRtlRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumberedRtlSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumberedRtlTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumberedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatListNumberedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatPaint' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatPaintOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatPaintRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatPaintSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatPaintTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatQuote' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatQuoteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatQuoteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatQuoteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatQuoteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatShapes' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatShapesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatShapesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatShapesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatShapesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatSize' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatSizeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatSizeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatSizeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatSizeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatStrikethrough' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatStrikethroughOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatStrikethroughRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatStrikethroughSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatStrikethroughTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionLToR' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionLToROutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionLToRRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionLToRSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionLToRTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionRToL' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionRToLOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionRToLRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionRToLSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatTextdirectionRToLTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatUnderlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatUnderlinedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatUnderlinedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatUnderlinedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FormatUnderlinedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forum' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ForumOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ForumRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ForumSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ForumTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward10' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward10Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward10Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward10Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward10TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward30' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward30Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward30Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward30Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward30TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward5' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward5Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward5Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward5Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward5TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Forward' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ForwardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ForwardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ForwardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ForwardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FourK' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FourKOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FourKRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FourKSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FourKTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FreeBreakfast' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FreeBreakfastOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FreeBreakfastRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FreeBreakfastSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FreeBreakfastTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FullscreenExit' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FullscreenExitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FullscreenExitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FullscreenExitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FullscreenExitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Fullscreen' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FullscreenOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FullscreenRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FullscreenSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FullscreenTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Functions' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FunctionsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FunctionsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FunctionsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/FunctionsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Gamepad' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GamepadOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GamepadRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GamepadSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GamepadTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Games' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GamesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GamesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GamesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GamesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Gavel' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GavelOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GavelRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GavelSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GavelTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Gesture' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GestureOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GestureRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GestureSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GestureTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GetApp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GetAppOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GetAppRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GetAppSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GetAppTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Gif' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GifOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GifRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GifSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GifTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GolfCourse' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GolfCourseOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GolfCourseRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GolfCourseSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GolfCourseTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsFixed' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsFixedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsFixedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsFixedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsFixedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsNotFixed' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsNotFixedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsNotFixedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsNotFixedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsNotFixedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GpsOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Grade' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GradeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GradeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GradeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GradeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Gradient' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GradientOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GradientRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GradientSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GradientTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Grain' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GrainOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GrainRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GrainSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GrainTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GraphicEq' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GraphicEqOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GraphicEqRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GraphicEqSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GraphicEqTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GridOnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupAdd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupAddOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupAddRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupAddSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupAddTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Group' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupWork' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupWorkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupWorkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupWorkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GroupWorkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GTranslate' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GTranslateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GTranslateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GTranslateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/GTranslateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Hd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrOnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrStrong' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrStrongOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrStrongRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrStrongSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrStrongTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrWeak' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrWeakOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrWeakRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrWeakSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdrWeakTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HdTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Headset' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HeadsetMic' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HeadsetMicOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HeadsetMicRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HeadsetMicSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HeadsetMicTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HeadsetOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HeadsetRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HeadsetSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HeadsetTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Healing' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HealingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HealingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HealingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HealingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Hearing' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HearingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HearingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HearingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HearingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Help' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HelpOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HelpOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HelpOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HelpOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HelpOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HelpOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HelpRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HelpSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HelpTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Highlight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighlightOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighlightOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighlightOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighlightOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighlightOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighlightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighlightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighlightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighlightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighQuality' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighQualityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighQualityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighQualitySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HighQualityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/History' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HistoryOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HistoryRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HistorySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HistoryTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Home' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HomeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HomeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HomeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HomeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HorizontalSplit' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HorizontalSplitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HorizontalSplitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HorizontalSplitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HorizontalSplitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Hotel' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HotelOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HotelRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HotelSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HotelTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HotTub' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HotTubOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HotTubRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HotTubSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HotTubTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassEmpty' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassEmptyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassEmptyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassEmptySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassEmptyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassFull' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassFullOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassFullRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassFullSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HourglassFullTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToReg' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToRegOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToRegRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToRegSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToRegTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToVote' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToVoteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToVoteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToVoteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HowToVoteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Http' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HttpOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HttpRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HttpSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Https' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HttpsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HttpsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HttpsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HttpsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/HttpTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageAspectRatio' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageAspectRatioOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageAspectRatioRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageAspectRatioSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageAspectRatioTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Image' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageSearch' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageSearchOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageSearchRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageSearchSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageSearchTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportantDevices' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportantDevicesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportantDevicesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportantDevicesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportantDevicesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportContacts' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportContactsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportContactsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportContactsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportContactsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportExport' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportExportOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportExportRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportExportSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ImportExportTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Inbox' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InboxOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InboxRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InboxSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InboxTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/IndeterminateCheckBox' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/IndeterminateCheckBoxOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/IndeterminateCheckBoxRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/IndeterminateCheckBoxSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/IndeterminateCheckBoxTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/index' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Info' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InfoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InfoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InfoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InfoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Input' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InputOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InputRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InputSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InputTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertChart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertChartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertChartOutlinedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertChartOutlinedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertChartOutlinedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertChartOutlinedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertChartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertChartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertChartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertComment' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertCommentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertCommentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertCommentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertCommentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertDriveFile' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertDriveFileOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertDriveFileRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertDriveFileSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertDriveFileTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertEmoticon' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertEmoticonOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertEmoticonRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertEmoticonSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertEmoticonTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertInvitation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertInvitationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertInvitationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertInvitationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertInvitationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertLink' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertLinkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertLinkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertLinkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertLinkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertPhoto' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertPhotoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertPhotoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertPhotoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InsertPhotoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColors' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColorsOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColorsOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColorsOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColorsOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColorsOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColorsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColorsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColorsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/InvertColorsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Iso' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/IsoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/IsoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/IsoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/IsoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowDown' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowDownOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowDownRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowDownSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowDownTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowLeft' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowLeftOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowLeftRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowLeftSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowLeftTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowRight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowRightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowRightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowRightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowRightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowUp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowUpOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowUpRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowUpSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardArrowUpTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardBackspace' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardBackspaceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardBackspaceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardBackspaceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardBackspaceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardCapslock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardCapslockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardCapslockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardCapslockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardCapslockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardHide' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardHideOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardHideRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardHideSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardHideTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Keyboard' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardReturn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardReturnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardReturnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardReturnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardReturnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardTab' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardTabOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardTabRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardTabSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardTabTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardVoice' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardVoiceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardVoiceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardVoiceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KeyboardVoiceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Kitchen' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KitchenOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KitchenRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KitchenSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/KitchenTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelImportant' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelImportantOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelImportantRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelImportantSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelImportantTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Label' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LabelTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Landscape' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LandscapeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LandscapeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LandscapeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LandscapeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Language' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LanguageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LanguageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LanguageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LanguageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopChromebook' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopChromebookOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopChromebookRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopChromebookSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopChromebookTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Laptop' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopMac' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopMacOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopMacRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopMacSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopMacTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopWindows' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopWindowsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopWindowsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopWindowsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaptopWindowsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LastPage' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LastPageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LastPageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LastPageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LastPageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Launch' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaunchOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaunchRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaunchSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LaunchTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LayersClear' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LayersClearOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LayersClearRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LayersClearSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LayersClearTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Layers' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LayersOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LayersRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LayersSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LayersTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakAdd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakAddOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakAddRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakAddSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakAddTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakRemove' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakRemoveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakRemoveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakRemoveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LeakRemoveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Lens' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LensOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LensRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LensSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LensTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryAdd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryAddOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryAddRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryAddSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryAddTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryBooks' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryBooksOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryBooksRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryBooksSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryBooksTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryMusic' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryMusicOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryMusicRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryMusicSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LibraryMusicTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinearScale' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinearScaleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinearScaleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinearScaleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinearScaleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineStyle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineStyleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineStyleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineStyleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineStyleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineWeight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineWeightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineWeightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineWeightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LineWeightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkedCamera' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkedCameraOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkedCameraRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkedCameraSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkedCameraTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Link' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LinkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ListAlt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ListAltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ListAltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ListAltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ListAltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/List' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ListOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ListRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ListSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ListTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveHelp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveHelpOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveHelpRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveHelpSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveHelpTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveTv' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveTvOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveTvRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveTvSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LiveTvTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalActivity' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalActivityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalActivityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalActivitySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalActivityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAirport' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAirportOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAirportRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAirportSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAirportTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAtm' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAtmOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAtmRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAtmSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalAtmTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalBar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalBarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalBarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalBarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalBarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCafe' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCafeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCafeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCafeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCafeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCarWash' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCarWashOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCarWashRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCarWashSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalCarWashTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalConvenienceStore' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalConvenienceStoreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalConvenienceStoreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalConvenienceStoreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalConvenienceStoreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDining' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDiningOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDiningRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDiningSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDiningTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDrink' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDrinkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDrinkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDrinkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalDrinkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalFlorist' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalFloristOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalFloristRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalFloristSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalFloristTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGasStation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGasStationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGasStationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGasStationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGasStationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGroceryStore' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGroceryStoreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGroceryStoreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGroceryStoreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalGroceryStoreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHospital' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHospitalOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHospitalRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHospitalSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHospitalTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHotel' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHotelOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHotelRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHotelSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalHotelTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLaundryService' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLaundryServiceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLaundryServiceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLaundryServiceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLaundryServiceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLibrary' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLibraryOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLibraryRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLibrarySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalLibraryTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMall' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMallOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMallRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMallSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMallTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMovies' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMoviesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMoviesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMoviesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalMoviesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalOffer' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalOfferOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalOfferRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalOfferSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalOfferTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalParking' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalParkingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalParkingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalParkingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalParkingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPharmacy' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPharmacyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPharmacyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPharmacySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPharmacyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPhone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPhoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPhoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPhoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPhoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPizza' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPizzaOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPizzaRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPizzaSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPizzaTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPlay' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPlayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPlayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPlaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPlayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPostOffice' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPostOfficeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPostOfficeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPostOfficeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPostOfficeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPrintshop' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPrintshopOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPrintshopRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPrintshopSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalPrintshopTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalSee' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalSeeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalSeeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalSeeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalSeeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalShipping' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalShippingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalShippingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalShippingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalShippingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalTaxi' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalTaxiOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalTaxiRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalTaxiSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocalTaxiTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationCity' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationCityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationCityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationCitySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationCityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationDisabled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationDisabledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationDisabledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationDisabledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationDisabledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationOnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationSearching' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationSearchingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationSearchingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationSearchingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LocationSearchingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Lock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LockOpen' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LockOpenOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LockOpenRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LockOpenSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LockOpenTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks3' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks3Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks3Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks3Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks3TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks4' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks4Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks4Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks4Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks4TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks5' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks5Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks5Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks5Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks5TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks6' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks6Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks6Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks6Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks6TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Looks' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksOne' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksOneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksOneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksOneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksOneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksTwo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksTwoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksTwoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksTwoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LooksTwoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Loop' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoopOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoopRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoopSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoopTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Loupe' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoupeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoupeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoupeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoupeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LowPriority' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LowPriorityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LowPriorityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LowPrioritySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LowPriorityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Loyalty' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoyaltyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoyaltyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoyaltySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/LoyaltyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Mail' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MailOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MailOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MailOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MailOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MailOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MailOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MailRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MailSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MailTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Map' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MapOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MapRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MapSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MapTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Markunread' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MarkunreadMailbox' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MarkunreadMailboxOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MarkunreadMailboxRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MarkunreadMailboxSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MarkunreadMailboxTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MarkunreadOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MarkunreadRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MarkunreadSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MarkunreadTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Maximize' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MaximizeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MaximizeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MaximizeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MaximizeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MeetingRoom' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MeetingRoomOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MeetingRoomRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MeetingRoomSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MeetingRoomTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Memory' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MemoryOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MemoryRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MemorySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MemoryTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Menu' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MenuOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MenuRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MenuSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MenuTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MergeType' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MergeTypeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MergeTypeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MergeTypeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MergeTypeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Message' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MessageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MessageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MessageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MessageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Mic' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicNone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicNoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicNoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicNoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicNoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MicTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Minimize' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MinimizeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MinimizeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MinimizeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MinimizeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MissedVideoCall' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MissedVideoCallOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MissedVideoCallRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MissedVideoCallSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MissedVideoCallTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Mms' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MmsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MmsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MmsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MmsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileFriendly' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileFriendlyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileFriendlyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileFriendlySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileFriendlyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileScreenShare' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileScreenShareOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileScreenShareRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileScreenShareSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MobileScreenShareTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ModeComment' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ModeCommentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ModeCommentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ModeCommentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ModeCommentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonetizationOn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonetizationOnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonetizationOnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonetizationOnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonetizationOnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Money' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoneyOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoneyOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoneyOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoneyOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoneyOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoneyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoneyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoneySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoneyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonochromePhotos' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonochromePhotosOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonochromePhotosRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonochromePhotosSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MonochromePhotosTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoodBad' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoodBadOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoodBadRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoodBadSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoodBadTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Mood' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoodOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoodRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoodSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoodTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreHoriz' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreHorizOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreHorizRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreHorizSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreHorizTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/More' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreVert' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreVertOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreVertRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreVertSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoreVertTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Motorcycle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MotorcycleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MotorcycleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MotorcycleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MotorcycleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Mouse' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MouseOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MouseRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MouseSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MouseTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoveToInbox' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoveToInboxOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoveToInboxRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoveToInboxSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MoveToInboxTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieCreation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieCreationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieCreationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieCreationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieCreationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieFilter' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieFilterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieFilterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieFilterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieFilterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Movie' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MovieTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MultilineChart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MultilineChartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MultilineChartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MultilineChartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MultilineChartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicNote' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicNoteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicNoteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicNoteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicNoteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicVideo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicVideoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicVideoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicVideoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MusicVideoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MyLocation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MyLocationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MyLocationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MyLocationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/MyLocationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Nature' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NatureOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NaturePeople' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NaturePeopleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NaturePeopleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NaturePeopleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NaturePeopleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NatureRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NatureSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NatureTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateBefore' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateBeforeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateBeforeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateBeforeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateBeforeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateNext' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateNextOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateNextRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateNextSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigateNextTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Navigation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NavigationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NearMe' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NearMeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NearMeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NearMeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NearMeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCell' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCellOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCellRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCellSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCellTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCheck' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCheckOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCheckRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCheckSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkCheckTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkLocked' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkLockedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkLockedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkLockedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkLockedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkWifi' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkWifiOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkWifiRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkWifiSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NetworkWifiTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NewReleases' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NewReleasesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NewReleasesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NewReleasesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NewReleasesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NextWeek' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NextWeekOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NextWeekRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NextWeekSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NextWeekTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Nfc' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NfcOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NfcRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NfcSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NfcTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoEncryption' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoEncryptionOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoEncryptionRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoEncryptionSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoEncryptionTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoMeetingRoom' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoMeetingRoomOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoMeetingRoomRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoMeetingRoomSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoMeetingRoomTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoSim' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoSimOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoSimRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoSimSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoSimTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoteAdd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoteAddOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoteAddRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoteAddSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoteAddTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Note' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Notes' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NoteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationImportant' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationImportantOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationImportantRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationImportantSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationImportantTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsActive' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsActiveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsActiveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsActiveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsActiveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Notifications' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsNone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsNoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsNoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsNoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsNoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsPaused' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsPausedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsPausedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsPausedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsPausedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotificationsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotInterested' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotInterestedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotInterestedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotInterestedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotInterestedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotListedLocation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotListedLocationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotListedLocationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotListedLocationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/NotListedLocationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflineBolt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflineBoltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflineBoltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflineBoltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflineBoltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflinePin' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflinePinOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflinePinRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflinePinSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OfflinePinTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OndemandVideo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OndemandVideoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OndemandVideoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OndemandVideoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OndemandVideoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Opacity' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpacityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpacityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpacitySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpacityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInBrowser' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInBrowserOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInBrowserRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInBrowserSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInBrowserTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInNew' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInNewOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInNewRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInNewSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenInNewTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenWith' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenWithOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenWithRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenWithSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OpenWithTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OutlinedFlag' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OutlinedFlagOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OutlinedFlagRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OutlinedFlagSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/OutlinedFlagTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Pages' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PagesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PagesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PagesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PagesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Pageview' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PageviewOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PageviewRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PageviewSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PageviewTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Palette' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PaletteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PaletteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PaletteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PaletteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaFishEye' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaFishEyeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaFishEyeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaFishEyeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaFishEyeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaHorizontal' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaHorizontalOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaHorizontalRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaHorizontalSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaHorizontalTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Panorama' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaVertical' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaVerticalOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaVerticalRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaVerticalSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaVerticalTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaWideAngle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaWideAngleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaWideAngleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaWideAngleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanoramaWideAngleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanTool' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanToolOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanToolRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanToolSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PanToolTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PartyMode' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PartyModeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PartyModeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PartyModeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PartyModeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleFilled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleFilledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleFilledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleFilledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleFilledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseCircleOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Pause' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PausePresentation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PausePresentationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PausePresentationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PausePresentationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PausePresentationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PauseTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Payment' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PaymentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PaymentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PaymentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PaymentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/People' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PeopleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PeopleOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PeopleOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PeopleOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PeopleOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PeopleOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PeopleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PeopleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PeopleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermCameraMic' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermCameraMicOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermCameraMicRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermCameraMicSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermCameraMicTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermContactCalendar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermContactCalendarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermContactCalendarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermContactCalendarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermContactCalendarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDataSetting' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDataSettingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDataSettingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDataSettingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDataSettingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDeviceInformation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDeviceInformationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDeviceInformationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDeviceInformationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermDeviceInformationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermIdentity' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermIdentityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermIdentityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermIdentitySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermIdentityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermMedia' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermMediaOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermMediaRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermMediaSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermMediaTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermPhoneMsg' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermPhoneMsgOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermPhoneMsgRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermPhoneMsgSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermPhoneMsgTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermScanWifi' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermScanWifiOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermScanWifiRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermScanWifiSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PermScanWifiTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAddDisabled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAddDisabledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAddDisabledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAddDisabledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAddDisabledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAdd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAddOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAddRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAddSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonAddTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonalVideo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonalVideoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonalVideoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonalVideoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonalVideoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Person' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPinCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPinCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPinCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPinCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPinCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPin' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPinOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPinRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPinSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonPinTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PersonTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Pets' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PetsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PetsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PetsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PetsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneAndroid' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneAndroidOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneAndroidRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneAndroidSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneAndroidTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneBluetoothSpeaker' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneBluetoothSpeakerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneBluetoothSpeakerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneBluetoothSpeakerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneBluetoothSpeakerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneCallback' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneCallbackOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneCallbackRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneCallbackSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneCallbackTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneForwarded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneForwardedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneForwardedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneForwardedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneForwardedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneInTalk' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneInTalkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneInTalkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneInTalkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneInTalkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneIphone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneIphoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneIphoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneIphoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneIphoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Phone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkErase' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkEraseOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkEraseRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkEraseSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkEraseTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Phonelink' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkLock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkLockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkLockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkLockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkLockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkRing' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkRingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkRingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkRingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkRingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkSetup' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkSetupOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkSetupRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkSetupSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkSetupTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonelinkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneLocked' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneLockedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneLockedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneLockedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneLockedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneMissed' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneMissedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneMissedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneMissedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneMissedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonePaused' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonePausedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonePausedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonePausedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhonePausedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoAlbum' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoAlbumOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoAlbumRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoAlbumSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoAlbumTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoCamera' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoCameraOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoCameraRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoCameraSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoCameraTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoFilter' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoFilterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoFilterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoFilterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoFilterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Photo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoLibrary' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoLibraryOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoLibraryRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoLibrarySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoLibraryTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectActual' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectActualOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectActualRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectActualSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectActualTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectLarge' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectLargeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectLargeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectLargeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectLargeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectSmall' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectSmallOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectSmallRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectSmallSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoSizeSelectSmallTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PhotoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureAsPdf' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureAsPdfOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureAsPdfRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureAsPdfSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureAsPdfTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPictureAlt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPictureAltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPictureAltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPictureAltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPictureAltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPicture' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPictureOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPictureRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPictureSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PictureInPictureTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PieChart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PieChartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PieChartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PieChartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PieChartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PinDrop' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PinDropOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PinDropRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PinDropSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PinDropTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Place' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayArrow' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayArrowOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayArrowRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayArrowSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayArrowTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilledWhite' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilledWhiteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilledWhiteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilledWhiteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleFilledWhiteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayCircleOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayForWork' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayForWorkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayForWorkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayForWorkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlayForWorkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAddCheck' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAddCheckOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAddCheckRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAddCheckSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAddCheckTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAdd' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAddOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAddRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAddSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistAddTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistPlay' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistPlayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistPlayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistPlaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlaylistPlayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlusOne' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlusOneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlusOneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlusOneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PlusOneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Poll' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PollOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PollRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PollSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PollTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Polymer' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PolymerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PolymerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PolymerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PolymerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Pool' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PoolOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PoolRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PoolSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PoolTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PortableWifiOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PortableWifiOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PortableWifiOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PortableWifiOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PortableWifiOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Portrait' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PortraitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PortraitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PortraitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PortraitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerInput' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerInputOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerInputRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerInputSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerInputTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Power' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerSettingsNew' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerSettingsNewOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerSettingsNewRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerSettingsNewSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerSettingsNewTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PowerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PregnantWoman' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PregnantWomanOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PregnantWomanRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PregnantWomanSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PregnantWomanTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PresentToAll' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PresentToAllOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PresentToAllRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PresentToAllSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PresentToAllTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PrintDisabled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PrintDisabledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PrintDisabledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PrintDisabledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PrintDisabledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Print' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PrintOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PrintRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PrintSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PrintTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PriorityHigh' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PriorityHighOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PriorityHighRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PriorityHighSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PriorityHighTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Public' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PublicOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PublicRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PublicSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PublicTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Publish' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PublishOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PublishRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PublishSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/PublishTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueryBuilder' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueryBuilderOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueryBuilderRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueryBuilderSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueryBuilderTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QuestionAnswer' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QuestionAnswerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QuestionAnswerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QuestionAnswerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QuestionAnswerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Queue' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueueMusic' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueueMusicOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueueMusicRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueueMusicSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueueMusicTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueueOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueuePlayNext' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueuePlayNextOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueuePlayNextRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueuePlayNextSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueuePlayNextTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueueRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueueSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/QueueTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonChecked' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonCheckedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonCheckedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonCheckedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonCheckedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonUnchecked' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonUncheckedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonUncheckedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonUncheckedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioButtonUncheckedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Radio' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RadioTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RateReview' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RateReviewOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RateReviewRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RateReviewSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RateReviewTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Receipt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReceiptOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReceiptRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReceiptSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReceiptTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecentActors' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecentActorsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecentActorsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecentActorsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecentActorsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecordVoiceOver' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecordVoiceOverOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecordVoiceOverRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecordVoiceOverSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RecordVoiceOverTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Redeem' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RedeemOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RedeemRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RedeemSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RedeemTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Redo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RedoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RedoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RedoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RedoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Refresh' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RefreshOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RefreshRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RefreshSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RefreshTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircleOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircleOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircleOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircleOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircleOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveFromQueue' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveFromQueueOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveFromQueueRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveFromQueueSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveFromQueueTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Remove' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveRedEye' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveRedEyeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveRedEyeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveRedEyeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveRedEyeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveShoppingCart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveShoppingCartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveShoppingCartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveShoppingCartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveShoppingCartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RemoveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Reorder' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReorderOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReorderRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReorderSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReorderTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Repeat' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RepeatOne' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RepeatOneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RepeatOneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RepeatOneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RepeatOneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RepeatOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RepeatRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RepeatSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RepeatTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay10' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay10Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay10Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay10Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay10TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay30' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay30Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay30Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay30Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay30TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay5' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay5Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay5Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay5Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay5TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Replay' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplyAll' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplyAllOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplyAllRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplyAllSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplyAllTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Reply' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReplyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Report' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportProblem' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportProblemOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportProblemRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportProblemSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportProblemTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ReportTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Restaurant' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestaurantMenu' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestaurantMenuOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestaurantMenuRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestaurantMenuSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestaurantMenuTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestaurantOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestaurantRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestaurantSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestaurantTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestoreFromTrash' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestoreFromTrashOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestoreFromTrashRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestoreFromTrashSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestoreFromTrashTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Restore' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestoreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestorePage' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestorePageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestorePageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestorePageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestorePageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestoreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestoreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RestoreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RingVolume' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RingVolumeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RingVolumeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RingVolumeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RingVolumeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Room' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoomOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoomRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoomService' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoomServiceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoomServiceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoomServiceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoomServiceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoomSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoomTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Rotate90DegreesCcw' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Rotate90DegreesCcwOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Rotate90DegreesCcwRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Rotate90DegreesCcwSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Rotate90DegreesCcwTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateLeft' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateLeftOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateLeftRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateLeftSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateLeftTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateRight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateRightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateRightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateRightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RotateRightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoundedCorner' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoundedCornerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoundedCornerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoundedCornerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RoundedCornerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Router' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RouterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RouterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RouterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RouterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Rowing' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RowingOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RowingRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RowingSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RowingTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RssFeed' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RssFeedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RssFeedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RssFeedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RssFeedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RvHookup' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RvHookupOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RvHookupRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RvHookupSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/RvHookupTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Satellite' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SatelliteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SatelliteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SatelliteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SatelliteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SaveAlt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SaveAltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SaveAltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SaveAltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SaveAltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Save' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SaveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SaveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SaveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SaveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Scanner' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScannerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScannerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScannerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScannerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScatterPlot' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScatterPlotOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScatterPlotRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScatterPlotSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScatterPlotTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Schedule' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScheduleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScheduleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScheduleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScheduleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/School' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SchoolOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SchoolRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SchoolSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SchoolTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Score' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScoreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScoreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScoreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScoreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockLandscape' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockLandscapeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockLandscapeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockLandscapeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockLandscapeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockPortrait' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockPortraitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockPortraitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockPortraitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockPortraitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockRotation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockRotationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockRotationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockRotationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenLockRotationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenRotation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenRotationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenRotationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenRotationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenRotationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenShare' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenShareOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenShareRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenShareSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ScreenShareTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdCard' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdCardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdCardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdCardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdCardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdStorage' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdStorageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdStorageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdStorageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SdStorageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Search' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SearchOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SearchRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SearchSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SearchTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Security' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SecurityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SecurityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SecuritySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SecurityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SelectAll' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SelectAllOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SelectAllRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SelectAllSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SelectAllTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Send' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SendOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SendRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SendSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SendTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentDissatisfied' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentDissatisfiedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentDissatisfiedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentDissatisfiedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentDissatisfiedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfiedAlt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfiedAltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfiedAltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfiedAltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfiedAltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfied' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfiedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfiedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfiedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentSatisfiedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVeryDissatisfied' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVeryDissatisfiedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVeryDissatisfiedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVeryDissatisfiedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVeryDissatisfiedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVerySatisfied' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVerySatisfiedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVerySatisfiedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVerySatisfiedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SentimentVerySatisfiedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsApplications' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsApplicationsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsApplicationsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsApplicationsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsApplicationsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBackupRestore' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBackupRestoreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBackupRestoreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBackupRestoreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBackupRestoreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBluetooth' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBluetoothOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBluetoothRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBluetoothSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBluetoothTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBrightness' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBrightnessOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBrightnessRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBrightnessSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsBrightnessTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsCell' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsCellOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsCellRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsCellSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsCellTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsEthernet' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsEthernetOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsEthernetRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsEthernetSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsEthernetTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputAntenna' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputAntennaOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputAntennaRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputAntennaSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputAntennaTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputComponent' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputComponentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputComponentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputComponentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputComponentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputComposite' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputCompositeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputCompositeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputCompositeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputCompositeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputHdmi' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputHdmiOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputHdmiRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputHdmiSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputHdmiTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputSvideo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputSvideoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputSvideoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputSvideoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsInputSvideoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Settings' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsOverscan' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsOverscanOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsOverscanRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsOverscanSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsOverscanTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPhone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPhoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPhoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPhoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPhoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPower' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPowerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPowerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPowerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsPowerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsRemote' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsRemoteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsRemoteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsRemoteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsRemoteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsSystemDaydream' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsSystemDaydreamOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsSystemDaydreamRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsSystemDaydreamSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsSystemDaydreamTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsVoice' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsVoiceOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsVoiceRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsVoiceSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SettingsVoiceTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Share' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShareOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShareRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShareSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShareTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Shop' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShopOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingBasket' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingBasketOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingBasketRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingBasketSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingBasketTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingCart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingCartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingCartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingCartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShoppingCartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShopRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShopSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShopTwo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShopTwoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShopTwoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShopTwoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShopTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShopTwoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShortText' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShortTextOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShortTextRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShortTextSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShortTextTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShowChart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShowChartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShowChartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShowChartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShowChartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Shuffle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShuffleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShuffleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShuffleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShuffleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShutterSpeed' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShutterSpeedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShutterSpeedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShutterSpeedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ShutterSpeedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular0Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular0BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular0BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular0BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular0BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular1Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular1BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular1BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular1BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular1BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular2Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular2BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular2BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular2BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular2BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular3Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular3BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular3BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular3BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular3BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular4Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular4BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular4BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular4BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellular4BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularAlt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularAltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularAltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularAltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularAltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet0Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet0BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet0BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet0BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet0BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet1Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet1BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet1BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet1BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet1BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet2Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet2BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet2BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet2BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet2BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet3Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet3BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet3BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet3BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet3BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet4Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet4BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet4BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet4BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularConnectedNoInternet4BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNoSim' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNoSimOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNoSimRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNoSimSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNoSimTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNull' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNullOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNullRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNullSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularNullTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalCellularOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi0Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi0BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi0BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi0BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi0BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1BarLock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1BarLockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1BarLockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1BarLockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1BarLockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi1BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2BarLock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2BarLockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2BarLockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2BarLockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2BarLockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi2BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3BarLock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3BarLockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3BarLockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3BarLockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3BarLockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi3BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4Bar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4BarLock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4BarLockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4BarLockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4BarLockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4BarLockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4BarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4BarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4BarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifi4BarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifiOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifiOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifiOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifiOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SignalWifiOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SimCard' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SimCardOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SimCardRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SimCardSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SimCardTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipNext' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipNextOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipNextRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipNextSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipNextTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipPrevious' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipPreviousOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipPreviousRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipPreviousSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SkipPreviousTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Slideshow' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SlideshowOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SlideshowRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SlideshowSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SlideshowTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SlowMotionVideo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SlowMotionVideoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SlowMotionVideoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SlowMotionVideoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SlowMotionVideoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Smartphone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmartphoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmartphoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmartphoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmartphoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokeFree' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokeFreeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokeFreeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokeFreeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokeFreeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokingRooms' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokingRoomsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokingRoomsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokingRoomsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmokingRoomsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmsFailed' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmsFailedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmsFailedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmsFailedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmsFailedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Sms' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SmsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Snooze' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SnoozeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SnoozeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SnoozeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SnoozeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SortByAlpha' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SortByAlphaOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SortByAlphaRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SortByAlphaSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SortByAlphaTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Sort' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SortOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SortRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SortSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SortTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpaceBar' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpaceBarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpaceBarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpaceBarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpaceBarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Spa' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpaOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpaRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpaSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpaTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerGroup' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerGroupOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerGroupRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerGroupSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerGroupTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Speaker' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotes' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotesOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotesOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotesOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotesOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotesOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerNotesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerPhone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerPhoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerPhoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerPhoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerPhoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpeakerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Spellcheck' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpellcheckOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpellcheckRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpellcheckSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SpellcheckTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarBorder' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarBorderOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarBorderRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarBorderSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarBorderTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarHalf' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarHalfOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarHalfRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarHalfSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarHalfTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Star' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarRate' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarRateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarRateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarRateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarRateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Stars' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StarTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentLandscape' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentLandscapeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentLandscapeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentLandscapeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentLandscapeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentPortrait' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentPortraitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentPortraitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentPortraitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayCurrentPortraitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryLandscape' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryLandscapeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryLandscapeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryLandscapeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryLandscapeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryPortrait' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryPortraitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryPortraitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryPortraitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StayPrimaryPortraitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Stop' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StopOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StopRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StopScreenShare' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StopScreenShareOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StopScreenShareRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StopScreenShareSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StopScreenShareTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StopSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StopTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Storage' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StorageOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StorageRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StorageSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StorageTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Store' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StoreMallDirectory' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StoreMallDirectoryOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StoreMallDirectoryRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StoreMallDirectorySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StoreMallDirectoryTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StoreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StoreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StoreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StoreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Straighten' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StraightenOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StraightenRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StraightenSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StraightenTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Streetview' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StreetviewOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StreetviewRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StreetviewSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StreetviewTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StrikethroughS' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StrikethroughSOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StrikethroughSRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StrikethroughSSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StrikethroughSTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Style' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StyleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StyleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StyleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/StyleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowLeft' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowLeftOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowLeftRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowLeftSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowLeftTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowRight' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowRightOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowRightRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowRightSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubdirectoryArrowRightTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Subject' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubjectOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubjectRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubjectSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubjectTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Subscriptions' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubscriptionsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubscriptionsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubscriptionsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubscriptionsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Subtitles' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubtitlesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubtitlesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubtitlesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubtitlesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Subway' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubwayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubwayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubwaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SubwayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisedUserCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisedUserCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisedUserCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisedUserCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisedUserCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisorAccount' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisorAccountOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisorAccountRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisorAccountSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SupervisorAccountTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SurroundSound' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SurroundSoundOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SurroundSoundRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SurroundSoundSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SurroundSoundTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapCalls' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapCallsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapCallsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapCallsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapCallsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHoriz' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHorizontalCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHorizontalCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHorizontalCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHorizontalCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHorizontalCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHorizOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHorizRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHorizSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapHorizTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVerticalCircle' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVerticalCircleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVerticalCircleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVerticalCircleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVerticalCircleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVert' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVertOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVertRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVertSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwapVertTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchCamera' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchCameraOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchCameraRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchCameraSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchCameraTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchVideo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchVideoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchVideoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchVideoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SwitchVideoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncDisabled' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncDisabledOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncDisabledRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncDisabledSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncDisabledTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Sync' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncProblem' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncProblemOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncProblemRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncProblemSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncProblemTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SyncTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SystemUpdate' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SystemUpdateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SystemUpdateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SystemUpdateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/SystemUpdateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Tab' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TableChart' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TableChartOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TableChartRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TableChartSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TableChartTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletAndroid' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletAndroidOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletAndroidRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletAndroidSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletAndroidTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Tablet' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletMac' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletMacOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletMacRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletMacSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletMacTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabletTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabUnselected' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabUnselectedOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabUnselectedRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabUnselectedSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TabUnselectedTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TagFaces' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TagFacesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TagFacesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TagFacesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TagFacesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TapAndPlay' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TapAndPlayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TapAndPlayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TapAndPlaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TapAndPlayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Terrain' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TerrainOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TerrainRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TerrainSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TerrainTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFields' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFieldsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFieldsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFieldsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFieldsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFormat' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFormatOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFormatRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFormatSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextFormatTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateUp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateUpOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateUpRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateUpSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateUpTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateVertical' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateVerticalOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateVerticalRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateVerticalSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotateVerticalTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationDown' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationDownOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationDownRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationDownSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationDownTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationNone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationNoneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationNoneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationNoneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextRotationNoneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Textsms' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextsmsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextsmsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextsmsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextsmsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Texture' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextureOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextureRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextureSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TextureTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Theaters' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TheatersOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TheatersRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TheatersSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TheatersTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeDRotation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeDRotationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeDRotationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeDRotationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeDRotationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeSixty' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeSixtyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeSixtyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeSixtySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThreeSixtyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDownAlt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDownAltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDownAltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDownAltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDownAltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDown' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDownOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDownRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDownSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbDownTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbsUpDown' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbsUpDownOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbsUpDownRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbsUpDownSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbsUpDownTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUpAlt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUpAltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUpAltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUpAltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUpAltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUpOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUpRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUpSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ThumbUpTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timelapse' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimelapseOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimelapseRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimelapseSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimelapseTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timeline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimelineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimelineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimelineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimelineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer10' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer10Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer10Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer10Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer10TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer3' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer3Outlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer3Rounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer3Sharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer3TwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Timer' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimerOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimerOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimerOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimerOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimerOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimerOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimerRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimerSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimerTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimeToLeave' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimeToLeaveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimeToLeaveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimeToLeaveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TimeToLeaveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Title' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TitleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TitleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TitleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TitleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Toc' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TocOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TocRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TocSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TocTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Today' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TodayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TodayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TodaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TodayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToggleOnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Toll' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TollOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TollRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TollSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TollTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Tonality' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TonalityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TonalityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TonalitySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TonalityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TouchApp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TouchAppOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TouchAppRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TouchAppSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TouchAppTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Toys' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToysOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToysRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToysSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ToysTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrackChanges' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrackChangesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrackChangesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrackChangesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrackChangesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Traffic' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrafficOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrafficRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrafficSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrafficTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Train' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrainOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrainRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrainSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrainTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Tram' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TramOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TramRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TramSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TramTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransferWithinAStation' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransferWithinAStationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransferWithinAStationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransferWithinAStationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransferWithinAStationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Transform' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransformOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransformRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransformSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransformTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransitEnterexit' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransitEnterexitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransitEnterexitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransitEnterexitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TransitEnterexitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Translate' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TranslateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TranslateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TranslateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TranslateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingDown' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingDownOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingDownRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingDownSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingDownTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingFlat' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingFlatOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingFlatRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingFlatSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingFlatTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingUp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingUpOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingUpRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingUpSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TrendingUpTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TripOrigin' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TripOriginOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TripOriginRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TripOriginSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TripOriginTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Tune' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TuneOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TuneRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TuneSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TuneTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedIn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedInNot' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedInNotOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedInNotRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedInNotSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedInNotTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedInOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedInRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedInSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TurnedInTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Tv' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TvOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TvOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TvOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TvOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TvOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TvOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TvRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TvSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/TvTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Unarchive' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnarchiveOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnarchiveRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnarchiveSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnarchiveTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Undo' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UndoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UndoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UndoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UndoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldLess' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldLessOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldLessRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldLessSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldLessTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldMore' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldMoreOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldMoreRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldMoreSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnfoldMoreTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Unsubscribe' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnsubscribeOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnsubscribeRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnsubscribeSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UnsubscribeTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Update' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UpdateOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UpdateRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UpdateSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UpdateTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Usb' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UsbOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UsbRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UsbSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/UsbTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerifiedUser' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerifiedUserOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerifiedUserRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerifiedUserSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerifiedUserTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignBottom' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignBottomOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignBottomRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignBottomSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignBottomTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignCenter' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignCenterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignCenterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignCenterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignCenterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignTop' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignTopOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignTopRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignTopSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalAlignTopTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalSplit' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalSplitOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalSplitRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalSplitSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VerticalSplitTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Vibration' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VibrationOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VibrationRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VibrationSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VibrationTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoCall' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoCallOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoCallRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoCallSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoCallTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Videocam' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideocamOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideocamOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideocamOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideocamOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideocamOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideocamOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideocamRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideocamSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideocamTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideogameAsset' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideogameAssetOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideogameAssetRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideogameAssetSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideogameAssetTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLabel' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLabelOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLabelRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLabelSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLabelTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLibrary' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLibraryOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLibraryRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLibrarySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VideoLibraryTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewAgenda' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewAgendaOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewAgendaRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewAgendaSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewAgendaTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewArray' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewArrayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewArrayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewArraySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewArrayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCarousel' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCarouselOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCarouselRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCarouselSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCarouselTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewColumn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewColumnOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewColumnRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewColumnSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewColumnTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewComfy' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewComfyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewComfyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewComfySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewComfyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCompact' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCompactOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCompactRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCompactSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewCompactTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewDay' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewDayOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewDayRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewDaySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewDayTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewHeadline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewHeadlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewHeadlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewHeadlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewHeadlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewList' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewListOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewListRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewListSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewListTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewModule' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewModuleOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewModuleRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewModuleSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewModuleTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewQuilt' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewQuiltOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewQuiltRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewQuiltSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewQuiltTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewStream' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewStreamOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewStreamRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewStreamSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewStreamTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewWeek' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewWeekOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewWeekRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewWeekSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ViewWeekTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Vignette' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VignetteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VignetteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VignetteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VignetteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Visibility' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VisibilityOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VisibilityOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VisibilityOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VisibilityOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VisibilityOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VisibilityOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VisibilityRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VisibilitySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VisibilityTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceChat' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceChatOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceChatRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceChatSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceChatTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Voicemail' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoicemailOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoicemailRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoicemailSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoicemailTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceOverOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceOverOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceOverOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceOverOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VoiceOverOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeDown' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeDownOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeDownRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeDownSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeDownTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeMute' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeMuteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeMuteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeMuteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeMuteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeUp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeUpOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeUpRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeUpSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VolumeUpTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnKey' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnKeyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnKeyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnKeySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnKeyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnLock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnLockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnLockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnLockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/VpnLockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Wallpaper' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WallpaperOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WallpaperRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WallpaperSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WallpaperTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Warning' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WarningOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WarningRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WarningSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WarningTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Watch' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WatchLater' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WatchLaterOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WatchLaterRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WatchLaterSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WatchLaterTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WatchOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WatchRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WatchSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WatchTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Waves' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WavesOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WavesRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WavesSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WavesTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbAuto' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbAutoOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbAutoRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbAutoSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbAutoTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbCloudy' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbCloudyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbCloudyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbCloudySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbCloudyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIncandescent' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIncandescentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIncandescentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIncandescentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIncandescentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIridescent' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIridescentOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIridescentRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIridescentSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbIridescentTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbSunny' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbSunnyOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbSunnyRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbSunnySharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WbSunnyTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Wc' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WcOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WcRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WcSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WcTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WebAsset' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WebAssetOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WebAssetRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WebAssetSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WebAssetTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Web' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WebOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WebRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WebSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WebTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Weekend' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WeekendOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WeekendRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WeekendSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WeekendTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Whatshot' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WhatshotOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WhatshotRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WhatshotSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WhatshotTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WhereToVote' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WhereToVoteOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WhereToVoteRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WhereToVoteSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WhereToVoteTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Widgets' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WidgetsOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WidgetsRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WidgetsSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WidgetsTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Wifi' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiLock' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiLockOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiLockRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiLockSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiLockTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiTethering' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiTetheringOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiTetheringRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiTetheringSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiTetheringTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WifiTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/Work' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOff' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOffOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOffRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOffSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOffTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOutline' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOutlineOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOutlineRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOutlineSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkOutlineTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WorkTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WrapText' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WrapTextOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WrapTextRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WrapTextSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/WrapTextTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/YoutubeSearchedFor' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/YoutubeSearchedForOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/YoutubeSearchedForRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/YoutubeSearchedForSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/YoutubeSearchedForTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomIn' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomInOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomInRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomInSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomInTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOut' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOutMap' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOutMapOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOutMapRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOutMapSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOutMapTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOutOutlined' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOutRounded' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOutSharp' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} +declare module '@material-ui/icons/ZoomOutTwoTone' { + import typeof SvgIcon from '@material-ui/core/@@SvgIcon'; + declare export default SvgIcon; +} + +declare module '@material-ui/icons' { + declare export { + default as AccessAlarm, + } from '@material-ui/icons/AccessAlarm'; + declare export { + default as AccessAlarmOutlined, + } from '@material-ui/icons/AccessAlarmOutlined'; + declare export { + default as AccessAlarmRounded, + } from '@material-ui/icons/AccessAlarmRounded'; + declare export { + default as AccessAlarmSharp, + } from '@material-ui/icons/AccessAlarmSharp'; + declare export { + default as AccessAlarms, + } from '@material-ui/icons/AccessAlarms'; + declare export { + default as AccessAlarmsOutlined, + } from '@material-ui/icons/AccessAlarmsOutlined'; + declare export { + default as AccessAlarmsRounded, + } from '@material-ui/icons/AccessAlarmsRounded'; + declare export { + default as AccessAlarmsSharp, + } from '@material-ui/icons/AccessAlarmsSharp'; + declare export { + default as AccessAlarmsTwoTone, + } from '@material-ui/icons/AccessAlarmsTwoTone'; + declare export { + default as AccessAlarmTwoTone, + } from '@material-ui/icons/AccessAlarmTwoTone'; + declare export { + default as Accessibility, + } from '@material-ui/icons/Accessibility'; + declare export { + default as AccessibilityNew, + } from '@material-ui/icons/AccessibilityNew'; + declare export { + default as AccessibilityNewOutlined, + } from '@material-ui/icons/AccessibilityNewOutlined'; + declare export { + default as AccessibilityNewRounded, + } from '@material-ui/icons/AccessibilityNewRounded'; + declare export { + default as AccessibilityNewSharp, + } from '@material-ui/icons/AccessibilityNewSharp'; + declare export { + default as AccessibilityNewTwoTone, + } from '@material-ui/icons/AccessibilityNewTwoTone'; + declare export { + default as AccessibilityOutlined, + } from '@material-ui/icons/AccessibilityOutlined'; + declare export { + default as AccessibilityRounded, + } from '@material-ui/icons/AccessibilityRounded'; + declare export { + default as AccessibilitySharp, + } from '@material-ui/icons/AccessibilitySharp'; + declare export { + default as AccessibilityTwoTone, + } from '@material-ui/icons/AccessibilityTwoTone'; + declare export { + default as AccessibleForward, + } from '@material-ui/icons/AccessibleForward'; + declare export { + default as AccessibleForwardOutlined, + } from '@material-ui/icons/AccessibleForwardOutlined'; + declare export { + default as AccessibleForwardRounded, + } from '@material-ui/icons/AccessibleForwardRounded'; + declare export { + default as AccessibleForwardSharp, + } from '@material-ui/icons/AccessibleForwardSharp'; + declare export { + default as AccessibleForwardTwoTone, + } from '@material-ui/icons/AccessibleForwardTwoTone'; + declare export { default as Accessible } from '@material-ui/icons/Accessible'; + declare export { + default as AccessibleOutlined, + } from '@material-ui/icons/AccessibleOutlined'; + declare export { + default as AccessibleRounded, + } from '@material-ui/icons/AccessibleRounded'; + declare export { + default as AccessibleSharp, + } from '@material-ui/icons/AccessibleSharp'; + declare export { + default as AccessibleTwoTone, + } from '@material-ui/icons/AccessibleTwoTone'; + declare export { default as AccessTime } from '@material-ui/icons/AccessTime'; + declare export { + default as AccessTimeOutlined, + } from '@material-ui/icons/AccessTimeOutlined'; + declare export { + default as AccessTimeRounded, + } from '@material-ui/icons/AccessTimeRounded'; + declare export { + default as AccessTimeSharp, + } from '@material-ui/icons/AccessTimeSharp'; + declare export { + default as AccessTimeTwoTone, + } from '@material-ui/icons/AccessTimeTwoTone'; + declare export { + default as AccountBalance, + } from '@material-ui/icons/AccountBalance'; + declare export { + default as AccountBalanceOutlined, + } from '@material-ui/icons/AccountBalanceOutlined'; + declare export { + default as AccountBalanceRounded, + } from '@material-ui/icons/AccountBalanceRounded'; + declare export { + default as AccountBalanceSharp, + } from '@material-ui/icons/AccountBalanceSharp'; + declare export { + default as AccountBalanceTwoTone, + } from '@material-ui/icons/AccountBalanceTwoTone'; + declare export { + default as AccountBalanceWallet, + } from '@material-ui/icons/AccountBalanceWallet'; + declare export { + default as AccountBalanceWalletOutlined, + } from '@material-ui/icons/AccountBalanceWalletOutlined'; + declare export { + default as AccountBalanceWalletRounded, + } from '@material-ui/icons/AccountBalanceWalletRounded'; + declare export { + default as AccountBalanceWalletSharp, + } from '@material-ui/icons/AccountBalanceWalletSharp'; + declare export { + default as AccountBalanceWalletTwoTone, + } from '@material-ui/icons/AccountBalanceWalletTwoTone'; + declare export { default as AccountBox } from '@material-ui/icons/AccountBox'; + declare export { + default as AccountBoxOutlined, + } from '@material-ui/icons/AccountBoxOutlined'; + declare export { + default as AccountBoxRounded, + } from '@material-ui/icons/AccountBoxRounded'; + declare export { + default as AccountBoxSharp, + } from '@material-ui/icons/AccountBoxSharp'; + declare export { + default as AccountBoxTwoTone, + } from '@material-ui/icons/AccountBoxTwoTone'; + declare export { + default as AccountCircle, + } from '@material-ui/icons/AccountCircle'; + declare export { + default as AccountCircleOutlined, + } from '@material-ui/icons/AccountCircleOutlined'; + declare export { + default as AccountCircleRounded, + } from '@material-ui/icons/AccountCircleRounded'; + declare export { + default as AccountCircleSharp, + } from '@material-ui/icons/AccountCircleSharp'; + declare export { + default as AccountCircleTwoTone, + } from '@material-ui/icons/AccountCircleTwoTone'; + declare export { default as AcUnit } from '@material-ui/icons/AcUnit'; + declare export { + default as AcUnitOutlined, + } from '@material-ui/icons/AcUnitOutlined'; + declare export { + default as AcUnitRounded, + } from '@material-ui/icons/AcUnitRounded'; + declare export { + default as AcUnitSharp, + } from '@material-ui/icons/AcUnitSharp'; + declare export { + default as AcUnitTwoTone, + } from '@material-ui/icons/AcUnitTwoTone'; + declare export { default as Adb } from '@material-ui/icons/Adb'; + declare export { + default as AdbOutlined, + } from '@material-ui/icons/AdbOutlined'; + declare export { default as AdbRounded } from '@material-ui/icons/AdbRounded'; + declare export { default as AdbSharp } from '@material-ui/icons/AdbSharp'; + declare export { default as AdbTwoTone } from '@material-ui/icons/AdbTwoTone'; + declare export { default as AddAlarm } from '@material-ui/icons/AddAlarm'; + declare export { + default as AddAlarmOutlined, + } from '@material-ui/icons/AddAlarmOutlined'; + declare export { + default as AddAlarmRounded, + } from '@material-ui/icons/AddAlarmRounded'; + declare export { + default as AddAlarmSharp, + } from '@material-ui/icons/AddAlarmSharp'; + declare export { + default as AddAlarmTwoTone, + } from '@material-ui/icons/AddAlarmTwoTone'; + declare export { default as AddAlert } from '@material-ui/icons/AddAlert'; + declare export { + default as AddAlertOutlined, + } from '@material-ui/icons/AddAlertOutlined'; + declare export { + default as AddAlertRounded, + } from '@material-ui/icons/AddAlertRounded'; + declare export { + default as AddAlertSharp, + } from '@material-ui/icons/AddAlertSharp'; + declare export { + default as AddAlertTwoTone, + } from '@material-ui/icons/AddAlertTwoTone'; + declare export { default as AddAPhoto } from '@material-ui/icons/AddAPhoto'; + declare export { + default as AddAPhotoOutlined, + } from '@material-ui/icons/AddAPhotoOutlined'; + declare export { + default as AddAPhotoRounded, + } from '@material-ui/icons/AddAPhotoRounded'; + declare export { + default as AddAPhotoSharp, + } from '@material-ui/icons/AddAPhotoSharp'; + declare export { + default as AddAPhotoTwoTone, + } from '@material-ui/icons/AddAPhotoTwoTone'; + declare export { default as AddBox } from '@material-ui/icons/AddBox'; + declare export { + default as AddBoxOutlined, + } from '@material-ui/icons/AddBoxOutlined'; + declare export { + default as AddBoxRounded, + } from '@material-ui/icons/AddBoxRounded'; + declare export { + default as AddBoxSharp, + } from '@material-ui/icons/AddBoxSharp'; + declare export { + default as AddBoxTwoTone, + } from '@material-ui/icons/AddBoxTwoTone'; + declare export { default as AddCircle } from '@material-ui/icons/AddCircle'; + declare export { + default as AddCircleOutlined, + } from '@material-ui/icons/AddCircleOutlined'; + declare export { + default as AddCircleOutline, + } from '@material-ui/icons/AddCircleOutline'; + declare export { + default as AddCircleOutlineOutlined, + } from '@material-ui/icons/AddCircleOutlineOutlined'; + declare export { + default as AddCircleOutlineRounded, + } from '@material-ui/icons/AddCircleOutlineRounded'; + declare export { + default as AddCircleOutlineSharp, + } from '@material-ui/icons/AddCircleOutlineSharp'; + declare export { + default as AddCircleOutlineTwoTone, + } from '@material-ui/icons/AddCircleOutlineTwoTone'; + declare export { + default as AddCircleRounded, + } from '@material-ui/icons/AddCircleRounded'; + declare export { + default as AddCircleSharp, + } from '@material-ui/icons/AddCircleSharp'; + declare export { + default as AddCircleTwoTone, + } from '@material-ui/icons/AddCircleTwoTone'; + declare export { default as AddComment } from '@material-ui/icons/AddComment'; + declare export { + default as AddCommentOutlined, + } from '@material-ui/icons/AddCommentOutlined'; + declare export { + default as AddCommentRounded, + } from '@material-ui/icons/AddCommentRounded'; + declare export { + default as AddCommentSharp, + } from '@material-ui/icons/AddCommentSharp'; + declare export { + default as AddCommentTwoTone, + } from '@material-ui/icons/AddCommentTwoTone'; + declare export { default as Add } from '@material-ui/icons/Add'; + declare export { + default as AddLocation, + } from '@material-ui/icons/AddLocation'; + declare export { + default as AddLocationOutlined, + } from '@material-ui/icons/AddLocationOutlined'; + declare export { + default as AddLocationRounded, + } from '@material-ui/icons/AddLocationRounded'; + declare export { + default as AddLocationSharp, + } from '@material-ui/icons/AddLocationSharp'; + declare export { + default as AddLocationTwoTone, + } from '@material-ui/icons/AddLocationTwoTone'; + declare export { + default as AddOutlined, + } from '@material-ui/icons/AddOutlined'; + declare export { + default as AddPhotoAlternate, + } from '@material-ui/icons/AddPhotoAlternate'; + declare export { + default as AddPhotoAlternateOutlined, + } from '@material-ui/icons/AddPhotoAlternateOutlined'; + declare export { + default as AddPhotoAlternateRounded, + } from '@material-ui/icons/AddPhotoAlternateRounded'; + declare export { + default as AddPhotoAlternateSharp, + } from '@material-ui/icons/AddPhotoAlternateSharp'; + declare export { + default as AddPhotoAlternateTwoTone, + } from '@material-ui/icons/AddPhotoAlternateTwoTone'; + declare export { default as AddRounded } from '@material-ui/icons/AddRounded'; + declare export { default as AddSharp } from '@material-ui/icons/AddSharp'; + declare export { + default as AddShoppingCart, + } from '@material-ui/icons/AddShoppingCart'; + declare export { + default as AddShoppingCartOutlined, + } from '@material-ui/icons/AddShoppingCartOutlined'; + declare export { + default as AddShoppingCartRounded, + } from '@material-ui/icons/AddShoppingCartRounded'; + declare export { + default as AddShoppingCartSharp, + } from '@material-ui/icons/AddShoppingCartSharp'; + declare export { + default as AddShoppingCartTwoTone, + } from '@material-ui/icons/AddShoppingCartTwoTone'; + declare export { + default as AddToHomeScreen, + } from '@material-ui/icons/AddToHomeScreen'; + declare export { + default as AddToHomeScreenOutlined, + } from '@material-ui/icons/AddToHomeScreenOutlined'; + declare export { + default as AddToHomeScreenRounded, + } from '@material-ui/icons/AddToHomeScreenRounded'; + declare export { + default as AddToHomeScreenSharp, + } from '@material-ui/icons/AddToHomeScreenSharp'; + declare export { + default as AddToHomeScreenTwoTone, + } from '@material-ui/icons/AddToHomeScreenTwoTone'; + declare export { + default as AddToPhotos, + } from '@material-ui/icons/AddToPhotos'; + declare export { + default as AddToPhotosOutlined, + } from '@material-ui/icons/AddToPhotosOutlined'; + declare export { + default as AddToPhotosRounded, + } from '@material-ui/icons/AddToPhotosRounded'; + declare export { + default as AddToPhotosSharp, + } from '@material-ui/icons/AddToPhotosSharp'; + declare export { + default as AddToPhotosTwoTone, + } from '@material-ui/icons/AddToPhotosTwoTone'; + declare export { default as AddToQueue } from '@material-ui/icons/AddToQueue'; + declare export { + default as AddToQueueOutlined, + } from '@material-ui/icons/AddToQueueOutlined'; + declare export { + default as AddToQueueRounded, + } from '@material-ui/icons/AddToQueueRounded'; + declare export { + default as AddToQueueSharp, + } from '@material-ui/icons/AddToQueueSharp'; + declare export { + default as AddToQueueTwoTone, + } from '@material-ui/icons/AddToQueueTwoTone'; + declare export { default as AddTwoTone } from '@material-ui/icons/AddTwoTone'; + declare export { default as Adjust } from '@material-ui/icons/Adjust'; + declare export { + default as AdjustOutlined, + } from '@material-ui/icons/AdjustOutlined'; + declare export { + default as AdjustRounded, + } from '@material-ui/icons/AdjustRounded'; + declare export { + default as AdjustSharp, + } from '@material-ui/icons/AdjustSharp'; + declare export { + default as AdjustTwoTone, + } from '@material-ui/icons/AdjustTwoTone'; + declare export { + default as AirlineSeatFlatAngled, + } from '@material-ui/icons/AirlineSeatFlatAngled'; + declare export { + default as AirlineSeatFlatAngledOutlined, + } from '@material-ui/icons/AirlineSeatFlatAngledOutlined'; + declare export { + default as AirlineSeatFlatAngledRounded, + } from '@material-ui/icons/AirlineSeatFlatAngledRounded'; + declare export { + default as AirlineSeatFlatAngledSharp, + } from '@material-ui/icons/AirlineSeatFlatAngledSharp'; + declare export { + default as AirlineSeatFlatAngledTwoTone, + } from '@material-ui/icons/AirlineSeatFlatAngledTwoTone'; + declare export { + default as AirlineSeatFlat, + } from '@material-ui/icons/AirlineSeatFlat'; + declare export { + default as AirlineSeatFlatOutlined, + } from '@material-ui/icons/AirlineSeatFlatOutlined'; + declare export { + default as AirlineSeatFlatRounded, + } from '@material-ui/icons/AirlineSeatFlatRounded'; + declare export { + default as AirlineSeatFlatSharp, + } from '@material-ui/icons/AirlineSeatFlatSharp'; + declare export { + default as AirlineSeatFlatTwoTone, + } from '@material-ui/icons/AirlineSeatFlatTwoTone'; + declare export { + default as AirlineSeatIndividualSuite, + } from '@material-ui/icons/AirlineSeatIndividualSuite'; + declare export { + default as AirlineSeatIndividualSuiteOutlined, + } from '@material-ui/icons/AirlineSeatIndividualSuiteOutlined'; + declare export { + default as AirlineSeatIndividualSuiteRounded, + } from '@material-ui/icons/AirlineSeatIndividualSuiteRounded'; + declare export { + default as AirlineSeatIndividualSuiteSharp, + } from '@material-ui/icons/AirlineSeatIndividualSuiteSharp'; + declare export { + default as AirlineSeatIndividualSuiteTwoTone, + } from '@material-ui/icons/AirlineSeatIndividualSuiteTwoTone'; + declare export { + default as AirlineSeatLegroomExtra, + } from '@material-ui/icons/AirlineSeatLegroomExtra'; + declare export { + default as AirlineSeatLegroomExtraOutlined, + } from '@material-ui/icons/AirlineSeatLegroomExtraOutlined'; + declare export { + default as AirlineSeatLegroomExtraRounded, + } from '@material-ui/icons/AirlineSeatLegroomExtraRounded'; + declare export { + default as AirlineSeatLegroomExtraSharp, + } from '@material-ui/icons/AirlineSeatLegroomExtraSharp'; + declare export { + default as AirlineSeatLegroomExtraTwoTone, + } from '@material-ui/icons/AirlineSeatLegroomExtraTwoTone'; + declare export { + default as AirlineSeatLegroomNormal, + } from '@material-ui/icons/AirlineSeatLegroomNormal'; + declare export { + default as AirlineSeatLegroomNormalOutlined, + } from '@material-ui/icons/AirlineSeatLegroomNormalOutlined'; + declare export { + default as AirlineSeatLegroomNormalRounded, + } from '@material-ui/icons/AirlineSeatLegroomNormalRounded'; + declare export { + default as AirlineSeatLegroomNormalSharp, + } from '@material-ui/icons/AirlineSeatLegroomNormalSharp'; + declare export { + default as AirlineSeatLegroomNormalTwoTone, + } from '@material-ui/icons/AirlineSeatLegroomNormalTwoTone'; + declare export { + default as AirlineSeatLegroomReduced, + } from '@material-ui/icons/AirlineSeatLegroomReduced'; + declare export { + default as AirlineSeatLegroomReducedOutlined, + } from '@material-ui/icons/AirlineSeatLegroomReducedOutlined'; + declare export { + default as AirlineSeatLegroomReducedRounded, + } from '@material-ui/icons/AirlineSeatLegroomReducedRounded'; + declare export { + default as AirlineSeatLegroomReducedSharp, + } from '@material-ui/icons/AirlineSeatLegroomReducedSharp'; + declare export { + default as AirlineSeatLegroomReducedTwoTone, + } from '@material-ui/icons/AirlineSeatLegroomReducedTwoTone'; + declare export { + default as AirlineSeatReclineExtra, + } from '@material-ui/icons/AirlineSeatReclineExtra'; + declare export { + default as AirlineSeatReclineExtraOutlined, + } from '@material-ui/icons/AirlineSeatReclineExtraOutlined'; + declare export { + default as AirlineSeatReclineExtraRounded, + } from '@material-ui/icons/AirlineSeatReclineExtraRounded'; + declare export { + default as AirlineSeatReclineExtraSharp, + } from '@material-ui/icons/AirlineSeatReclineExtraSharp'; + declare export { + default as AirlineSeatReclineExtraTwoTone, + } from '@material-ui/icons/AirlineSeatReclineExtraTwoTone'; + declare export { + default as AirlineSeatReclineNormal, + } from '@material-ui/icons/AirlineSeatReclineNormal'; + declare export { + default as AirlineSeatReclineNormalOutlined, + } from '@material-ui/icons/AirlineSeatReclineNormalOutlined'; + declare export { + default as AirlineSeatReclineNormalRounded, + } from '@material-ui/icons/AirlineSeatReclineNormalRounded'; + declare export { + default as AirlineSeatReclineNormalSharp, + } from '@material-ui/icons/AirlineSeatReclineNormalSharp'; + declare export { + default as AirlineSeatReclineNormalTwoTone, + } from '@material-ui/icons/AirlineSeatReclineNormalTwoTone'; + declare export { + default as AirplanemodeActive, + } from '@material-ui/icons/AirplanemodeActive'; + declare export { + default as AirplanemodeActiveOutlined, + } from '@material-ui/icons/AirplanemodeActiveOutlined'; + declare export { + default as AirplanemodeActiveRounded, + } from '@material-ui/icons/AirplanemodeActiveRounded'; + declare export { + default as AirplanemodeActiveSharp, + } from '@material-ui/icons/AirplanemodeActiveSharp'; + declare export { + default as AirplanemodeActiveTwoTone, + } from '@material-ui/icons/AirplanemodeActiveTwoTone'; + declare export { + default as AirplanemodeInactive, + } from '@material-ui/icons/AirplanemodeInactive'; + declare export { + default as AirplanemodeInactiveOutlined, + } from '@material-ui/icons/AirplanemodeInactiveOutlined'; + declare export { + default as AirplanemodeInactiveRounded, + } from '@material-ui/icons/AirplanemodeInactiveRounded'; + declare export { + default as AirplanemodeInactiveSharp, + } from '@material-ui/icons/AirplanemodeInactiveSharp'; + declare export { + default as AirplanemodeInactiveTwoTone, + } from '@material-ui/icons/AirplanemodeInactiveTwoTone'; + declare export { default as Airplay } from '@material-ui/icons/Airplay'; + declare export { + default as AirplayOutlined, + } from '@material-ui/icons/AirplayOutlined'; + declare export { + default as AirplayRounded, + } from '@material-ui/icons/AirplayRounded'; + declare export { + default as AirplaySharp, + } from '@material-ui/icons/AirplaySharp'; + declare export { + default as AirplayTwoTone, + } from '@material-ui/icons/AirplayTwoTone'; + declare export { + default as AirportShuttle, + } from '@material-ui/icons/AirportShuttle'; + declare export { + default as AirportShuttleOutlined, + } from '@material-ui/icons/AirportShuttleOutlined'; + declare export { + default as AirportShuttleRounded, + } from '@material-ui/icons/AirportShuttleRounded'; + declare export { + default as AirportShuttleSharp, + } from '@material-ui/icons/AirportShuttleSharp'; + declare export { + default as AirportShuttleTwoTone, + } from '@material-ui/icons/AirportShuttleTwoTone'; + declare export { default as AlarmAdd } from '@material-ui/icons/AlarmAdd'; + declare export { + default as AlarmAddOutlined, + } from '@material-ui/icons/AlarmAddOutlined'; + declare export { + default as AlarmAddRounded, + } from '@material-ui/icons/AlarmAddRounded'; + declare export { + default as AlarmAddSharp, + } from '@material-ui/icons/AlarmAddSharp'; + declare export { + default as AlarmAddTwoTone, + } from '@material-ui/icons/AlarmAddTwoTone'; + declare export { default as Alarm } from '@material-ui/icons/Alarm'; + declare export { default as AlarmOff } from '@material-ui/icons/AlarmOff'; + declare export { + default as AlarmOffOutlined, + } from '@material-ui/icons/AlarmOffOutlined'; + declare export { + default as AlarmOffRounded, + } from '@material-ui/icons/AlarmOffRounded'; + declare export { + default as AlarmOffSharp, + } from '@material-ui/icons/AlarmOffSharp'; + declare export { + default as AlarmOffTwoTone, + } from '@material-ui/icons/AlarmOffTwoTone'; + declare export { default as AlarmOn } from '@material-ui/icons/AlarmOn'; + declare export { + default as AlarmOnOutlined, + } from '@material-ui/icons/AlarmOnOutlined'; + declare export { + default as AlarmOnRounded, + } from '@material-ui/icons/AlarmOnRounded'; + declare export { + default as AlarmOnSharp, + } from '@material-ui/icons/AlarmOnSharp'; + declare export { + default as AlarmOnTwoTone, + } from '@material-ui/icons/AlarmOnTwoTone'; + declare export { + default as AlarmOutlined, + } from '@material-ui/icons/AlarmOutlined'; + declare export { + default as AlarmRounded, + } from '@material-ui/icons/AlarmRounded'; + declare export { default as AlarmSharp } from '@material-ui/icons/AlarmSharp'; + declare export { + default as AlarmTwoTone, + } from '@material-ui/icons/AlarmTwoTone'; + declare export { default as Album } from '@material-ui/icons/Album'; + declare export { + default as AlbumOutlined, + } from '@material-ui/icons/AlbumOutlined'; + declare export { + default as AlbumRounded, + } from '@material-ui/icons/AlbumRounded'; + declare export { default as AlbumSharp } from '@material-ui/icons/AlbumSharp'; + declare export { + default as AlbumTwoTone, + } from '@material-ui/icons/AlbumTwoTone'; + declare export { default as AllInbox } from '@material-ui/icons/AllInbox'; + declare export { + default as AllInboxOutlined, + } from '@material-ui/icons/AllInboxOutlined'; + declare export { + default as AllInboxRounded, + } from '@material-ui/icons/AllInboxRounded'; + declare export { + default as AllInboxSharp, + } from '@material-ui/icons/AllInboxSharp'; + declare export { + default as AllInboxTwoTone, + } from '@material-ui/icons/AllInboxTwoTone'; + declare export { + default as AllInclusive, + } from '@material-ui/icons/AllInclusive'; + declare export { + default as AllInclusiveOutlined, + } from '@material-ui/icons/AllInclusiveOutlined'; + declare export { + default as AllInclusiveRounded, + } from '@material-ui/icons/AllInclusiveRounded'; + declare export { + default as AllInclusiveSharp, + } from '@material-ui/icons/AllInclusiveSharp'; + declare export { + default as AllInclusiveTwoTone, + } from '@material-ui/icons/AllInclusiveTwoTone'; + declare export { default as AllOut } from '@material-ui/icons/AllOut'; + declare export { + default as AllOutOutlined, + } from '@material-ui/icons/AllOutOutlined'; + declare export { + default as AllOutRounded, + } from '@material-ui/icons/AllOutRounded'; + declare export { + default as AllOutSharp, + } from '@material-ui/icons/AllOutSharp'; + declare export { + default as AllOutTwoTone, + } from '@material-ui/icons/AllOutTwoTone'; + declare export { + default as AlternateEmail, + } from '@material-ui/icons/AlternateEmail'; + declare export { + default as AlternateEmailOutlined, + } from '@material-ui/icons/AlternateEmailOutlined'; + declare export { + default as AlternateEmailRounded, + } from '@material-ui/icons/AlternateEmailRounded'; + declare export { + default as AlternateEmailSharp, + } from '@material-ui/icons/AlternateEmailSharp'; + declare export { + default as AlternateEmailTwoTone, + } from '@material-ui/icons/AlternateEmailTwoTone'; + declare export { default as Android } from '@material-ui/icons/Android'; + declare export { + default as AndroidOutlined, + } from '@material-ui/icons/AndroidOutlined'; + declare export { + default as AndroidRounded, + } from '@material-ui/icons/AndroidRounded'; + declare export { + default as AndroidSharp, + } from '@material-ui/icons/AndroidSharp'; + declare export { + default as AndroidTwoTone, + } from '@material-ui/icons/AndroidTwoTone'; + declare export { + default as Announcement, + } from '@material-ui/icons/Announcement'; + declare export { + default as AnnouncementOutlined, + } from '@material-ui/icons/AnnouncementOutlined'; + declare export { + default as AnnouncementRounded, + } from '@material-ui/icons/AnnouncementRounded'; + declare export { + default as AnnouncementSharp, + } from '@material-ui/icons/AnnouncementSharp'; + declare export { + default as AnnouncementTwoTone, + } from '@material-ui/icons/AnnouncementTwoTone'; + declare export { default as Apps } from '@material-ui/icons/Apps'; + declare export { + default as AppsOutlined, + } from '@material-ui/icons/AppsOutlined'; + declare export { + default as AppsRounded, + } from '@material-ui/icons/AppsRounded'; + declare export { default as AppsSharp } from '@material-ui/icons/AppsSharp'; + declare export { + default as AppsTwoTone, + } from '@material-ui/icons/AppsTwoTone'; + declare export { default as Archive } from '@material-ui/icons/Archive'; + declare export { + default as ArchiveOutlined, + } from '@material-ui/icons/ArchiveOutlined'; + declare export { + default as ArchiveRounded, + } from '@material-ui/icons/ArchiveRounded'; + declare export { + default as ArchiveSharp, + } from '@material-ui/icons/ArchiveSharp'; + declare export { + default as ArchiveTwoTone, + } from '@material-ui/icons/ArchiveTwoTone'; + declare export { + default as ArrowBackIos, + } from '@material-ui/icons/ArrowBackIos'; + declare export { + default as ArrowBackIosOutlined, + } from '@material-ui/icons/ArrowBackIosOutlined'; + declare export { + default as ArrowBackIosRounded, + } from '@material-ui/icons/ArrowBackIosRounded'; + declare export { + default as ArrowBackIosSharp, + } from '@material-ui/icons/ArrowBackIosSharp'; + declare export { + default as ArrowBackIosTwoTone, + } from '@material-ui/icons/ArrowBackIosTwoTone'; + declare export { default as ArrowBack } from '@material-ui/icons/ArrowBack'; + declare export { + default as ArrowBackOutlined, + } from '@material-ui/icons/ArrowBackOutlined'; + declare export { + default as ArrowBackRounded, + } from '@material-ui/icons/ArrowBackRounded'; + declare export { + default as ArrowBackSharp, + } from '@material-ui/icons/ArrowBackSharp'; + declare export { + default as ArrowBackTwoTone, + } from '@material-ui/icons/ArrowBackTwoTone'; + declare export { + default as ArrowDownward, + } from '@material-ui/icons/ArrowDownward'; + declare export { + default as ArrowDownwardOutlined, + } from '@material-ui/icons/ArrowDownwardOutlined'; + declare export { + default as ArrowDownwardRounded, + } from '@material-ui/icons/ArrowDownwardRounded'; + declare export { + default as ArrowDownwardSharp, + } from '@material-ui/icons/ArrowDownwardSharp'; + declare export { + default as ArrowDownwardTwoTone, + } from '@material-ui/icons/ArrowDownwardTwoTone'; + declare export { + default as ArrowDropDownCircle, + } from '@material-ui/icons/ArrowDropDownCircle'; + declare export { + default as ArrowDropDownCircleOutlined, + } from '@material-ui/icons/ArrowDropDownCircleOutlined'; + declare export { + default as ArrowDropDownCircleRounded, + } from '@material-ui/icons/ArrowDropDownCircleRounded'; + declare export { + default as ArrowDropDownCircleSharp, + } from '@material-ui/icons/ArrowDropDownCircleSharp'; + declare export { + default as ArrowDropDownCircleTwoTone, + } from '@material-ui/icons/ArrowDropDownCircleTwoTone'; + declare export { + default as ArrowDropDown, + } from '@material-ui/icons/ArrowDropDown'; + declare export { + default as ArrowDropDownOutlined, + } from '@material-ui/icons/ArrowDropDownOutlined'; + declare export { + default as ArrowDropDownRounded, + } from '@material-ui/icons/ArrowDropDownRounded'; + declare export { + default as ArrowDropDownSharp, + } from '@material-ui/icons/ArrowDropDownSharp'; + declare export { + default as ArrowDropDownTwoTone, + } from '@material-ui/icons/ArrowDropDownTwoTone'; + declare export { + default as ArrowDropUp, + } from '@material-ui/icons/ArrowDropUp'; + declare export { + default as ArrowDropUpOutlined, + } from '@material-ui/icons/ArrowDropUpOutlined'; + declare export { + default as ArrowDropUpRounded, + } from '@material-ui/icons/ArrowDropUpRounded'; + declare export { + default as ArrowDropUpSharp, + } from '@material-ui/icons/ArrowDropUpSharp'; + declare export { + default as ArrowDropUpTwoTone, + } from '@material-ui/icons/ArrowDropUpTwoTone'; + declare export { + default as ArrowForwardIos, + } from '@material-ui/icons/ArrowForwardIos'; + declare export { + default as ArrowForwardIosOutlined, + } from '@material-ui/icons/ArrowForwardIosOutlined'; + declare export { + default as ArrowForwardIosRounded, + } from '@material-ui/icons/ArrowForwardIosRounded'; + declare export { + default as ArrowForwardIosSharp, + } from '@material-ui/icons/ArrowForwardIosSharp'; + declare export { + default as ArrowForwardIosTwoTone, + } from '@material-ui/icons/ArrowForwardIosTwoTone'; + declare export { + default as ArrowForward, + } from '@material-ui/icons/ArrowForward'; + declare export { + default as ArrowForwardOutlined, + } from '@material-ui/icons/ArrowForwardOutlined'; + declare export { + default as ArrowForwardRounded, + } from '@material-ui/icons/ArrowForwardRounded'; + declare export { + default as ArrowForwardSharp, + } from '@material-ui/icons/ArrowForwardSharp'; + declare export { + default as ArrowForwardTwoTone, + } from '@material-ui/icons/ArrowForwardTwoTone'; + declare export { default as ArrowLeft } from '@material-ui/icons/ArrowLeft'; + declare export { + default as ArrowLeftOutlined, + } from '@material-ui/icons/ArrowLeftOutlined'; + declare export { + default as ArrowLeftRounded, + } from '@material-ui/icons/ArrowLeftRounded'; + declare export { + default as ArrowLeftSharp, + } from '@material-ui/icons/ArrowLeftSharp'; + declare export { + default as ArrowLeftTwoTone, + } from '@material-ui/icons/ArrowLeftTwoTone'; + declare export { + default as ArrowRightAlt, + } from '@material-ui/icons/ArrowRightAlt'; + declare export { + default as ArrowRightAltOutlined, + } from '@material-ui/icons/ArrowRightAltOutlined'; + declare export { + default as ArrowRightAltRounded, + } from '@material-ui/icons/ArrowRightAltRounded'; + declare export { + default as ArrowRightAltSharp, + } from '@material-ui/icons/ArrowRightAltSharp'; + declare export { + default as ArrowRightAltTwoTone, + } from '@material-ui/icons/ArrowRightAltTwoTone'; + declare export { default as ArrowRight } from '@material-ui/icons/ArrowRight'; + declare export { + default as ArrowRightOutlined, + } from '@material-ui/icons/ArrowRightOutlined'; + declare export { + default as ArrowRightRounded, + } from '@material-ui/icons/ArrowRightRounded'; + declare export { + default as ArrowRightSharp, + } from '@material-ui/icons/ArrowRightSharp'; + declare export { + default as ArrowRightTwoTone, + } from '@material-ui/icons/ArrowRightTwoTone'; + declare export { + default as ArrowUpward, + } from '@material-ui/icons/ArrowUpward'; + declare export { + default as ArrowUpwardOutlined, + } from '@material-ui/icons/ArrowUpwardOutlined'; + declare export { + default as ArrowUpwardRounded, + } from '@material-ui/icons/ArrowUpwardRounded'; + declare export { + default as ArrowUpwardSharp, + } from '@material-ui/icons/ArrowUpwardSharp'; + declare export { + default as ArrowUpwardTwoTone, + } from '@material-ui/icons/ArrowUpwardTwoTone'; + declare export { default as ArtTrack } from '@material-ui/icons/ArtTrack'; + declare export { + default as ArtTrackOutlined, + } from '@material-ui/icons/ArtTrackOutlined'; + declare export { + default as ArtTrackRounded, + } from '@material-ui/icons/ArtTrackRounded'; + declare export { + default as ArtTrackSharp, + } from '@material-ui/icons/ArtTrackSharp'; + declare export { + default as ArtTrackTwoTone, + } from '@material-ui/icons/ArtTrackTwoTone'; + declare export { + default as AspectRatio, + } from '@material-ui/icons/AspectRatio'; + declare export { + default as AspectRatioOutlined, + } from '@material-ui/icons/AspectRatioOutlined'; + declare export { + default as AspectRatioRounded, + } from '@material-ui/icons/AspectRatioRounded'; + declare export { + default as AspectRatioSharp, + } from '@material-ui/icons/AspectRatioSharp'; + declare export { + default as AspectRatioTwoTone, + } from '@material-ui/icons/AspectRatioTwoTone'; + declare export { default as Assessment } from '@material-ui/icons/Assessment'; + declare export { + default as AssessmentOutlined, + } from '@material-ui/icons/AssessmentOutlined'; + declare export { + default as AssessmentRounded, + } from '@material-ui/icons/AssessmentRounded'; + declare export { + default as AssessmentSharp, + } from '@material-ui/icons/AssessmentSharp'; + declare export { + default as AssessmentTwoTone, + } from '@material-ui/icons/AssessmentTwoTone'; + declare export { + default as AssignmentInd, + } from '@material-ui/icons/AssignmentInd'; + declare export { + default as AssignmentIndOutlined, + } from '@material-ui/icons/AssignmentIndOutlined'; + declare export { + default as AssignmentIndRounded, + } from '@material-ui/icons/AssignmentIndRounded'; + declare export { + default as AssignmentIndSharp, + } from '@material-ui/icons/AssignmentIndSharp'; + declare export { + default as AssignmentIndTwoTone, + } from '@material-ui/icons/AssignmentIndTwoTone'; + declare export { default as Assignment } from '@material-ui/icons/Assignment'; + declare export { + default as AssignmentLate, + } from '@material-ui/icons/AssignmentLate'; + declare export { + default as AssignmentLateOutlined, + } from '@material-ui/icons/AssignmentLateOutlined'; + declare export { + default as AssignmentLateRounded, + } from '@material-ui/icons/AssignmentLateRounded'; + declare export { + default as AssignmentLateSharp, + } from '@material-ui/icons/AssignmentLateSharp'; + declare export { + default as AssignmentLateTwoTone, + } from '@material-ui/icons/AssignmentLateTwoTone'; + declare export { + default as AssignmentOutlined, + } from '@material-ui/icons/AssignmentOutlined'; + declare export { + default as AssignmentReturned, + } from '@material-ui/icons/AssignmentReturned'; + declare export { + default as AssignmentReturnedOutlined, + } from '@material-ui/icons/AssignmentReturnedOutlined'; + declare export { + default as AssignmentReturnedRounded, + } from '@material-ui/icons/AssignmentReturnedRounded'; + declare export { + default as AssignmentReturnedSharp, + } from '@material-ui/icons/AssignmentReturnedSharp'; + declare export { + default as AssignmentReturnedTwoTone, + } from '@material-ui/icons/AssignmentReturnedTwoTone'; + declare export { + default as AssignmentReturn, + } from '@material-ui/icons/AssignmentReturn'; + declare export { + default as AssignmentReturnOutlined, + } from '@material-ui/icons/AssignmentReturnOutlined'; + declare export { + default as AssignmentReturnRounded, + } from '@material-ui/icons/AssignmentReturnRounded'; + declare export { + default as AssignmentReturnSharp, + } from '@material-ui/icons/AssignmentReturnSharp'; + declare export { + default as AssignmentReturnTwoTone, + } from '@material-ui/icons/AssignmentReturnTwoTone'; + declare export { + default as AssignmentRounded, + } from '@material-ui/icons/AssignmentRounded'; + declare export { + default as AssignmentSharp, + } from '@material-ui/icons/AssignmentSharp'; + declare export { + default as AssignmentTurnedIn, + } from '@material-ui/icons/AssignmentTurnedIn'; + declare export { + default as AssignmentTurnedInOutlined, + } from '@material-ui/icons/AssignmentTurnedInOutlined'; + declare export { + default as AssignmentTurnedInRounded, + } from '@material-ui/icons/AssignmentTurnedInRounded'; + declare export { + default as AssignmentTurnedInSharp, + } from '@material-ui/icons/AssignmentTurnedInSharp'; + declare export { + default as AssignmentTurnedInTwoTone, + } from '@material-ui/icons/AssignmentTurnedInTwoTone'; + declare export { + default as AssignmentTwoTone, + } from '@material-ui/icons/AssignmentTwoTone'; + declare export { default as Assistant } from '@material-ui/icons/Assistant'; + declare export { + default as AssistantOutlined, + } from '@material-ui/icons/AssistantOutlined'; + declare export { + default as AssistantPhoto, + } from '@material-ui/icons/AssistantPhoto'; + declare export { + default as AssistantPhotoOutlined, + } from '@material-ui/icons/AssistantPhotoOutlined'; + declare export { + default as AssistantPhotoRounded, + } from '@material-ui/icons/AssistantPhotoRounded'; + declare export { + default as AssistantPhotoSharp, + } from '@material-ui/icons/AssistantPhotoSharp'; + declare export { + default as AssistantPhotoTwoTone, + } from '@material-ui/icons/AssistantPhotoTwoTone'; + declare export { + default as AssistantRounded, + } from '@material-ui/icons/AssistantRounded'; + declare export { + default as AssistantSharp, + } from '@material-ui/icons/AssistantSharp'; + declare export { + default as AssistantTwoTone, + } from '@material-ui/icons/AssistantTwoTone'; + declare export { default as Atm } from '@material-ui/icons/Atm'; + declare export { + default as AtmOutlined, + } from '@material-ui/icons/AtmOutlined'; + declare export { default as AtmRounded } from '@material-ui/icons/AtmRounded'; + declare export { default as AtmSharp } from '@material-ui/icons/AtmSharp'; + declare export { default as AtmTwoTone } from '@material-ui/icons/AtmTwoTone'; + declare export { default as AttachFile } from '@material-ui/icons/AttachFile'; + declare export { + default as AttachFileOutlined, + } from '@material-ui/icons/AttachFileOutlined'; + declare export { + default as AttachFileRounded, + } from '@material-ui/icons/AttachFileRounded'; + declare export { + default as AttachFileSharp, + } from '@material-ui/icons/AttachFileSharp'; + declare export { + default as AttachFileTwoTone, + } from '@material-ui/icons/AttachFileTwoTone'; + declare export { default as Attachment } from '@material-ui/icons/Attachment'; + declare export { + default as AttachmentOutlined, + } from '@material-ui/icons/AttachmentOutlined'; + declare export { + default as AttachmentRounded, + } from '@material-ui/icons/AttachmentRounded'; + declare export { + default as AttachmentSharp, + } from '@material-ui/icons/AttachmentSharp'; + declare export { + default as AttachmentTwoTone, + } from '@material-ui/icons/AttachmentTwoTone'; + declare export { + default as AttachMoney, + } from '@material-ui/icons/AttachMoney'; + declare export { + default as AttachMoneyOutlined, + } from '@material-ui/icons/AttachMoneyOutlined'; + declare export { + default as AttachMoneyRounded, + } from '@material-ui/icons/AttachMoneyRounded'; + declare export { + default as AttachMoneySharp, + } from '@material-ui/icons/AttachMoneySharp'; + declare export { + default as AttachMoneyTwoTone, + } from '@material-ui/icons/AttachMoneyTwoTone'; + declare export { default as Audiotrack } from '@material-ui/icons/Audiotrack'; + declare export { + default as AudiotrackOutlined, + } from '@material-ui/icons/AudiotrackOutlined'; + declare export { + default as AudiotrackRounded, + } from '@material-ui/icons/AudiotrackRounded'; + declare export { + default as AudiotrackSharp, + } from '@material-ui/icons/AudiotrackSharp'; + declare export { + default as AudiotrackTwoTone, + } from '@material-ui/icons/AudiotrackTwoTone'; + declare export { default as Autorenew } from '@material-ui/icons/Autorenew'; + declare export { + default as AutorenewOutlined, + } from '@material-ui/icons/AutorenewOutlined'; + declare export { + default as AutorenewRounded, + } from '@material-ui/icons/AutorenewRounded'; + declare export { + default as AutorenewSharp, + } from '@material-ui/icons/AutorenewSharp'; + declare export { + default as AutorenewTwoTone, + } from '@material-ui/icons/AutorenewTwoTone'; + declare export { default as AvTimer } from '@material-ui/icons/AvTimer'; + declare export { + default as AvTimerOutlined, + } from '@material-ui/icons/AvTimerOutlined'; + declare export { + default as AvTimerRounded, + } from '@material-ui/icons/AvTimerRounded'; + declare export { + default as AvTimerSharp, + } from '@material-ui/icons/AvTimerSharp'; + declare export { + default as AvTimerTwoTone, + } from '@material-ui/icons/AvTimerTwoTone'; + declare export { default as Backspace } from '@material-ui/icons/Backspace'; + declare export { + default as BackspaceOutlined, + } from '@material-ui/icons/BackspaceOutlined'; + declare export { + default as BackspaceRounded, + } from '@material-ui/icons/BackspaceRounded'; + declare export { + default as BackspaceSharp, + } from '@material-ui/icons/BackspaceSharp'; + declare export { + default as BackspaceTwoTone, + } from '@material-ui/icons/BackspaceTwoTone'; + declare export { default as Backup } from '@material-ui/icons/Backup'; + declare export { + default as BackupOutlined, + } from '@material-ui/icons/BackupOutlined'; + declare export { + default as BackupRounded, + } from '@material-ui/icons/BackupRounded'; + declare export { + default as BackupSharp, + } from '@material-ui/icons/BackupSharp'; + declare export { + default as BackupTwoTone, + } from '@material-ui/icons/BackupTwoTone'; + declare export { default as Ballot } from '@material-ui/icons/Ballot'; + declare export { + default as BallotOutlined, + } from '@material-ui/icons/BallotOutlined'; + declare export { + default as BallotRounded, + } from '@material-ui/icons/BallotRounded'; + declare export { + default as BallotSharp, + } from '@material-ui/icons/BallotSharp'; + declare export { + default as BallotTwoTone, + } from '@material-ui/icons/BallotTwoTone'; + declare export { default as BarChart } from '@material-ui/icons/BarChart'; + declare export { + default as BarChartOutlined, + } from '@material-ui/icons/BarChartOutlined'; + declare export { + default as BarChartRounded, + } from '@material-ui/icons/BarChartRounded'; + declare export { + default as BarChartSharp, + } from '@material-ui/icons/BarChartSharp'; + declare export { + default as BarChartTwoTone, + } from '@material-ui/icons/BarChartTwoTone'; + declare export { default as Battery20 } from '@material-ui/icons/Battery20'; + declare export { + default as Battery20Outlined, + } from '@material-ui/icons/Battery20Outlined'; + declare export { + default as Battery20Rounded, + } from '@material-ui/icons/Battery20Rounded'; + declare export { + default as Battery20Sharp, + } from '@material-ui/icons/Battery20Sharp'; + declare export { + default as Battery20TwoTone, + } from '@material-ui/icons/Battery20TwoTone'; + declare export { default as Battery30 } from '@material-ui/icons/Battery30'; + declare export { + default as Battery30Outlined, + } from '@material-ui/icons/Battery30Outlined'; + declare export { + default as Battery30Rounded, + } from '@material-ui/icons/Battery30Rounded'; + declare export { + default as Battery30Sharp, + } from '@material-ui/icons/Battery30Sharp'; + declare export { + default as Battery30TwoTone, + } from '@material-ui/icons/Battery30TwoTone'; + declare export { default as Battery50 } from '@material-ui/icons/Battery50'; + declare export { + default as Battery50Outlined, + } from '@material-ui/icons/Battery50Outlined'; + declare export { + default as Battery50Rounded, + } from '@material-ui/icons/Battery50Rounded'; + declare export { + default as Battery50Sharp, + } from '@material-ui/icons/Battery50Sharp'; + declare export { + default as Battery50TwoTone, + } from '@material-ui/icons/Battery50TwoTone'; + declare export { default as Battery60 } from '@material-ui/icons/Battery60'; + declare export { + default as Battery60Outlined, + } from '@material-ui/icons/Battery60Outlined'; + declare export { + default as Battery60Rounded, + } from '@material-ui/icons/Battery60Rounded'; + declare export { + default as Battery60Sharp, + } from '@material-ui/icons/Battery60Sharp'; + declare export { + default as Battery60TwoTone, + } from '@material-ui/icons/Battery60TwoTone'; + declare export { default as Battery80 } from '@material-ui/icons/Battery80'; + declare export { + default as Battery80Outlined, + } from '@material-ui/icons/Battery80Outlined'; + declare export { + default as Battery80Rounded, + } from '@material-ui/icons/Battery80Rounded'; + declare export { + default as Battery80Sharp, + } from '@material-ui/icons/Battery80Sharp'; + declare export { + default as Battery80TwoTone, + } from '@material-ui/icons/Battery80TwoTone'; + declare export { default as Battery90 } from '@material-ui/icons/Battery90'; + declare export { + default as Battery90Outlined, + } from '@material-ui/icons/Battery90Outlined'; + declare export { + default as Battery90Rounded, + } from '@material-ui/icons/Battery90Rounded'; + declare export { + default as Battery90Sharp, + } from '@material-ui/icons/Battery90Sharp'; + declare export { + default as Battery90TwoTone, + } from '@material-ui/icons/Battery90TwoTone'; + declare export { + default as BatteryAlert, + } from '@material-ui/icons/BatteryAlert'; + declare export { + default as BatteryAlertOutlined, + } from '@material-ui/icons/BatteryAlertOutlined'; + declare export { + default as BatteryAlertRounded, + } from '@material-ui/icons/BatteryAlertRounded'; + declare export { + default as BatteryAlertSharp, + } from '@material-ui/icons/BatteryAlertSharp'; + declare export { + default as BatteryAlertTwoTone, + } from '@material-ui/icons/BatteryAlertTwoTone'; + declare export { + default as BatteryCharging20, + } from '@material-ui/icons/BatteryCharging20'; + declare export { + default as BatteryCharging20Outlined, + } from '@material-ui/icons/BatteryCharging20Outlined'; + declare export { + default as BatteryCharging20Rounded, + } from '@material-ui/icons/BatteryCharging20Rounded'; + declare export { + default as BatteryCharging20Sharp, + } from '@material-ui/icons/BatteryCharging20Sharp'; + declare export { + default as BatteryCharging20TwoTone, + } from '@material-ui/icons/BatteryCharging20TwoTone'; + declare export { + default as BatteryCharging30, + } from '@material-ui/icons/BatteryCharging30'; + declare export { + default as BatteryCharging30Outlined, + } from '@material-ui/icons/BatteryCharging30Outlined'; + declare export { + default as BatteryCharging30Rounded, + } from '@material-ui/icons/BatteryCharging30Rounded'; + declare export { + default as BatteryCharging30Sharp, + } from '@material-ui/icons/BatteryCharging30Sharp'; + declare export { + default as BatteryCharging30TwoTone, + } from '@material-ui/icons/BatteryCharging30TwoTone'; + declare export { + default as BatteryCharging50, + } from '@material-ui/icons/BatteryCharging50'; + declare export { + default as BatteryCharging50Outlined, + } from '@material-ui/icons/BatteryCharging50Outlined'; + declare export { + default as BatteryCharging50Rounded, + } from '@material-ui/icons/BatteryCharging50Rounded'; + declare export { + default as BatteryCharging50Sharp, + } from '@material-ui/icons/BatteryCharging50Sharp'; + declare export { + default as BatteryCharging50TwoTone, + } from '@material-ui/icons/BatteryCharging50TwoTone'; + declare export { + default as BatteryCharging60, + } from '@material-ui/icons/BatteryCharging60'; + declare export { + default as BatteryCharging60Outlined, + } from '@material-ui/icons/BatteryCharging60Outlined'; + declare export { + default as BatteryCharging60Rounded, + } from '@material-ui/icons/BatteryCharging60Rounded'; + declare export { + default as BatteryCharging60Sharp, + } from '@material-ui/icons/BatteryCharging60Sharp'; + declare export { + default as BatteryCharging60TwoTone, + } from '@material-ui/icons/BatteryCharging60TwoTone'; + declare export { + default as BatteryCharging80, + } from '@material-ui/icons/BatteryCharging80'; + declare export { + default as BatteryCharging80Outlined, + } from '@material-ui/icons/BatteryCharging80Outlined'; + declare export { + default as BatteryCharging80Rounded, + } from '@material-ui/icons/BatteryCharging80Rounded'; + declare export { + default as BatteryCharging80Sharp, + } from '@material-ui/icons/BatteryCharging80Sharp'; + declare export { + default as BatteryCharging80TwoTone, + } from '@material-ui/icons/BatteryCharging80TwoTone'; + declare export { + default as BatteryCharging90, + } from '@material-ui/icons/BatteryCharging90'; + declare export { + default as BatteryCharging90Outlined, + } from '@material-ui/icons/BatteryCharging90Outlined'; + declare export { + default as BatteryCharging90Rounded, + } from '@material-ui/icons/BatteryCharging90Rounded'; + declare export { + default as BatteryCharging90Sharp, + } from '@material-ui/icons/BatteryCharging90Sharp'; + declare export { + default as BatteryCharging90TwoTone, + } from '@material-ui/icons/BatteryCharging90TwoTone'; + declare export { + default as BatteryChargingFull, + } from '@material-ui/icons/BatteryChargingFull'; + declare export { + default as BatteryChargingFullOutlined, + } from '@material-ui/icons/BatteryChargingFullOutlined'; + declare export { + default as BatteryChargingFullRounded, + } from '@material-ui/icons/BatteryChargingFullRounded'; + declare export { + default as BatteryChargingFullSharp, + } from '@material-ui/icons/BatteryChargingFullSharp'; + declare export { + default as BatteryChargingFullTwoTone, + } from '@material-ui/icons/BatteryChargingFullTwoTone'; + declare export { + default as BatteryFull, + } from '@material-ui/icons/BatteryFull'; + declare export { + default as BatteryFullOutlined, + } from '@material-ui/icons/BatteryFullOutlined'; + declare export { + default as BatteryFullRounded, + } from '@material-ui/icons/BatteryFullRounded'; + declare export { + default as BatteryFullSharp, + } from '@material-ui/icons/BatteryFullSharp'; + declare export { + default as BatteryFullTwoTone, + } from '@material-ui/icons/BatteryFullTwoTone'; + declare export { default as BatteryStd } from '@material-ui/icons/BatteryStd'; + declare export { + default as BatteryStdOutlined, + } from '@material-ui/icons/BatteryStdOutlined'; + declare export { + default as BatteryStdRounded, + } from '@material-ui/icons/BatteryStdRounded'; + declare export { + default as BatteryStdSharp, + } from '@material-ui/icons/BatteryStdSharp'; + declare export { + default as BatteryStdTwoTone, + } from '@material-ui/icons/BatteryStdTwoTone'; + declare export { + default as BatteryUnknown, + } from '@material-ui/icons/BatteryUnknown'; + declare export { + default as BatteryUnknownOutlined, + } from '@material-ui/icons/BatteryUnknownOutlined'; + declare export { + default as BatteryUnknownRounded, + } from '@material-ui/icons/BatteryUnknownRounded'; + declare export { + default as BatteryUnknownSharp, + } from '@material-ui/icons/BatteryUnknownSharp'; + declare export { + default as BatteryUnknownTwoTone, + } from '@material-ui/icons/BatteryUnknownTwoTone'; + declare export { + default as BeachAccess, + } from '@material-ui/icons/BeachAccess'; + declare export { + default as BeachAccessOutlined, + } from '@material-ui/icons/BeachAccessOutlined'; + declare export { + default as BeachAccessRounded, + } from '@material-ui/icons/BeachAccessRounded'; + declare export { + default as BeachAccessSharp, + } from '@material-ui/icons/BeachAccessSharp'; + declare export { + default as BeachAccessTwoTone, + } from '@material-ui/icons/BeachAccessTwoTone'; + declare export { default as Beenhere } from '@material-ui/icons/Beenhere'; + declare export { + default as BeenhereOutlined, + } from '@material-ui/icons/BeenhereOutlined'; + declare export { + default as BeenhereRounded, + } from '@material-ui/icons/BeenhereRounded'; + declare export { + default as BeenhereSharp, + } from '@material-ui/icons/BeenhereSharp'; + declare export { + default as BeenhereTwoTone, + } from '@material-ui/icons/BeenhereTwoTone'; + declare export { default as Block } from '@material-ui/icons/Block'; + declare export { + default as BlockOutlined, + } from '@material-ui/icons/BlockOutlined'; + declare export { + default as BlockRounded, + } from '@material-ui/icons/BlockRounded'; + declare export { default as BlockSharp } from '@material-ui/icons/BlockSharp'; + declare export { + default as BlockTwoTone, + } from '@material-ui/icons/BlockTwoTone'; + declare export { + default as BluetoothAudio, + } from '@material-ui/icons/BluetoothAudio'; + declare export { + default as BluetoothAudioOutlined, + } from '@material-ui/icons/BluetoothAudioOutlined'; + declare export { + default as BluetoothAudioRounded, + } from '@material-ui/icons/BluetoothAudioRounded'; + declare export { + default as BluetoothAudioSharp, + } from '@material-ui/icons/BluetoothAudioSharp'; + declare export { + default as BluetoothAudioTwoTone, + } from '@material-ui/icons/BluetoothAudioTwoTone'; + declare export { + default as BluetoothConnected, + } from '@material-ui/icons/BluetoothConnected'; + declare export { + default as BluetoothConnectedOutlined, + } from '@material-ui/icons/BluetoothConnectedOutlined'; + declare export { + default as BluetoothConnectedRounded, + } from '@material-ui/icons/BluetoothConnectedRounded'; + declare export { + default as BluetoothConnectedSharp, + } from '@material-ui/icons/BluetoothConnectedSharp'; + declare export { + default as BluetoothConnectedTwoTone, + } from '@material-ui/icons/BluetoothConnectedTwoTone'; + declare export { + default as BluetoothDisabled, + } from '@material-ui/icons/BluetoothDisabled'; + declare export { + default as BluetoothDisabledOutlined, + } from '@material-ui/icons/BluetoothDisabledOutlined'; + declare export { + default as BluetoothDisabledRounded, + } from '@material-ui/icons/BluetoothDisabledRounded'; + declare export { + default as BluetoothDisabledSharp, + } from '@material-ui/icons/BluetoothDisabledSharp'; + declare export { + default as BluetoothDisabledTwoTone, + } from '@material-ui/icons/BluetoothDisabledTwoTone'; + declare export { default as Bluetooth } from '@material-ui/icons/Bluetooth'; + declare export { + default as BluetoothOutlined, + } from '@material-ui/icons/BluetoothOutlined'; + declare export { + default as BluetoothRounded, + } from '@material-ui/icons/BluetoothRounded'; + declare export { + default as BluetoothSearching, + } from '@material-ui/icons/BluetoothSearching'; + declare export { + default as BluetoothSearchingOutlined, + } from '@material-ui/icons/BluetoothSearchingOutlined'; + declare export { + default as BluetoothSearchingRounded, + } from '@material-ui/icons/BluetoothSearchingRounded'; + declare export { + default as BluetoothSearchingSharp, + } from '@material-ui/icons/BluetoothSearchingSharp'; + declare export { + default as BluetoothSearchingTwoTone, + } from '@material-ui/icons/BluetoothSearchingTwoTone'; + declare export { + default as BluetoothSharp, + } from '@material-ui/icons/BluetoothSharp'; + declare export { + default as BluetoothTwoTone, + } from '@material-ui/icons/BluetoothTwoTone'; + declare export { + default as BlurCircular, + } from '@material-ui/icons/BlurCircular'; + declare export { + default as BlurCircularOutlined, + } from '@material-ui/icons/BlurCircularOutlined'; + declare export { + default as BlurCircularRounded, + } from '@material-ui/icons/BlurCircularRounded'; + declare export { + default as BlurCircularSharp, + } from '@material-ui/icons/BlurCircularSharp'; + declare export { + default as BlurCircularTwoTone, + } from '@material-ui/icons/BlurCircularTwoTone'; + declare export { default as BlurLinear } from '@material-ui/icons/BlurLinear'; + declare export { + default as BlurLinearOutlined, + } from '@material-ui/icons/BlurLinearOutlined'; + declare export { + default as BlurLinearRounded, + } from '@material-ui/icons/BlurLinearRounded'; + declare export { + default as BlurLinearSharp, + } from '@material-ui/icons/BlurLinearSharp'; + declare export { + default as BlurLinearTwoTone, + } from '@material-ui/icons/BlurLinearTwoTone'; + declare export { default as BlurOff } from '@material-ui/icons/BlurOff'; + declare export { + default as BlurOffOutlined, + } from '@material-ui/icons/BlurOffOutlined'; + declare export { + default as BlurOffRounded, + } from '@material-ui/icons/BlurOffRounded'; + declare export { + default as BlurOffSharp, + } from '@material-ui/icons/BlurOffSharp'; + declare export { + default as BlurOffTwoTone, + } from '@material-ui/icons/BlurOffTwoTone'; + declare export { default as BlurOn } from '@material-ui/icons/BlurOn'; + declare export { + default as BlurOnOutlined, + } from '@material-ui/icons/BlurOnOutlined'; + declare export { + default as BlurOnRounded, + } from '@material-ui/icons/BlurOnRounded'; + declare export { + default as BlurOnSharp, + } from '@material-ui/icons/BlurOnSharp'; + declare export { + default as BlurOnTwoTone, + } from '@material-ui/icons/BlurOnTwoTone'; + declare export { default as Book } from '@material-ui/icons/Book'; + declare export { + default as BookmarkBorder, + } from '@material-ui/icons/BookmarkBorder'; + declare export { + default as BookmarkBorderOutlined, + } from '@material-ui/icons/BookmarkBorderOutlined'; + declare export { + default as BookmarkBorderRounded, + } from '@material-ui/icons/BookmarkBorderRounded'; + declare export { + default as BookmarkBorderSharp, + } from '@material-ui/icons/BookmarkBorderSharp'; + declare export { + default as BookmarkBorderTwoTone, + } from '@material-ui/icons/BookmarkBorderTwoTone'; + declare export { default as Bookmark } from '@material-ui/icons/Bookmark'; + declare export { + default as BookmarkOutlined, + } from '@material-ui/icons/BookmarkOutlined'; + declare export { + default as BookmarkRounded, + } from '@material-ui/icons/BookmarkRounded'; + declare export { + default as BookmarkSharp, + } from '@material-ui/icons/BookmarkSharp'; + declare export { default as Bookmarks } from '@material-ui/icons/Bookmarks'; + declare export { + default as BookmarksOutlined, + } from '@material-ui/icons/BookmarksOutlined'; + declare export { + default as BookmarksRounded, + } from '@material-ui/icons/BookmarksRounded'; + declare export { + default as BookmarksSharp, + } from '@material-ui/icons/BookmarksSharp'; + declare export { + default as BookmarksTwoTone, + } from '@material-ui/icons/BookmarksTwoTone'; + declare export { + default as BookmarkTwoTone, + } from '@material-ui/icons/BookmarkTwoTone'; + declare export { + default as BookOutlined, + } from '@material-ui/icons/BookOutlined'; + declare export { + default as BookRounded, + } from '@material-ui/icons/BookRounded'; + declare export { default as BookSharp } from '@material-ui/icons/BookSharp'; + declare export { + default as BookTwoTone, + } from '@material-ui/icons/BookTwoTone'; + declare export { default as BorderAll } from '@material-ui/icons/BorderAll'; + declare export { + default as BorderAllOutlined, + } from '@material-ui/icons/BorderAllOutlined'; + declare export { + default as BorderAllRounded, + } from '@material-ui/icons/BorderAllRounded'; + declare export { + default as BorderAllSharp, + } from '@material-ui/icons/BorderAllSharp'; + declare export { + default as BorderAllTwoTone, + } from '@material-ui/icons/BorderAllTwoTone'; + declare export { + default as BorderBottom, + } from '@material-ui/icons/BorderBottom'; + declare export { + default as BorderBottomOutlined, + } from '@material-ui/icons/BorderBottomOutlined'; + declare export { + default as BorderBottomRounded, + } from '@material-ui/icons/BorderBottomRounded'; + declare export { + default as BorderBottomSharp, + } from '@material-ui/icons/BorderBottomSharp'; + declare export { + default as BorderBottomTwoTone, + } from '@material-ui/icons/BorderBottomTwoTone'; + declare export { + default as BorderClear, + } from '@material-ui/icons/BorderClear'; + declare export { + default as BorderClearOutlined, + } from '@material-ui/icons/BorderClearOutlined'; + declare export { + default as BorderClearRounded, + } from '@material-ui/icons/BorderClearRounded'; + declare export { + default as BorderClearSharp, + } from '@material-ui/icons/BorderClearSharp'; + declare export { + default as BorderClearTwoTone, + } from '@material-ui/icons/BorderClearTwoTone'; + declare export { + default as BorderColor, + } from '@material-ui/icons/BorderColor'; + declare export { + default as BorderColorOutlined, + } from '@material-ui/icons/BorderColorOutlined'; + declare export { + default as BorderColorRounded, + } from '@material-ui/icons/BorderColorRounded'; + declare export { + default as BorderColorSharp, + } from '@material-ui/icons/BorderColorSharp'; + declare export { + default as BorderColorTwoTone, + } from '@material-ui/icons/BorderColorTwoTone'; + declare export { + default as BorderHorizontal, + } from '@material-ui/icons/BorderHorizontal'; + declare export { + default as BorderHorizontalOutlined, + } from '@material-ui/icons/BorderHorizontalOutlined'; + declare export { + default as BorderHorizontalRounded, + } from '@material-ui/icons/BorderHorizontalRounded'; + declare export { + default as BorderHorizontalSharp, + } from '@material-ui/icons/BorderHorizontalSharp'; + declare export { + default as BorderHorizontalTwoTone, + } from '@material-ui/icons/BorderHorizontalTwoTone'; + declare export { + default as BorderInner, + } from '@material-ui/icons/BorderInner'; + declare export { + default as BorderInnerOutlined, + } from '@material-ui/icons/BorderInnerOutlined'; + declare export { + default as BorderInnerRounded, + } from '@material-ui/icons/BorderInnerRounded'; + declare export { + default as BorderInnerSharp, + } from '@material-ui/icons/BorderInnerSharp'; + declare export { + default as BorderInnerTwoTone, + } from '@material-ui/icons/BorderInnerTwoTone'; + declare export { default as BorderLeft } from '@material-ui/icons/BorderLeft'; + declare export { + default as BorderLeftOutlined, + } from '@material-ui/icons/BorderLeftOutlined'; + declare export { + default as BorderLeftRounded, + } from '@material-ui/icons/BorderLeftRounded'; + declare export { + default as BorderLeftSharp, + } from '@material-ui/icons/BorderLeftSharp'; + declare export { + default as BorderLeftTwoTone, + } from '@material-ui/icons/BorderLeftTwoTone'; + declare export { + default as BorderOuter, + } from '@material-ui/icons/BorderOuter'; + declare export { + default as BorderOuterOutlined, + } from '@material-ui/icons/BorderOuterOutlined'; + declare export { + default as BorderOuterRounded, + } from '@material-ui/icons/BorderOuterRounded'; + declare export { + default as BorderOuterSharp, + } from '@material-ui/icons/BorderOuterSharp'; + declare export { + default as BorderOuterTwoTone, + } from '@material-ui/icons/BorderOuterTwoTone'; + declare export { + default as BorderRight, + } from '@material-ui/icons/BorderRight'; + declare export { + default as BorderRightOutlined, + } from '@material-ui/icons/BorderRightOutlined'; + declare export { + default as BorderRightRounded, + } from '@material-ui/icons/BorderRightRounded'; + declare export { + default as BorderRightSharp, + } from '@material-ui/icons/BorderRightSharp'; + declare export { + default as BorderRightTwoTone, + } from '@material-ui/icons/BorderRightTwoTone'; + declare export { + default as BorderStyle, + } from '@material-ui/icons/BorderStyle'; + declare export { + default as BorderStyleOutlined, + } from '@material-ui/icons/BorderStyleOutlined'; + declare export { + default as BorderStyleRounded, + } from '@material-ui/icons/BorderStyleRounded'; + declare export { + default as BorderStyleSharp, + } from '@material-ui/icons/BorderStyleSharp'; + declare export { + default as BorderStyleTwoTone, + } from '@material-ui/icons/BorderStyleTwoTone'; + declare export { default as BorderTop } from '@material-ui/icons/BorderTop'; + declare export { + default as BorderTopOutlined, + } from '@material-ui/icons/BorderTopOutlined'; + declare export { + default as BorderTopRounded, + } from '@material-ui/icons/BorderTopRounded'; + declare export { + default as BorderTopSharp, + } from '@material-ui/icons/BorderTopSharp'; + declare export { + default as BorderTopTwoTone, + } from '@material-ui/icons/BorderTopTwoTone'; + declare export { + default as BorderVertical, + } from '@material-ui/icons/BorderVertical'; + declare export { + default as BorderVerticalOutlined, + } from '@material-ui/icons/BorderVerticalOutlined'; + declare export { + default as BorderVerticalRounded, + } from '@material-ui/icons/BorderVerticalRounded'; + declare export { + default as BorderVerticalSharp, + } from '@material-ui/icons/BorderVerticalSharp'; + declare export { + default as BorderVerticalTwoTone, + } from '@material-ui/icons/BorderVerticalTwoTone'; + declare export { + default as BrandingWatermark, + } from '@material-ui/icons/BrandingWatermark'; + declare export { + default as BrandingWatermarkOutlined, + } from '@material-ui/icons/BrandingWatermarkOutlined'; + declare export { + default as BrandingWatermarkRounded, + } from '@material-ui/icons/BrandingWatermarkRounded'; + declare export { + default as BrandingWatermarkSharp, + } from '@material-ui/icons/BrandingWatermarkSharp'; + declare export { + default as BrandingWatermarkTwoTone, + } from '@material-ui/icons/BrandingWatermarkTwoTone'; + declare export { + default as Brightness1, + } from '@material-ui/icons/Brightness1'; + declare export { + default as Brightness1Outlined, + } from '@material-ui/icons/Brightness1Outlined'; + declare export { + default as Brightness1Rounded, + } from '@material-ui/icons/Brightness1Rounded'; + declare export { + default as Brightness1Sharp, + } from '@material-ui/icons/Brightness1Sharp'; + declare export { + default as Brightness1TwoTone, + } from '@material-ui/icons/Brightness1TwoTone'; + declare export { + default as Brightness2, + } from '@material-ui/icons/Brightness2'; + declare export { + default as Brightness2Outlined, + } from '@material-ui/icons/Brightness2Outlined'; + declare export { + default as Brightness2Rounded, + } from '@material-ui/icons/Brightness2Rounded'; + declare export { + default as Brightness2Sharp, + } from '@material-ui/icons/Brightness2Sharp'; + declare export { + default as Brightness2TwoTone, + } from '@material-ui/icons/Brightness2TwoTone'; + declare export { + default as Brightness3, + } from '@material-ui/icons/Brightness3'; + declare export { + default as Brightness3Outlined, + } from '@material-ui/icons/Brightness3Outlined'; + declare export { + default as Brightness3Rounded, + } from '@material-ui/icons/Brightness3Rounded'; + declare export { + default as Brightness3Sharp, + } from '@material-ui/icons/Brightness3Sharp'; + declare export { + default as Brightness3TwoTone, + } from '@material-ui/icons/Brightness3TwoTone'; + declare export { + default as Brightness4, + } from '@material-ui/icons/Brightness4'; + declare export { + default as Brightness4Outlined, + } from '@material-ui/icons/Brightness4Outlined'; + declare export { + default as Brightness4Rounded, + } from '@material-ui/icons/Brightness4Rounded'; + declare export { + default as Brightness4Sharp, + } from '@material-ui/icons/Brightness4Sharp'; + declare export { + default as Brightness4TwoTone, + } from '@material-ui/icons/Brightness4TwoTone'; + declare export { + default as Brightness5, + } from '@material-ui/icons/Brightness5'; + declare export { + default as Brightness5Outlined, + } from '@material-ui/icons/Brightness5Outlined'; + declare export { + default as Brightness5Rounded, + } from '@material-ui/icons/Brightness5Rounded'; + declare export { + default as Brightness5Sharp, + } from '@material-ui/icons/Brightness5Sharp'; + declare export { + default as Brightness5TwoTone, + } from '@material-ui/icons/Brightness5TwoTone'; + declare export { + default as Brightness6, + } from '@material-ui/icons/Brightness6'; + declare export { + default as Brightness6Outlined, + } from '@material-ui/icons/Brightness6Outlined'; + declare export { + default as Brightness6Rounded, + } from '@material-ui/icons/Brightness6Rounded'; + declare export { + default as Brightness6Sharp, + } from '@material-ui/icons/Brightness6Sharp'; + declare export { + default as Brightness6TwoTone, + } from '@material-ui/icons/Brightness6TwoTone'; + declare export { + default as Brightness7, + } from '@material-ui/icons/Brightness7'; + declare export { + default as Brightness7Outlined, + } from '@material-ui/icons/Brightness7Outlined'; + declare export { + default as Brightness7Rounded, + } from '@material-ui/icons/Brightness7Rounded'; + declare export { + default as Brightness7Sharp, + } from '@material-ui/icons/Brightness7Sharp'; + declare export { + default as Brightness7TwoTone, + } from '@material-ui/icons/Brightness7TwoTone'; + declare export { + default as BrightnessAuto, + } from '@material-ui/icons/BrightnessAuto'; + declare export { + default as BrightnessAutoOutlined, + } from '@material-ui/icons/BrightnessAutoOutlined'; + declare export { + default as BrightnessAutoRounded, + } from '@material-ui/icons/BrightnessAutoRounded'; + declare export { + default as BrightnessAutoSharp, + } from '@material-ui/icons/BrightnessAutoSharp'; + declare export { + default as BrightnessAutoTwoTone, + } from '@material-ui/icons/BrightnessAutoTwoTone'; + declare export { + default as BrightnessHigh, + } from '@material-ui/icons/BrightnessHigh'; + declare export { + default as BrightnessHighOutlined, + } from '@material-ui/icons/BrightnessHighOutlined'; + declare export { + default as BrightnessHighRounded, + } from '@material-ui/icons/BrightnessHighRounded'; + declare export { + default as BrightnessHighSharp, + } from '@material-ui/icons/BrightnessHighSharp'; + declare export { + default as BrightnessHighTwoTone, + } from '@material-ui/icons/BrightnessHighTwoTone'; + declare export { + default as BrightnessLow, + } from '@material-ui/icons/BrightnessLow'; + declare export { + default as BrightnessLowOutlined, + } from '@material-ui/icons/BrightnessLowOutlined'; + declare export { + default as BrightnessLowRounded, + } from '@material-ui/icons/BrightnessLowRounded'; + declare export { + default as BrightnessLowSharp, + } from '@material-ui/icons/BrightnessLowSharp'; + declare export { + default as BrightnessLowTwoTone, + } from '@material-ui/icons/BrightnessLowTwoTone'; + declare export { + default as BrightnessMedium, + } from '@material-ui/icons/BrightnessMedium'; + declare export { + default as BrightnessMediumOutlined, + } from '@material-ui/icons/BrightnessMediumOutlined'; + declare export { + default as BrightnessMediumRounded, + } from '@material-ui/icons/BrightnessMediumRounded'; + declare export { + default as BrightnessMediumSharp, + } from '@material-ui/icons/BrightnessMediumSharp'; + declare export { + default as BrightnessMediumTwoTone, + } from '@material-ui/icons/BrightnessMediumTwoTone'; + declare export { + default as BrokenImage, + } from '@material-ui/icons/BrokenImage'; + declare export { + default as BrokenImageOutlined, + } from '@material-ui/icons/BrokenImageOutlined'; + declare export { + default as BrokenImageRounded, + } from '@material-ui/icons/BrokenImageRounded'; + declare export { + default as BrokenImageSharp, + } from '@material-ui/icons/BrokenImageSharp'; + declare export { + default as BrokenImageTwoTone, + } from '@material-ui/icons/BrokenImageTwoTone'; + declare export { default as Brush } from '@material-ui/icons/Brush'; + declare export { + default as BrushOutlined, + } from '@material-ui/icons/BrushOutlined'; + declare export { + default as BrushRounded, + } from '@material-ui/icons/BrushRounded'; + declare export { default as BrushSharp } from '@material-ui/icons/BrushSharp'; + declare export { + default as BrushTwoTone, + } from '@material-ui/icons/BrushTwoTone'; + declare export { + default as BubbleChart, + } from '@material-ui/icons/BubbleChart'; + declare export { + default as BubbleChartOutlined, + } from '@material-ui/icons/BubbleChartOutlined'; + declare export { + default as BubbleChartRounded, + } from '@material-ui/icons/BubbleChartRounded'; + declare export { + default as BubbleChartSharp, + } from '@material-ui/icons/BubbleChartSharp'; + declare export { + default as BubbleChartTwoTone, + } from '@material-ui/icons/BubbleChartTwoTone'; + declare export { default as BugReport } from '@material-ui/icons/BugReport'; + declare export { + default as BugReportOutlined, + } from '@material-ui/icons/BugReportOutlined'; + declare export { + default as BugReportRounded, + } from '@material-ui/icons/BugReportRounded'; + declare export { + default as BugReportSharp, + } from '@material-ui/icons/BugReportSharp'; + declare export { + default as BugReportTwoTone, + } from '@material-ui/icons/BugReportTwoTone'; + declare export { default as Build } from '@material-ui/icons/Build'; + declare export { + default as BuildOutlined, + } from '@material-ui/icons/BuildOutlined'; + declare export { + default as BuildRounded, + } from '@material-ui/icons/BuildRounded'; + declare export { default as BuildSharp } from '@material-ui/icons/BuildSharp'; + declare export { + default as BuildTwoTone, + } from '@material-ui/icons/BuildTwoTone'; + declare export { default as BurstMode } from '@material-ui/icons/BurstMode'; + declare export { + default as BurstModeOutlined, + } from '@material-ui/icons/BurstModeOutlined'; + declare export { + default as BurstModeRounded, + } from '@material-ui/icons/BurstModeRounded'; + declare export { + default as BurstModeSharp, + } from '@material-ui/icons/BurstModeSharp'; + declare export { + default as BurstModeTwoTone, + } from '@material-ui/icons/BurstModeTwoTone'; + declare export { + default as BusinessCenter, + } from '@material-ui/icons/BusinessCenter'; + declare export { + default as BusinessCenterOutlined, + } from '@material-ui/icons/BusinessCenterOutlined'; + declare export { + default as BusinessCenterRounded, + } from '@material-ui/icons/BusinessCenterRounded'; + declare export { + default as BusinessCenterSharp, + } from '@material-ui/icons/BusinessCenterSharp'; + declare export { + default as BusinessCenterTwoTone, + } from '@material-ui/icons/BusinessCenterTwoTone'; + declare export { default as Business } from '@material-ui/icons/Business'; + declare export { + default as BusinessOutlined, + } from '@material-ui/icons/BusinessOutlined'; + declare export { + default as BusinessRounded, + } from '@material-ui/icons/BusinessRounded'; + declare export { + default as BusinessSharp, + } from '@material-ui/icons/BusinessSharp'; + declare export { + default as BusinessTwoTone, + } from '@material-ui/icons/BusinessTwoTone'; + declare export { default as Cached } from '@material-ui/icons/Cached'; + declare export { + default as CachedOutlined, + } from '@material-ui/icons/CachedOutlined'; + declare export { + default as CachedRounded, + } from '@material-ui/icons/CachedRounded'; + declare export { + default as CachedSharp, + } from '@material-ui/icons/CachedSharp'; + declare export { + default as CachedTwoTone, + } from '@material-ui/icons/CachedTwoTone'; + declare export { default as Cake } from '@material-ui/icons/Cake'; + declare export { + default as CakeOutlined, + } from '@material-ui/icons/CakeOutlined'; + declare export { + default as CakeRounded, + } from '@material-ui/icons/CakeRounded'; + declare export { default as CakeSharp } from '@material-ui/icons/CakeSharp'; + declare export { + default as CakeTwoTone, + } from '@material-ui/icons/CakeTwoTone'; + declare export { + default as CalendarToday, + } from '@material-ui/icons/CalendarToday'; + declare export { + default as CalendarTodayOutlined, + } from '@material-ui/icons/CalendarTodayOutlined'; + declare export { + default as CalendarTodayRounded, + } from '@material-ui/icons/CalendarTodayRounded'; + declare export { + default as CalendarTodaySharp, + } from '@material-ui/icons/CalendarTodaySharp'; + declare export { + default as CalendarTodayTwoTone, + } from '@material-ui/icons/CalendarTodayTwoTone'; + declare export { + default as CalendarViewDay, + } from '@material-ui/icons/CalendarViewDay'; + declare export { + default as CalendarViewDayOutlined, + } from '@material-ui/icons/CalendarViewDayOutlined'; + declare export { + default as CalendarViewDayRounded, + } from '@material-ui/icons/CalendarViewDayRounded'; + declare export { + default as CalendarViewDaySharp, + } from '@material-ui/icons/CalendarViewDaySharp'; + declare export { + default as CalendarViewDayTwoTone, + } from '@material-ui/icons/CalendarViewDayTwoTone'; + declare export { default as CallEnd } from '@material-ui/icons/CallEnd'; + declare export { + default as CallEndOutlined, + } from '@material-ui/icons/CallEndOutlined'; + declare export { + default as CallEndRounded, + } from '@material-ui/icons/CallEndRounded'; + declare export { + default as CallEndSharp, + } from '@material-ui/icons/CallEndSharp'; + declare export { + default as CallEndTwoTone, + } from '@material-ui/icons/CallEndTwoTone'; + declare export { default as Call } from '@material-ui/icons/Call'; + declare export { default as CallMade } from '@material-ui/icons/CallMade'; + declare export { + default as CallMadeOutlined, + } from '@material-ui/icons/CallMadeOutlined'; + declare export { + default as CallMadeRounded, + } from '@material-ui/icons/CallMadeRounded'; + declare export { + default as CallMadeSharp, + } from '@material-ui/icons/CallMadeSharp'; + declare export { + default as CallMadeTwoTone, + } from '@material-ui/icons/CallMadeTwoTone'; + declare export { default as CallMerge } from '@material-ui/icons/CallMerge'; + declare export { + default as CallMergeOutlined, + } from '@material-ui/icons/CallMergeOutlined'; + declare export { + default as CallMergeRounded, + } from '@material-ui/icons/CallMergeRounded'; + declare export { + default as CallMergeSharp, + } from '@material-ui/icons/CallMergeSharp'; + declare export { + default as CallMergeTwoTone, + } from '@material-ui/icons/CallMergeTwoTone'; + declare export { default as CallMissed } from '@material-ui/icons/CallMissed'; + declare export { + default as CallMissedOutgoing, + } from '@material-ui/icons/CallMissedOutgoing'; + declare export { + default as CallMissedOutgoingOutlined, + } from '@material-ui/icons/CallMissedOutgoingOutlined'; + declare export { + default as CallMissedOutgoingRounded, + } from '@material-ui/icons/CallMissedOutgoingRounded'; + declare export { + default as CallMissedOutgoingSharp, + } from '@material-ui/icons/CallMissedOutgoingSharp'; + declare export { + default as CallMissedOutgoingTwoTone, + } from '@material-ui/icons/CallMissedOutgoingTwoTone'; + declare export { + default as CallMissedOutlined, + } from '@material-ui/icons/CallMissedOutlined'; + declare export { + default as CallMissedRounded, + } from '@material-ui/icons/CallMissedRounded'; + declare export { + default as CallMissedSharp, + } from '@material-ui/icons/CallMissedSharp'; + declare export { + default as CallMissedTwoTone, + } from '@material-ui/icons/CallMissedTwoTone'; + declare export { + default as CallOutlined, + } from '@material-ui/icons/CallOutlined'; + declare export { + default as CallReceived, + } from '@material-ui/icons/CallReceived'; + declare export { + default as CallReceivedOutlined, + } from '@material-ui/icons/CallReceivedOutlined'; + declare export { + default as CallReceivedRounded, + } from '@material-ui/icons/CallReceivedRounded'; + declare export { + default as CallReceivedSharp, + } from '@material-ui/icons/CallReceivedSharp'; + declare export { + default as CallReceivedTwoTone, + } from '@material-ui/icons/CallReceivedTwoTone'; + declare export { + default as CallRounded, + } from '@material-ui/icons/CallRounded'; + declare export { default as CallSharp } from '@material-ui/icons/CallSharp'; + declare export { default as CallSplit } from '@material-ui/icons/CallSplit'; + declare export { + default as CallSplitOutlined, + } from '@material-ui/icons/CallSplitOutlined'; + declare export { + default as CallSplitRounded, + } from '@material-ui/icons/CallSplitRounded'; + declare export { + default as CallSplitSharp, + } from '@material-ui/icons/CallSplitSharp'; + declare export { + default as CallSplitTwoTone, + } from '@material-ui/icons/CallSplitTwoTone'; + declare export { + default as CallToAction, + } from '@material-ui/icons/CallToAction'; + declare export { + default as CallToActionOutlined, + } from '@material-ui/icons/CallToActionOutlined'; + declare export { + default as CallToActionRounded, + } from '@material-ui/icons/CallToActionRounded'; + declare export { + default as CallToActionSharp, + } from '@material-ui/icons/CallToActionSharp'; + declare export { + default as CallToActionTwoTone, + } from '@material-ui/icons/CallToActionTwoTone'; + declare export { + default as CallTwoTone, + } from '@material-ui/icons/CallTwoTone'; + declare export { default as CameraAlt } from '@material-ui/icons/CameraAlt'; + declare export { + default as CameraAltOutlined, + } from '@material-ui/icons/CameraAltOutlined'; + declare export { + default as CameraAltRounded, + } from '@material-ui/icons/CameraAltRounded'; + declare export { + default as CameraAltSharp, + } from '@material-ui/icons/CameraAltSharp'; + declare export { + default as CameraAltTwoTone, + } from '@material-ui/icons/CameraAltTwoTone'; + declare export { + default as CameraEnhance, + } from '@material-ui/icons/CameraEnhance'; + declare export { + default as CameraEnhanceOutlined, + } from '@material-ui/icons/CameraEnhanceOutlined'; + declare export { + default as CameraEnhanceRounded, + } from '@material-ui/icons/CameraEnhanceRounded'; + declare export { + default as CameraEnhanceSharp, + } from '@material-ui/icons/CameraEnhanceSharp'; + declare export { + default as CameraEnhanceTwoTone, + } from '@material-ui/icons/CameraEnhanceTwoTone'; + declare export { + default as CameraFront, + } from '@material-ui/icons/CameraFront'; + declare export { + default as CameraFrontOutlined, + } from '@material-ui/icons/CameraFrontOutlined'; + declare export { + default as CameraFrontRounded, + } from '@material-ui/icons/CameraFrontRounded'; + declare export { + default as CameraFrontSharp, + } from '@material-ui/icons/CameraFrontSharp'; + declare export { + default as CameraFrontTwoTone, + } from '@material-ui/icons/CameraFrontTwoTone'; + declare export { default as Camera } from '@material-ui/icons/Camera'; + declare export { + default as CameraOutlined, + } from '@material-ui/icons/CameraOutlined'; + declare export { default as CameraRear } from '@material-ui/icons/CameraRear'; + declare export { + default as CameraRearOutlined, + } from '@material-ui/icons/CameraRearOutlined'; + declare export { + default as CameraRearRounded, + } from '@material-ui/icons/CameraRearRounded'; + declare export { + default as CameraRearSharp, + } from '@material-ui/icons/CameraRearSharp'; + declare export { + default as CameraRearTwoTone, + } from '@material-ui/icons/CameraRearTwoTone'; + declare export { default as CameraRoll } from '@material-ui/icons/CameraRoll'; + declare export { + default as CameraRollOutlined, + } from '@material-ui/icons/CameraRollOutlined'; + declare export { + default as CameraRollRounded, + } from '@material-ui/icons/CameraRollRounded'; + declare export { + default as CameraRollSharp, + } from '@material-ui/icons/CameraRollSharp'; + declare export { + default as CameraRollTwoTone, + } from '@material-ui/icons/CameraRollTwoTone'; + declare export { + default as CameraRounded, + } from '@material-ui/icons/CameraRounded'; + declare export { + default as CameraSharp, + } from '@material-ui/icons/CameraSharp'; + declare export { + default as CameraTwoTone, + } from '@material-ui/icons/CameraTwoTone'; + declare export { default as Cancel } from '@material-ui/icons/Cancel'; + declare export { + default as CancelOutlined, + } from '@material-ui/icons/CancelOutlined'; + declare export { + default as CancelPresentation, + } from '@material-ui/icons/CancelPresentation'; + declare export { + default as CancelPresentationOutlined, + } from '@material-ui/icons/CancelPresentationOutlined'; + declare export { + default as CancelPresentationRounded, + } from '@material-ui/icons/CancelPresentationRounded'; + declare export { + default as CancelPresentationSharp, + } from '@material-ui/icons/CancelPresentationSharp'; + declare export { + default as CancelPresentationTwoTone, + } from '@material-ui/icons/CancelPresentationTwoTone'; + declare export { + default as CancelRounded, + } from '@material-ui/icons/CancelRounded'; + declare export { + default as CancelSharp, + } from '@material-ui/icons/CancelSharp'; + declare export { + default as CancelTwoTone, + } from '@material-ui/icons/CancelTwoTone'; + declare export { + default as CardGiftcard, + } from '@material-ui/icons/CardGiftcard'; + declare export { + default as CardGiftcardOutlined, + } from '@material-ui/icons/CardGiftcardOutlined'; + declare export { + default as CardGiftcardRounded, + } from '@material-ui/icons/CardGiftcardRounded'; + declare export { + default as CardGiftcardSharp, + } from '@material-ui/icons/CardGiftcardSharp'; + declare export { + default as CardGiftcardTwoTone, + } from '@material-ui/icons/CardGiftcardTwoTone'; + declare export { + default as CardMembership, + } from '@material-ui/icons/CardMembership'; + declare export { + default as CardMembershipOutlined, + } from '@material-ui/icons/CardMembershipOutlined'; + declare export { + default as CardMembershipRounded, + } from '@material-ui/icons/CardMembershipRounded'; + declare export { + default as CardMembershipSharp, + } from '@material-ui/icons/CardMembershipSharp'; + declare export { + default as CardMembershipTwoTone, + } from '@material-ui/icons/CardMembershipTwoTone'; + declare export { default as CardTravel } from '@material-ui/icons/CardTravel'; + declare export { + default as CardTravelOutlined, + } from '@material-ui/icons/CardTravelOutlined'; + declare export { + default as CardTravelRounded, + } from '@material-ui/icons/CardTravelRounded'; + declare export { + default as CardTravelSharp, + } from '@material-ui/icons/CardTravelSharp'; + declare export { + default as CardTravelTwoTone, + } from '@material-ui/icons/CardTravelTwoTone'; + declare export { default as Casino } from '@material-ui/icons/Casino'; + declare export { + default as CasinoOutlined, + } from '@material-ui/icons/CasinoOutlined'; + declare export { + default as CasinoRounded, + } from '@material-ui/icons/CasinoRounded'; + declare export { + default as CasinoSharp, + } from '@material-ui/icons/CasinoSharp'; + declare export { + default as CasinoTwoTone, + } from '@material-ui/icons/CasinoTwoTone'; + declare export { + default as CastConnected, + } from '@material-ui/icons/CastConnected'; + declare export { + default as CastConnectedOutlined, + } from '@material-ui/icons/CastConnectedOutlined'; + declare export { + default as CastConnectedRounded, + } from '@material-ui/icons/CastConnectedRounded'; + declare export { + default as CastConnectedSharp, + } from '@material-ui/icons/CastConnectedSharp'; + declare export { + default as CastConnectedTwoTone, + } from '@material-ui/icons/CastConnectedTwoTone'; + declare export { + default as CastForEducation, + } from '@material-ui/icons/CastForEducation'; + declare export { + default as CastForEducationOutlined, + } from '@material-ui/icons/CastForEducationOutlined'; + declare export { + default as CastForEducationRounded, + } from '@material-ui/icons/CastForEducationRounded'; + declare export { + default as CastForEducationSharp, + } from '@material-ui/icons/CastForEducationSharp'; + declare export { + default as CastForEducationTwoTone, + } from '@material-ui/icons/CastForEducationTwoTone'; + declare export { default as Cast } from '@material-ui/icons/Cast'; + declare export { + default as CastOutlined, + } from '@material-ui/icons/CastOutlined'; + declare export { + default as CastRounded, + } from '@material-ui/icons/CastRounded'; + declare export { default as CastSharp } from '@material-ui/icons/CastSharp'; + declare export { + default as CastTwoTone, + } from '@material-ui/icons/CastTwoTone'; + declare export { default as Category } from '@material-ui/icons/Category'; + declare export { + default as CategoryOutlined, + } from '@material-ui/icons/CategoryOutlined'; + declare export { + default as CategoryRounded, + } from '@material-ui/icons/CategoryRounded'; + declare export { + default as CategorySharp, + } from '@material-ui/icons/CategorySharp'; + declare export { + default as CategoryTwoTone, + } from '@material-ui/icons/CategoryTwoTone'; + declare export { default as CellWifi } from '@material-ui/icons/CellWifi'; + declare export { + default as CellWifiOutlined, + } from '@material-ui/icons/CellWifiOutlined'; + declare export { + default as CellWifiRounded, + } from '@material-ui/icons/CellWifiRounded'; + declare export { + default as CellWifiSharp, + } from '@material-ui/icons/CellWifiSharp'; + declare export { + default as CellWifiTwoTone, + } from '@material-ui/icons/CellWifiTwoTone'; + declare export { + default as CenterFocusStrong, + } from '@material-ui/icons/CenterFocusStrong'; + declare export { + default as CenterFocusStrongOutlined, + } from '@material-ui/icons/CenterFocusStrongOutlined'; + declare export { + default as CenterFocusStrongRounded, + } from '@material-ui/icons/CenterFocusStrongRounded'; + declare export { + default as CenterFocusStrongSharp, + } from '@material-ui/icons/CenterFocusStrongSharp'; + declare export { + default as CenterFocusStrongTwoTone, + } from '@material-ui/icons/CenterFocusStrongTwoTone'; + declare export { + default as CenterFocusWeak, + } from '@material-ui/icons/CenterFocusWeak'; + declare export { + default as CenterFocusWeakOutlined, + } from '@material-ui/icons/CenterFocusWeakOutlined'; + declare export { + default as CenterFocusWeakRounded, + } from '@material-ui/icons/CenterFocusWeakRounded'; + declare export { + default as CenterFocusWeakSharp, + } from '@material-ui/icons/CenterFocusWeakSharp'; + declare export { + default as CenterFocusWeakTwoTone, + } from '@material-ui/icons/CenterFocusWeakTwoTone'; + declare export { + default as ChangeHistory, + } from '@material-ui/icons/ChangeHistory'; + declare export { + default as ChangeHistoryOutlined, + } from '@material-ui/icons/ChangeHistoryOutlined'; + declare export { + default as ChangeHistoryRounded, + } from '@material-ui/icons/ChangeHistoryRounded'; + declare export { + default as ChangeHistorySharp, + } from '@material-ui/icons/ChangeHistorySharp'; + declare export { + default as ChangeHistoryTwoTone, + } from '@material-ui/icons/ChangeHistoryTwoTone'; + declare export { default as ChatBubble } from '@material-ui/icons/ChatBubble'; + declare export { + default as ChatBubbleOutlined, + } from '@material-ui/icons/ChatBubbleOutlined'; + declare export { + default as ChatBubbleOutline, + } from '@material-ui/icons/ChatBubbleOutline'; + declare export { + default as ChatBubbleOutlineOutlined, + } from '@material-ui/icons/ChatBubbleOutlineOutlined'; + declare export { + default as ChatBubbleOutlineRounded, + } from '@material-ui/icons/ChatBubbleOutlineRounded'; + declare export { + default as ChatBubbleOutlineSharp, + } from '@material-ui/icons/ChatBubbleOutlineSharp'; + declare export { + default as ChatBubbleOutlineTwoTone, + } from '@material-ui/icons/ChatBubbleOutlineTwoTone'; + declare export { + default as ChatBubbleRounded, + } from '@material-ui/icons/ChatBubbleRounded'; + declare export { + default as ChatBubbleSharp, + } from '@material-ui/icons/ChatBubbleSharp'; + declare export { + default as ChatBubbleTwoTone, + } from '@material-ui/icons/ChatBubbleTwoTone'; + declare export { default as Chat } from '@material-ui/icons/Chat'; + declare export { + default as ChatOutlined, + } from '@material-ui/icons/ChatOutlined'; + declare export { + default as ChatRounded, + } from '@material-ui/icons/ChatRounded'; + declare export { default as ChatSharp } from '@material-ui/icons/ChatSharp'; + declare export { + default as ChatTwoTone, + } from '@material-ui/icons/ChatTwoTone'; + declare export { default as CheckBox } from '@material-ui/icons/CheckBox'; + declare export { + default as CheckBoxOutlineBlank, + } from '@material-ui/icons/CheckBoxOutlineBlank'; + declare export { + default as CheckBoxOutlineBlankOutlined, + } from '@material-ui/icons/CheckBoxOutlineBlankOutlined'; + declare export { + default as CheckBoxOutlineBlankRounded, + } from '@material-ui/icons/CheckBoxOutlineBlankRounded'; + declare export { + default as CheckBoxOutlineBlankSharp, + } from '@material-ui/icons/CheckBoxOutlineBlankSharp'; + declare export { + default as CheckBoxOutlineBlankTwoTone, + } from '@material-ui/icons/CheckBoxOutlineBlankTwoTone'; + declare export { + default as CheckBoxOutlined, + } from '@material-ui/icons/CheckBoxOutlined'; + declare export { + default as CheckBoxRounded, + } from '@material-ui/icons/CheckBoxRounded'; + declare export { + default as CheckBoxSharp, + } from '@material-ui/icons/CheckBoxSharp'; + declare export { + default as CheckBoxTwoTone, + } from '@material-ui/icons/CheckBoxTwoTone'; + declare export { + default as CheckCircle, + } from '@material-ui/icons/CheckCircle'; + declare export { + default as CheckCircleOutlined, + } from '@material-ui/icons/CheckCircleOutlined'; + declare export { + default as CheckCircleOutline, + } from '@material-ui/icons/CheckCircleOutline'; + declare export { + default as CheckCircleOutlineOutlined, + } from '@material-ui/icons/CheckCircleOutlineOutlined'; + declare export { + default as CheckCircleOutlineRounded, + } from '@material-ui/icons/CheckCircleOutlineRounded'; + declare export { + default as CheckCircleOutlineSharp, + } from '@material-ui/icons/CheckCircleOutlineSharp'; + declare export { + default as CheckCircleOutlineTwoTone, + } from '@material-ui/icons/CheckCircleOutlineTwoTone'; + declare export { + default as CheckCircleRounded, + } from '@material-ui/icons/CheckCircleRounded'; + declare export { + default as CheckCircleSharp, + } from '@material-ui/icons/CheckCircleSharp'; + declare export { + default as CheckCircleTwoTone, + } from '@material-ui/icons/CheckCircleTwoTone'; + declare export { default as Check } from '@material-ui/icons/Check'; + declare export { + default as CheckOutlined, + } from '@material-ui/icons/CheckOutlined'; + declare export { + default as CheckRounded, + } from '@material-ui/icons/CheckRounded'; + declare export { default as CheckSharp } from '@material-ui/icons/CheckSharp'; + declare export { + default as CheckTwoTone, + } from '@material-ui/icons/CheckTwoTone'; + declare export { + default as ChevronLeft, + } from '@material-ui/icons/ChevronLeft'; + declare export { + default as ChevronLeftOutlined, + } from '@material-ui/icons/ChevronLeftOutlined'; + declare export { + default as ChevronLeftRounded, + } from '@material-ui/icons/ChevronLeftRounded'; + declare export { + default as ChevronLeftSharp, + } from '@material-ui/icons/ChevronLeftSharp'; + declare export { + default as ChevronLeftTwoTone, + } from '@material-ui/icons/ChevronLeftTwoTone'; + declare export { + default as ChevronRight, + } from '@material-ui/icons/ChevronRight'; + declare export { + default as ChevronRightOutlined, + } from '@material-ui/icons/ChevronRightOutlined'; + declare export { + default as ChevronRightRounded, + } from '@material-ui/icons/ChevronRightRounded'; + declare export { + default as ChevronRightSharp, + } from '@material-ui/icons/ChevronRightSharp'; + declare export { + default as ChevronRightTwoTone, + } from '@material-ui/icons/ChevronRightTwoTone'; + declare export { default as ChildCare } from '@material-ui/icons/ChildCare'; + declare export { + default as ChildCareOutlined, + } from '@material-ui/icons/ChildCareOutlined'; + declare export { + default as ChildCareRounded, + } from '@material-ui/icons/ChildCareRounded'; + declare export { + default as ChildCareSharp, + } from '@material-ui/icons/ChildCareSharp'; + declare export { + default as ChildCareTwoTone, + } from '@material-ui/icons/ChildCareTwoTone'; + declare export { + default as ChildFriendly, + } from '@material-ui/icons/ChildFriendly'; + declare export { + default as ChildFriendlyOutlined, + } from '@material-ui/icons/ChildFriendlyOutlined'; + declare export { + default as ChildFriendlyRounded, + } from '@material-ui/icons/ChildFriendlyRounded'; + declare export { + default as ChildFriendlySharp, + } from '@material-ui/icons/ChildFriendlySharp'; + declare export { + default as ChildFriendlyTwoTone, + } from '@material-ui/icons/ChildFriendlyTwoTone'; + declare export { + default as ChromeReaderMode, + } from '@material-ui/icons/ChromeReaderMode'; + declare export { + default as ChromeReaderModeOutlined, + } from '@material-ui/icons/ChromeReaderModeOutlined'; + declare export { + default as ChromeReaderModeRounded, + } from '@material-ui/icons/ChromeReaderModeRounded'; + declare export { + default as ChromeReaderModeSharp, + } from '@material-ui/icons/ChromeReaderModeSharp'; + declare export { + default as ChromeReaderModeTwoTone, + } from '@material-ui/icons/ChromeReaderModeTwoTone'; + declare export { default as Class } from '@material-ui/icons/Class'; + declare export { + default as ClassOutlined, + } from '@material-ui/icons/ClassOutlined'; + declare export { + default as ClassRounded, + } from '@material-ui/icons/ClassRounded'; + declare export { default as ClassSharp } from '@material-ui/icons/ClassSharp'; + declare export { + default as ClassTwoTone, + } from '@material-ui/icons/ClassTwoTone'; + declare export { default as ClearAll } from '@material-ui/icons/ClearAll'; + declare export { + default as ClearAllOutlined, + } from '@material-ui/icons/ClearAllOutlined'; + declare export { + default as ClearAllRounded, + } from '@material-ui/icons/ClearAllRounded'; + declare export { + default as ClearAllSharp, + } from '@material-ui/icons/ClearAllSharp'; + declare export { + default as ClearAllTwoTone, + } from '@material-ui/icons/ClearAllTwoTone'; + declare export { default as Clear } from '@material-ui/icons/Clear'; + declare export { + default as ClearOutlined, + } from '@material-ui/icons/ClearOutlined'; + declare export { + default as ClearRounded, + } from '@material-ui/icons/ClearRounded'; + declare export { default as ClearSharp } from '@material-ui/icons/ClearSharp'; + declare export { + default as ClearTwoTone, + } from '@material-ui/icons/ClearTwoTone'; + declare export { + default as ClosedCaption, + } from '@material-ui/icons/ClosedCaption'; + declare export { + default as ClosedCaptionOutlined, + } from '@material-ui/icons/ClosedCaptionOutlined'; + declare export { + default as ClosedCaptionRounded, + } from '@material-ui/icons/ClosedCaptionRounded'; + declare export { + default as ClosedCaptionSharp, + } from '@material-ui/icons/ClosedCaptionSharp'; + declare export { + default as ClosedCaptionTwoTone, + } from '@material-ui/icons/ClosedCaptionTwoTone'; + declare export { default as Close } from '@material-ui/icons/Close'; + declare export { + default as CloseOutlined, + } from '@material-ui/icons/CloseOutlined'; + declare export { + default as CloseRounded, + } from '@material-ui/icons/CloseRounded'; + declare export { default as CloseSharp } from '@material-ui/icons/CloseSharp'; + declare export { + default as CloseTwoTone, + } from '@material-ui/icons/CloseTwoTone'; + declare export { + default as CloudCircle, + } from '@material-ui/icons/CloudCircle'; + declare export { + default as CloudCircleOutlined, + } from '@material-ui/icons/CloudCircleOutlined'; + declare export { + default as CloudCircleRounded, + } from '@material-ui/icons/CloudCircleRounded'; + declare export { + default as CloudCircleSharp, + } from '@material-ui/icons/CloudCircleSharp'; + declare export { + default as CloudCircleTwoTone, + } from '@material-ui/icons/CloudCircleTwoTone'; + declare export { default as CloudDone } from '@material-ui/icons/CloudDone'; + declare export { + default as CloudDoneOutlined, + } from '@material-ui/icons/CloudDoneOutlined'; + declare export { + default as CloudDoneRounded, + } from '@material-ui/icons/CloudDoneRounded'; + declare export { + default as CloudDoneSharp, + } from '@material-ui/icons/CloudDoneSharp'; + declare export { + default as CloudDoneTwoTone, + } from '@material-ui/icons/CloudDoneTwoTone'; + declare export { + default as CloudDownload, + } from '@material-ui/icons/CloudDownload'; + declare export { + default as CloudDownloadOutlined, + } from '@material-ui/icons/CloudDownloadOutlined'; + declare export { + default as CloudDownloadRounded, + } from '@material-ui/icons/CloudDownloadRounded'; + declare export { + default as CloudDownloadSharp, + } from '@material-ui/icons/CloudDownloadSharp'; + declare export { + default as CloudDownloadTwoTone, + } from '@material-ui/icons/CloudDownloadTwoTone'; + declare export { default as Cloud } from '@material-ui/icons/Cloud'; + declare export { default as CloudOff } from '@material-ui/icons/CloudOff'; + declare export { + default as CloudOffOutlined, + } from '@material-ui/icons/CloudOffOutlined'; + declare export { + default as CloudOffRounded, + } from '@material-ui/icons/CloudOffRounded'; + declare export { + default as CloudOffSharp, + } from '@material-ui/icons/CloudOffSharp'; + declare export { + default as CloudOffTwoTone, + } from '@material-ui/icons/CloudOffTwoTone'; + declare export { + default as CloudOutlined, + } from '@material-ui/icons/CloudOutlined'; + declare export { default as CloudQueue } from '@material-ui/icons/CloudQueue'; + declare export { + default as CloudQueueOutlined, + } from '@material-ui/icons/CloudQueueOutlined'; + declare export { + default as CloudQueueRounded, + } from '@material-ui/icons/CloudQueueRounded'; + declare export { + default as CloudQueueSharp, + } from '@material-ui/icons/CloudQueueSharp'; + declare export { + default as CloudQueueTwoTone, + } from '@material-ui/icons/CloudQueueTwoTone'; + declare export { + default as CloudRounded, + } from '@material-ui/icons/CloudRounded'; + declare export { default as CloudSharp } from '@material-ui/icons/CloudSharp'; + declare export { + default as CloudTwoTone, + } from '@material-ui/icons/CloudTwoTone'; + declare export { + default as CloudUpload, + } from '@material-ui/icons/CloudUpload'; + declare export { + default as CloudUploadOutlined, + } from '@material-ui/icons/CloudUploadOutlined'; + declare export { + default as CloudUploadRounded, + } from '@material-ui/icons/CloudUploadRounded'; + declare export { + default as CloudUploadSharp, + } from '@material-ui/icons/CloudUploadSharp'; + declare export { + default as CloudUploadTwoTone, + } from '@material-ui/icons/CloudUploadTwoTone'; + declare export { default as Code } from '@material-ui/icons/Code'; + declare export { + default as CodeOutlined, + } from '@material-ui/icons/CodeOutlined'; + declare export { + default as CodeRounded, + } from '@material-ui/icons/CodeRounded'; + declare export { default as CodeSharp } from '@material-ui/icons/CodeSharp'; + declare export { + default as CodeTwoTone, + } from '@material-ui/icons/CodeTwoTone'; + declare export { + default as CollectionsBookmark, + } from '@material-ui/icons/CollectionsBookmark'; + declare export { + default as CollectionsBookmarkOutlined, + } from '@material-ui/icons/CollectionsBookmarkOutlined'; + declare export { + default as CollectionsBookmarkRounded, + } from '@material-ui/icons/CollectionsBookmarkRounded'; + declare export { + default as CollectionsBookmarkSharp, + } from '@material-ui/icons/CollectionsBookmarkSharp'; + declare export { + default as CollectionsBookmarkTwoTone, + } from '@material-ui/icons/CollectionsBookmarkTwoTone'; + declare export { + default as Collections, + } from '@material-ui/icons/Collections'; + declare export { + default as CollectionsOutlined, + } from '@material-ui/icons/CollectionsOutlined'; + declare export { + default as CollectionsRounded, + } from '@material-ui/icons/CollectionsRounded'; + declare export { + default as CollectionsSharp, + } from '@material-ui/icons/CollectionsSharp'; + declare export { + default as CollectionsTwoTone, + } from '@material-ui/icons/CollectionsTwoTone'; + declare export { default as Colorize } from '@material-ui/icons/Colorize'; + declare export { + default as ColorizeOutlined, + } from '@material-ui/icons/ColorizeOutlined'; + declare export { + default as ColorizeRounded, + } from '@material-ui/icons/ColorizeRounded'; + declare export { + default as ColorizeSharp, + } from '@material-ui/icons/ColorizeSharp'; + declare export { + default as ColorizeTwoTone, + } from '@material-ui/icons/ColorizeTwoTone'; + declare export { default as ColorLens } from '@material-ui/icons/ColorLens'; + declare export { + default as ColorLensOutlined, + } from '@material-ui/icons/ColorLensOutlined'; + declare export { + default as ColorLensRounded, + } from '@material-ui/icons/ColorLensRounded'; + declare export { + default as ColorLensSharp, + } from '@material-ui/icons/ColorLensSharp'; + declare export { + default as ColorLensTwoTone, + } from '@material-ui/icons/ColorLensTwoTone'; + declare export { default as Comment } from '@material-ui/icons/Comment'; + declare export { + default as CommentOutlined, + } from '@material-ui/icons/CommentOutlined'; + declare export { + default as CommentRounded, + } from '@material-ui/icons/CommentRounded'; + declare export { + default as CommentSharp, + } from '@material-ui/icons/CommentSharp'; + declare export { + default as CommentTwoTone, + } from '@material-ui/icons/CommentTwoTone'; + declare export { default as Commute } from '@material-ui/icons/Commute'; + declare export { + default as CommuteOutlined, + } from '@material-ui/icons/CommuteOutlined'; + declare export { + default as CommuteRounded, + } from '@material-ui/icons/CommuteRounded'; + declare export { + default as CommuteSharp, + } from '@material-ui/icons/CommuteSharp'; + declare export { + default as CommuteTwoTone, + } from '@material-ui/icons/CommuteTwoTone'; + declare export { + default as CompareArrows, + } from '@material-ui/icons/CompareArrows'; + declare export { + default as CompareArrowsOutlined, + } from '@material-ui/icons/CompareArrowsOutlined'; + declare export { + default as CompareArrowsRounded, + } from '@material-ui/icons/CompareArrowsRounded'; + declare export { + default as CompareArrowsSharp, + } from '@material-ui/icons/CompareArrowsSharp'; + declare export { + default as CompareArrowsTwoTone, + } from '@material-ui/icons/CompareArrowsTwoTone'; + declare export { default as Compare } from '@material-ui/icons/Compare'; + declare export { + default as CompareOutlined, + } from '@material-ui/icons/CompareOutlined'; + declare export { + default as CompareRounded, + } from '@material-ui/icons/CompareRounded'; + declare export { + default as CompareSharp, + } from '@material-ui/icons/CompareSharp'; + declare export { + default as CompareTwoTone, + } from '@material-ui/icons/CompareTwoTone'; + declare export { + default as CompassCalibration, + } from '@material-ui/icons/CompassCalibration'; + declare export { + default as CompassCalibrationOutlined, + } from '@material-ui/icons/CompassCalibrationOutlined'; + declare export { + default as CompassCalibrationRounded, + } from '@material-ui/icons/CompassCalibrationRounded'; + declare export { + default as CompassCalibrationSharp, + } from '@material-ui/icons/CompassCalibrationSharp'; + declare export { + default as CompassCalibrationTwoTone, + } from '@material-ui/icons/CompassCalibrationTwoTone'; + declare export { default as Computer } from '@material-ui/icons/Computer'; + declare export { + default as ComputerOutlined, + } from '@material-ui/icons/ComputerOutlined'; + declare export { + default as ComputerRounded, + } from '@material-ui/icons/ComputerRounded'; + declare export { + default as ComputerSharp, + } from '@material-ui/icons/ComputerSharp'; + declare export { + default as ComputerTwoTone, + } from '@material-ui/icons/ComputerTwoTone'; + declare export { + default as ConfirmationNumber, + } from '@material-ui/icons/ConfirmationNumber'; + declare export { + default as ConfirmationNumberOutlined, + } from '@material-ui/icons/ConfirmationNumberOutlined'; + declare export { + default as ConfirmationNumberRounded, + } from '@material-ui/icons/ConfirmationNumberRounded'; + declare export { + default as ConfirmationNumberSharp, + } from '@material-ui/icons/ConfirmationNumberSharp'; + declare export { + default as ConfirmationNumberTwoTone, + } from '@material-ui/icons/ConfirmationNumberTwoTone'; + declare export { + default as ContactMail, + } from '@material-ui/icons/ContactMail'; + declare export { + default as ContactMailOutlined, + } from '@material-ui/icons/ContactMailOutlined'; + declare export { + default as ContactMailRounded, + } from '@material-ui/icons/ContactMailRounded'; + declare export { + default as ContactMailSharp, + } from '@material-ui/icons/ContactMailSharp'; + declare export { + default as ContactMailTwoTone, + } from '@material-ui/icons/ContactMailTwoTone'; + declare export { + default as ContactPhone, + } from '@material-ui/icons/ContactPhone'; + declare export { + default as ContactPhoneOutlined, + } from '@material-ui/icons/ContactPhoneOutlined'; + declare export { + default as ContactPhoneRounded, + } from '@material-ui/icons/ContactPhoneRounded'; + declare export { + default as ContactPhoneSharp, + } from '@material-ui/icons/ContactPhoneSharp'; + declare export { + default as ContactPhoneTwoTone, + } from '@material-ui/icons/ContactPhoneTwoTone'; + declare export { default as Contacts } from '@material-ui/icons/Contacts'; + declare export { + default as ContactsOutlined, + } from '@material-ui/icons/ContactsOutlined'; + declare export { + default as ContactsRounded, + } from '@material-ui/icons/ContactsRounded'; + declare export { + default as ContactsSharp, + } from '@material-ui/icons/ContactsSharp'; + declare export { + default as ContactsTwoTone, + } from '@material-ui/icons/ContactsTwoTone'; + declare export { + default as ContactSupport, + } from '@material-ui/icons/ContactSupport'; + declare export { + default as ContactSupportOutlined, + } from '@material-ui/icons/ContactSupportOutlined'; + declare export { + default as ContactSupportRounded, + } from '@material-ui/icons/ContactSupportRounded'; + declare export { + default as ContactSupportSharp, + } from '@material-ui/icons/ContactSupportSharp'; + declare export { + default as ContactSupportTwoTone, + } from '@material-ui/icons/ContactSupportTwoTone'; + declare export { + default as ControlCamera, + } from '@material-ui/icons/ControlCamera'; + declare export { + default as ControlCameraOutlined, + } from '@material-ui/icons/ControlCameraOutlined'; + declare export { + default as ControlCameraRounded, + } from '@material-ui/icons/ControlCameraRounded'; + declare export { + default as ControlCameraSharp, + } from '@material-ui/icons/ControlCameraSharp'; + declare export { + default as ControlCameraTwoTone, + } from '@material-ui/icons/ControlCameraTwoTone'; + declare export { + default as ControlPointDuplicate, + } from '@material-ui/icons/ControlPointDuplicate'; + declare export { + default as ControlPointDuplicateOutlined, + } from '@material-ui/icons/ControlPointDuplicateOutlined'; + declare export { + default as ControlPointDuplicateRounded, + } from '@material-ui/icons/ControlPointDuplicateRounded'; + declare export { + default as ControlPointDuplicateSharp, + } from '@material-ui/icons/ControlPointDuplicateSharp'; + declare export { + default as ControlPointDuplicateTwoTone, + } from '@material-ui/icons/ControlPointDuplicateTwoTone'; + declare export { + default as ControlPoint, + } from '@material-ui/icons/ControlPoint'; + declare export { + default as ControlPointOutlined, + } from '@material-ui/icons/ControlPointOutlined'; + declare export { + default as ControlPointRounded, + } from '@material-ui/icons/ControlPointRounded'; + declare export { + default as ControlPointSharp, + } from '@material-ui/icons/ControlPointSharp'; + declare export { + default as ControlPointTwoTone, + } from '@material-ui/icons/ControlPointTwoTone'; + declare export { default as Copyright } from '@material-ui/icons/Copyright'; + declare export { + default as CopyrightOutlined, + } from '@material-ui/icons/CopyrightOutlined'; + declare export { + default as CopyrightRounded, + } from '@material-ui/icons/CopyrightRounded'; + declare export { + default as CopyrightSharp, + } from '@material-ui/icons/CopyrightSharp'; + declare export { + default as CopyrightTwoTone, + } from '@material-ui/icons/CopyrightTwoTone'; + declare export { default as Create } from '@material-ui/icons/Create'; + declare export { + default as CreateNewFolder, + } from '@material-ui/icons/CreateNewFolder'; + declare export { + default as CreateNewFolderOutlined, + } from '@material-ui/icons/CreateNewFolderOutlined'; + declare export { + default as CreateNewFolderRounded, + } from '@material-ui/icons/CreateNewFolderRounded'; + declare export { + default as CreateNewFolderSharp, + } from '@material-ui/icons/CreateNewFolderSharp'; + declare export { + default as CreateNewFolderTwoTone, + } from '@material-ui/icons/CreateNewFolderTwoTone'; + declare export { + default as CreateOutlined, + } from '@material-ui/icons/CreateOutlined'; + declare export { + default as CreateRounded, + } from '@material-ui/icons/CreateRounded'; + declare export { + default as CreateSharp, + } from '@material-ui/icons/CreateSharp'; + declare export { + default as CreateTwoTone, + } from '@material-ui/icons/CreateTwoTone'; + declare export { default as CreditCard } from '@material-ui/icons/CreditCard'; + declare export { + default as CreditCardOutlined, + } from '@material-ui/icons/CreditCardOutlined'; + declare export { + default as CreditCardRounded, + } from '@material-ui/icons/CreditCardRounded'; + declare export { + default as CreditCardSharp, + } from '@material-ui/icons/CreditCardSharp'; + declare export { + default as CreditCardTwoTone, + } from '@material-ui/icons/CreditCardTwoTone'; + declare export { default as Crop169 } from '@material-ui/icons/Crop169'; + declare export { + default as Crop169Outlined, + } from '@material-ui/icons/Crop169Outlined'; + declare export { + default as Crop169Rounded, + } from '@material-ui/icons/Crop169Rounded'; + declare export { + default as Crop169Sharp, + } from '@material-ui/icons/Crop169Sharp'; + declare export { + default as Crop169TwoTone, + } from '@material-ui/icons/Crop169TwoTone'; + declare export { default as Crop32 } from '@material-ui/icons/Crop32'; + declare export { + default as Crop32Outlined, + } from '@material-ui/icons/Crop32Outlined'; + declare export { + default as Crop32Rounded, + } from '@material-ui/icons/Crop32Rounded'; + declare export { + default as Crop32Sharp, + } from '@material-ui/icons/Crop32Sharp'; + declare export { + default as Crop32TwoTone, + } from '@material-ui/icons/Crop32TwoTone'; + declare export { default as Crop54 } from '@material-ui/icons/Crop54'; + declare export { + default as Crop54Outlined, + } from '@material-ui/icons/Crop54Outlined'; + declare export { + default as Crop54Rounded, + } from '@material-ui/icons/Crop54Rounded'; + declare export { + default as Crop54Sharp, + } from '@material-ui/icons/Crop54Sharp'; + declare export { + default as Crop54TwoTone, + } from '@material-ui/icons/Crop54TwoTone'; + declare export { default as Crop75 } from '@material-ui/icons/Crop75'; + declare export { + default as Crop75Outlined, + } from '@material-ui/icons/Crop75Outlined'; + declare export { + default as Crop75Rounded, + } from '@material-ui/icons/Crop75Rounded'; + declare export { + default as Crop75Sharp, + } from '@material-ui/icons/Crop75Sharp'; + declare export { + default as Crop75TwoTone, + } from '@material-ui/icons/Crop75TwoTone'; + declare export { default as CropDin } from '@material-ui/icons/CropDin'; + declare export { + default as CropDinOutlined, + } from '@material-ui/icons/CropDinOutlined'; + declare export { + default as CropDinRounded, + } from '@material-ui/icons/CropDinRounded'; + declare export { + default as CropDinSharp, + } from '@material-ui/icons/CropDinSharp'; + declare export { + default as CropDinTwoTone, + } from '@material-ui/icons/CropDinTwoTone'; + declare export { default as CropFree } from '@material-ui/icons/CropFree'; + declare export { + default as CropFreeOutlined, + } from '@material-ui/icons/CropFreeOutlined'; + declare export { + default as CropFreeRounded, + } from '@material-ui/icons/CropFreeRounded'; + declare export { + default as CropFreeSharp, + } from '@material-ui/icons/CropFreeSharp'; + declare export { + default as CropFreeTwoTone, + } from '@material-ui/icons/CropFreeTwoTone'; + declare export { default as Crop } from '@material-ui/icons/Crop'; + declare export { + default as CropLandscape, + } from '@material-ui/icons/CropLandscape'; + declare export { + default as CropLandscapeOutlined, + } from '@material-ui/icons/CropLandscapeOutlined'; + declare export { + default as CropLandscapeRounded, + } from '@material-ui/icons/CropLandscapeRounded'; + declare export { + default as CropLandscapeSharp, + } from '@material-ui/icons/CropLandscapeSharp'; + declare export { + default as CropLandscapeTwoTone, + } from '@material-ui/icons/CropLandscapeTwoTone'; + declare export { + default as CropOriginal, + } from '@material-ui/icons/CropOriginal'; + declare export { + default as CropOriginalOutlined, + } from '@material-ui/icons/CropOriginalOutlined'; + declare export { + default as CropOriginalRounded, + } from '@material-ui/icons/CropOriginalRounded'; + declare export { + default as CropOriginalSharp, + } from '@material-ui/icons/CropOriginalSharp'; + declare export { + default as CropOriginalTwoTone, + } from '@material-ui/icons/CropOriginalTwoTone'; + declare export { + default as CropOutlined, + } from '@material-ui/icons/CropOutlined'; + declare export { + default as CropPortrait, + } from '@material-ui/icons/CropPortrait'; + declare export { + default as CropPortraitOutlined, + } from '@material-ui/icons/CropPortraitOutlined'; + declare export { + default as CropPortraitRounded, + } from '@material-ui/icons/CropPortraitRounded'; + declare export { + default as CropPortraitSharp, + } from '@material-ui/icons/CropPortraitSharp'; + declare export { + default as CropPortraitTwoTone, + } from '@material-ui/icons/CropPortraitTwoTone'; + declare export { default as CropRotate } from '@material-ui/icons/CropRotate'; + declare export { + default as CropRotateOutlined, + } from '@material-ui/icons/CropRotateOutlined'; + declare export { + default as CropRotateRounded, + } from '@material-ui/icons/CropRotateRounded'; + declare export { + default as CropRotateSharp, + } from '@material-ui/icons/CropRotateSharp'; + declare export { + default as CropRotateTwoTone, + } from '@material-ui/icons/CropRotateTwoTone'; + declare export { + default as CropRounded, + } from '@material-ui/icons/CropRounded'; + declare export { default as CropSharp } from '@material-ui/icons/CropSharp'; + declare export { default as CropSquare } from '@material-ui/icons/CropSquare'; + declare export { + default as CropSquareOutlined, + } from '@material-ui/icons/CropSquareOutlined'; + declare export { + default as CropSquareRounded, + } from '@material-ui/icons/CropSquareRounded'; + declare export { + default as CropSquareSharp, + } from '@material-ui/icons/CropSquareSharp'; + declare export { + default as CropSquareTwoTone, + } from '@material-ui/icons/CropSquareTwoTone'; + declare export { + default as CropTwoTone, + } from '@material-ui/icons/CropTwoTone'; + declare export { default as Dashboard } from '@material-ui/icons/Dashboard'; + declare export { + default as DashboardOutlined, + } from '@material-ui/icons/DashboardOutlined'; + declare export { + default as DashboardRounded, + } from '@material-ui/icons/DashboardRounded'; + declare export { + default as DashboardSharp, + } from '@material-ui/icons/DashboardSharp'; + declare export { + default as DashboardTwoTone, + } from '@material-ui/icons/DashboardTwoTone'; + declare export { default as DataUsage } from '@material-ui/icons/DataUsage'; + declare export { + default as DataUsageOutlined, + } from '@material-ui/icons/DataUsageOutlined'; + declare export { + default as DataUsageRounded, + } from '@material-ui/icons/DataUsageRounded'; + declare export { + default as DataUsageSharp, + } from '@material-ui/icons/DataUsageSharp'; + declare export { + default as DataUsageTwoTone, + } from '@material-ui/icons/DataUsageTwoTone'; + declare export { default as DateRange } from '@material-ui/icons/DateRange'; + declare export { + default as DateRangeOutlined, + } from '@material-ui/icons/DateRangeOutlined'; + declare export { + default as DateRangeRounded, + } from '@material-ui/icons/DateRangeRounded'; + declare export { + default as DateRangeSharp, + } from '@material-ui/icons/DateRangeSharp'; + declare export { + default as DateRangeTwoTone, + } from '@material-ui/icons/DateRangeTwoTone'; + declare export { default as Dehaze } from '@material-ui/icons/Dehaze'; + declare export { + default as DehazeOutlined, + } from '@material-ui/icons/DehazeOutlined'; + declare export { + default as DehazeRounded, + } from '@material-ui/icons/DehazeRounded'; + declare export { + default as DehazeSharp, + } from '@material-ui/icons/DehazeSharp'; + declare export { + default as DehazeTwoTone, + } from '@material-ui/icons/DehazeTwoTone'; + declare export { + default as DeleteForever, + } from '@material-ui/icons/DeleteForever'; + declare export { + default as DeleteForeverOutlined, + } from '@material-ui/icons/DeleteForeverOutlined'; + declare export { + default as DeleteForeverRounded, + } from '@material-ui/icons/DeleteForeverRounded'; + declare export { + default as DeleteForeverSharp, + } from '@material-ui/icons/DeleteForeverSharp'; + declare export { + default as DeleteForeverTwoTone, + } from '@material-ui/icons/DeleteForeverTwoTone'; + declare export { default as Delete } from '@material-ui/icons/Delete'; + declare export { + default as DeleteOutlined, + } from '@material-ui/icons/DeleteOutlined'; + declare export { + default as DeleteOutline, + } from '@material-ui/icons/DeleteOutline'; + declare export { + default as DeleteOutlineOutlined, + } from '@material-ui/icons/DeleteOutlineOutlined'; + declare export { + default as DeleteOutlineRounded, + } from '@material-ui/icons/DeleteOutlineRounded'; + declare export { + default as DeleteOutlineSharp, + } from '@material-ui/icons/DeleteOutlineSharp'; + declare export { + default as DeleteOutlineTwoTone, + } from '@material-ui/icons/DeleteOutlineTwoTone'; + declare export { + default as DeleteRounded, + } from '@material-ui/icons/DeleteRounded'; + declare export { + default as DeleteSharp, + } from '@material-ui/icons/DeleteSharp'; + declare export { + default as DeleteSweep, + } from '@material-ui/icons/DeleteSweep'; + declare export { + default as DeleteSweepOutlined, + } from '@material-ui/icons/DeleteSweepOutlined'; + declare export { + default as DeleteSweepRounded, + } from '@material-ui/icons/DeleteSweepRounded'; + declare export { + default as DeleteSweepSharp, + } from '@material-ui/icons/DeleteSweepSharp'; + declare export { + default as DeleteSweepTwoTone, + } from '@material-ui/icons/DeleteSweepTwoTone'; + declare export { + default as DeleteTwoTone, + } from '@material-ui/icons/DeleteTwoTone'; + declare export { + default as DepartureBoard, + } from '@material-ui/icons/DepartureBoard'; + declare export { + default as DepartureBoardOutlined, + } from '@material-ui/icons/DepartureBoardOutlined'; + declare export { + default as DepartureBoardRounded, + } from '@material-ui/icons/DepartureBoardRounded'; + declare export { + default as DepartureBoardSharp, + } from '@material-ui/icons/DepartureBoardSharp'; + declare export { + default as DepartureBoardTwoTone, + } from '@material-ui/icons/DepartureBoardTwoTone'; + declare export { + default as Description, + } from '@material-ui/icons/Description'; + declare export { + default as DescriptionOutlined, + } from '@material-ui/icons/DescriptionOutlined'; + declare export { + default as DescriptionRounded, + } from '@material-ui/icons/DescriptionRounded'; + declare export { + default as DescriptionSharp, + } from '@material-ui/icons/DescriptionSharp'; + declare export { + default as DescriptionTwoTone, + } from '@material-ui/icons/DescriptionTwoTone'; + declare export { + default as DesktopAccessDisabled, + } from '@material-ui/icons/DesktopAccessDisabled'; + declare export { + default as DesktopAccessDisabledOutlined, + } from '@material-ui/icons/DesktopAccessDisabledOutlined'; + declare export { + default as DesktopAccessDisabledRounded, + } from '@material-ui/icons/DesktopAccessDisabledRounded'; + declare export { + default as DesktopAccessDisabledSharp, + } from '@material-ui/icons/DesktopAccessDisabledSharp'; + declare export { + default as DesktopAccessDisabledTwoTone, + } from '@material-ui/icons/DesktopAccessDisabledTwoTone'; + declare export { default as DesktopMac } from '@material-ui/icons/DesktopMac'; + declare export { + default as DesktopMacOutlined, + } from '@material-ui/icons/DesktopMacOutlined'; + declare export { + default as DesktopMacRounded, + } from '@material-ui/icons/DesktopMacRounded'; + declare export { + default as DesktopMacSharp, + } from '@material-ui/icons/DesktopMacSharp'; + declare export { + default as DesktopMacTwoTone, + } from '@material-ui/icons/DesktopMacTwoTone'; + declare export { + default as DesktopWindows, + } from '@material-ui/icons/DesktopWindows'; + declare export { + default as DesktopWindowsOutlined, + } from '@material-ui/icons/DesktopWindowsOutlined'; + declare export { + default as DesktopWindowsRounded, + } from '@material-ui/icons/DesktopWindowsRounded'; + declare export { + default as DesktopWindowsSharp, + } from '@material-ui/icons/DesktopWindowsSharp'; + declare export { + default as DesktopWindowsTwoTone, + } from '@material-ui/icons/DesktopWindowsTwoTone'; + declare export { default as Details } from '@material-ui/icons/Details'; + declare export { + default as DetailsOutlined, + } from '@material-ui/icons/DetailsOutlined'; + declare export { + default as DetailsRounded, + } from '@material-ui/icons/DetailsRounded'; + declare export { + default as DetailsSharp, + } from '@material-ui/icons/DetailsSharp'; + declare export { + default as DetailsTwoTone, + } from '@material-ui/icons/DetailsTwoTone'; + declare export { + default as DeveloperBoard, + } from '@material-ui/icons/DeveloperBoard'; + declare export { + default as DeveloperBoardOutlined, + } from '@material-ui/icons/DeveloperBoardOutlined'; + declare export { + default as DeveloperBoardRounded, + } from '@material-ui/icons/DeveloperBoardRounded'; + declare export { + default as DeveloperBoardSharp, + } from '@material-ui/icons/DeveloperBoardSharp'; + declare export { + default as DeveloperBoardTwoTone, + } from '@material-ui/icons/DeveloperBoardTwoTone'; + declare export { + default as DeveloperMode, + } from '@material-ui/icons/DeveloperMode'; + declare export { + default as DeveloperModeOutlined, + } from '@material-ui/icons/DeveloperModeOutlined'; + declare export { + default as DeveloperModeRounded, + } from '@material-ui/icons/DeveloperModeRounded'; + declare export { + default as DeveloperModeSharp, + } from '@material-ui/icons/DeveloperModeSharp'; + declare export { + default as DeveloperModeTwoTone, + } from '@material-ui/icons/DeveloperModeTwoTone'; + declare export { default as DeviceHub } from '@material-ui/icons/DeviceHub'; + declare export { + default as DeviceHubOutlined, + } from '@material-ui/icons/DeviceHubOutlined'; + declare export { + default as DeviceHubRounded, + } from '@material-ui/icons/DeviceHubRounded'; + declare export { + default as DeviceHubSharp, + } from '@material-ui/icons/DeviceHubSharp'; + declare export { + default as DeviceHubTwoTone, + } from '@material-ui/icons/DeviceHubTwoTone'; + declare export { default as Devices } from '@material-ui/icons/Devices'; + declare export { + default as DevicesOther, + } from '@material-ui/icons/DevicesOther'; + declare export { + default as DevicesOtherOutlined, + } from '@material-ui/icons/DevicesOtherOutlined'; + declare export { + default as DevicesOtherRounded, + } from '@material-ui/icons/DevicesOtherRounded'; + declare export { + default as DevicesOtherSharp, + } from '@material-ui/icons/DevicesOtherSharp'; + declare export { + default as DevicesOtherTwoTone, + } from '@material-ui/icons/DevicesOtherTwoTone'; + declare export { + default as DevicesOutlined, + } from '@material-ui/icons/DevicesOutlined'; + declare export { + default as DevicesRounded, + } from '@material-ui/icons/DevicesRounded'; + declare export { + default as DevicesSharp, + } from '@material-ui/icons/DevicesSharp'; + declare export { + default as DevicesTwoTone, + } from '@material-ui/icons/DevicesTwoTone'; + declare export { + default as DeviceUnknown, + } from '@material-ui/icons/DeviceUnknown'; + declare export { + default as DeviceUnknownOutlined, + } from '@material-ui/icons/DeviceUnknownOutlined'; + declare export { + default as DeviceUnknownRounded, + } from '@material-ui/icons/DeviceUnknownRounded'; + declare export { + default as DeviceUnknownSharp, + } from '@material-ui/icons/DeviceUnknownSharp'; + declare export { + default as DeviceUnknownTwoTone, + } from '@material-ui/icons/DeviceUnknownTwoTone'; + declare export { default as DialerSip } from '@material-ui/icons/DialerSip'; + declare export { + default as DialerSipOutlined, + } from '@material-ui/icons/DialerSipOutlined'; + declare export { + default as DialerSipRounded, + } from '@material-ui/icons/DialerSipRounded'; + declare export { + default as DialerSipSharp, + } from '@material-ui/icons/DialerSipSharp'; + declare export { + default as DialerSipTwoTone, + } from '@material-ui/icons/DialerSipTwoTone'; + declare export { default as Dialpad } from '@material-ui/icons/Dialpad'; + declare export { + default as DialpadOutlined, + } from '@material-ui/icons/DialpadOutlined'; + declare export { + default as DialpadRounded, + } from '@material-ui/icons/DialpadRounded'; + declare export { + default as DialpadSharp, + } from '@material-ui/icons/DialpadSharp'; + declare export { + default as DialpadTwoTone, + } from '@material-ui/icons/DialpadTwoTone'; + declare export { + default as DirectionsBike, + } from '@material-ui/icons/DirectionsBike'; + declare export { + default as DirectionsBikeOutlined, + } from '@material-ui/icons/DirectionsBikeOutlined'; + declare export { + default as DirectionsBikeRounded, + } from '@material-ui/icons/DirectionsBikeRounded'; + declare export { + default as DirectionsBikeSharp, + } from '@material-ui/icons/DirectionsBikeSharp'; + declare export { + default as DirectionsBikeTwoTone, + } from '@material-ui/icons/DirectionsBikeTwoTone'; + declare export { + default as DirectionsBoat, + } from '@material-ui/icons/DirectionsBoat'; + declare export { + default as DirectionsBoatOutlined, + } from '@material-ui/icons/DirectionsBoatOutlined'; + declare export { + default as DirectionsBoatRounded, + } from '@material-ui/icons/DirectionsBoatRounded'; + declare export { + default as DirectionsBoatSharp, + } from '@material-ui/icons/DirectionsBoatSharp'; + declare export { + default as DirectionsBoatTwoTone, + } from '@material-ui/icons/DirectionsBoatTwoTone'; + declare export { + default as DirectionsBus, + } from '@material-ui/icons/DirectionsBus'; + declare export { + default as DirectionsBusOutlined, + } from '@material-ui/icons/DirectionsBusOutlined'; + declare export { + default as DirectionsBusRounded, + } from '@material-ui/icons/DirectionsBusRounded'; + declare export { + default as DirectionsBusSharp, + } from '@material-ui/icons/DirectionsBusSharp'; + declare export { + default as DirectionsBusTwoTone, + } from '@material-ui/icons/DirectionsBusTwoTone'; + declare export { + default as DirectionsCar, + } from '@material-ui/icons/DirectionsCar'; + declare export { + default as DirectionsCarOutlined, + } from '@material-ui/icons/DirectionsCarOutlined'; + declare export { + default as DirectionsCarRounded, + } from '@material-ui/icons/DirectionsCarRounded'; + declare export { + default as DirectionsCarSharp, + } from '@material-ui/icons/DirectionsCarSharp'; + declare export { + default as DirectionsCarTwoTone, + } from '@material-ui/icons/DirectionsCarTwoTone'; + declare export { default as Directions } from '@material-ui/icons/Directions'; + declare export { + default as DirectionsOutlined, + } from '@material-ui/icons/DirectionsOutlined'; + declare export { + default as DirectionsRailway, + } from '@material-ui/icons/DirectionsRailway'; + declare export { + default as DirectionsRailwayOutlined, + } from '@material-ui/icons/DirectionsRailwayOutlined'; + declare export { + default as DirectionsRailwayRounded, + } from '@material-ui/icons/DirectionsRailwayRounded'; + declare export { + default as DirectionsRailwaySharp, + } from '@material-ui/icons/DirectionsRailwaySharp'; + declare export { + default as DirectionsRailwayTwoTone, + } from '@material-ui/icons/DirectionsRailwayTwoTone'; + declare export { + default as DirectionsRounded, + } from '@material-ui/icons/DirectionsRounded'; + declare export { + default as DirectionsRun, + } from '@material-ui/icons/DirectionsRun'; + declare export { + default as DirectionsRunOutlined, + } from '@material-ui/icons/DirectionsRunOutlined'; + declare export { + default as DirectionsRunRounded, + } from '@material-ui/icons/DirectionsRunRounded'; + declare export { + default as DirectionsRunSharp, + } from '@material-ui/icons/DirectionsRunSharp'; + declare export { + default as DirectionsRunTwoTone, + } from '@material-ui/icons/DirectionsRunTwoTone'; + declare export { + default as DirectionsSharp, + } from '@material-ui/icons/DirectionsSharp'; + declare export { + default as DirectionsSubway, + } from '@material-ui/icons/DirectionsSubway'; + declare export { + default as DirectionsSubwayOutlined, + } from '@material-ui/icons/DirectionsSubwayOutlined'; + declare export { + default as DirectionsSubwayRounded, + } from '@material-ui/icons/DirectionsSubwayRounded'; + declare export { + default as DirectionsSubwaySharp, + } from '@material-ui/icons/DirectionsSubwaySharp'; + declare export { + default as DirectionsSubwayTwoTone, + } from '@material-ui/icons/DirectionsSubwayTwoTone'; + declare export { + default as DirectionsTransit, + } from '@material-ui/icons/DirectionsTransit'; + declare export { + default as DirectionsTransitOutlined, + } from '@material-ui/icons/DirectionsTransitOutlined'; + declare export { + default as DirectionsTransitRounded, + } from '@material-ui/icons/DirectionsTransitRounded'; + declare export { + default as DirectionsTransitSharp, + } from '@material-ui/icons/DirectionsTransitSharp'; + declare export { + default as DirectionsTransitTwoTone, + } from '@material-ui/icons/DirectionsTransitTwoTone'; + declare export { + default as DirectionsTwoTone, + } from '@material-ui/icons/DirectionsTwoTone'; + declare export { + default as DirectionsWalk, + } from '@material-ui/icons/DirectionsWalk'; + declare export { + default as DirectionsWalkOutlined, + } from '@material-ui/icons/DirectionsWalkOutlined'; + declare export { + default as DirectionsWalkRounded, + } from '@material-ui/icons/DirectionsWalkRounded'; + declare export { + default as DirectionsWalkSharp, + } from '@material-ui/icons/DirectionsWalkSharp'; + declare export { + default as DirectionsWalkTwoTone, + } from '@material-ui/icons/DirectionsWalkTwoTone'; + declare export { default as DiscFull } from '@material-ui/icons/DiscFull'; + declare export { + default as DiscFullOutlined, + } from '@material-ui/icons/DiscFullOutlined'; + declare export { + default as DiscFullRounded, + } from '@material-ui/icons/DiscFullRounded'; + declare export { + default as DiscFullSharp, + } from '@material-ui/icons/DiscFullSharp'; + declare export { + default as DiscFullTwoTone, + } from '@material-ui/icons/DiscFullTwoTone'; + declare export { default as Dns } from '@material-ui/icons/Dns'; + declare export { + default as DnsOutlined, + } from '@material-ui/icons/DnsOutlined'; + declare export { default as DnsRounded } from '@material-ui/icons/DnsRounded'; + declare export { default as DnsSharp } from '@material-ui/icons/DnsSharp'; + declare export { default as DnsTwoTone } from '@material-ui/icons/DnsTwoTone'; + declare export { default as Dock } from '@material-ui/icons/Dock'; + declare export { + default as DockOutlined, + } from '@material-ui/icons/DockOutlined'; + declare export { + default as DockRounded, + } from '@material-ui/icons/DockRounded'; + declare export { default as DockSharp } from '@material-ui/icons/DockSharp'; + declare export { + default as DockTwoTone, + } from '@material-ui/icons/DockTwoTone'; + declare export { + default as DomainDisabled, + } from '@material-ui/icons/DomainDisabled'; + declare export { + default as DomainDisabledOutlined, + } from '@material-ui/icons/DomainDisabledOutlined'; + declare export { + default as DomainDisabledRounded, + } from '@material-ui/icons/DomainDisabledRounded'; + declare export { + default as DomainDisabledSharp, + } from '@material-ui/icons/DomainDisabledSharp'; + declare export { + default as DomainDisabledTwoTone, + } from '@material-ui/icons/DomainDisabledTwoTone'; + declare export { default as Domain } from '@material-ui/icons/Domain'; + declare export { + default as DomainOutlined, + } from '@material-ui/icons/DomainOutlined'; + declare export { + default as DomainRounded, + } from '@material-ui/icons/DomainRounded'; + declare export { + default as DomainSharp, + } from '@material-ui/icons/DomainSharp'; + declare export { + default as DomainTwoTone, + } from '@material-ui/icons/DomainTwoTone'; + declare export { default as DoneAll } from '@material-ui/icons/DoneAll'; + declare export { + default as DoneAllOutlined, + } from '@material-ui/icons/DoneAllOutlined'; + declare export { + default as DoneAllRounded, + } from '@material-ui/icons/DoneAllRounded'; + declare export { + default as DoneAllSharp, + } from '@material-ui/icons/DoneAllSharp'; + declare export { + default as DoneAllTwoTone, + } from '@material-ui/icons/DoneAllTwoTone'; + declare export { default as Done } from '@material-ui/icons/Done'; + declare export { + default as DoneOutlined, + } from '@material-ui/icons/DoneOutlined'; + declare export { + default as DoneOutline, + } from '@material-ui/icons/DoneOutline'; + declare export { + default as DoneOutlineOutlined, + } from '@material-ui/icons/DoneOutlineOutlined'; + declare export { + default as DoneOutlineRounded, + } from '@material-ui/icons/DoneOutlineRounded'; + declare export { + default as DoneOutlineSharp, + } from '@material-ui/icons/DoneOutlineSharp'; + declare export { + default as DoneOutlineTwoTone, + } from '@material-ui/icons/DoneOutlineTwoTone'; + declare export { + default as DoneRounded, + } from '@material-ui/icons/DoneRounded'; + declare export { default as DoneSharp } from '@material-ui/icons/DoneSharp'; + declare export { + default as DoneTwoTone, + } from '@material-ui/icons/DoneTwoTone'; + declare export { default as DonutLarge } from '@material-ui/icons/DonutLarge'; + declare export { + default as DonutLargeOutlined, + } from '@material-ui/icons/DonutLargeOutlined'; + declare export { + default as DonutLargeRounded, + } from '@material-ui/icons/DonutLargeRounded'; + declare export { + default as DonutLargeSharp, + } from '@material-ui/icons/DonutLargeSharp'; + declare export { + default as DonutLargeTwoTone, + } from '@material-ui/icons/DonutLargeTwoTone'; + declare export { default as DonutSmall } from '@material-ui/icons/DonutSmall'; + declare export { + default as DonutSmallOutlined, + } from '@material-ui/icons/DonutSmallOutlined'; + declare export { + default as DonutSmallRounded, + } from '@material-ui/icons/DonutSmallRounded'; + declare export { + default as DonutSmallSharp, + } from '@material-ui/icons/DonutSmallSharp'; + declare export { + default as DonutSmallTwoTone, + } from '@material-ui/icons/DonutSmallTwoTone'; + declare export { default as Drafts } from '@material-ui/icons/Drafts'; + declare export { + default as DraftsOutlined, + } from '@material-ui/icons/DraftsOutlined'; + declare export { + default as DraftsRounded, + } from '@material-ui/icons/DraftsRounded'; + declare export { + default as DraftsSharp, + } from '@material-ui/icons/DraftsSharp'; + declare export { + default as DraftsTwoTone, + } from '@material-ui/icons/DraftsTwoTone'; + declare export { default as DragHandle } from '@material-ui/icons/DragHandle'; + declare export { + default as DragHandleOutlined, + } from '@material-ui/icons/DragHandleOutlined'; + declare export { + default as DragHandleRounded, + } from '@material-ui/icons/DragHandleRounded'; + declare export { + default as DragHandleSharp, + } from '@material-ui/icons/DragHandleSharp'; + declare export { + default as DragHandleTwoTone, + } from '@material-ui/icons/DragHandleTwoTone'; + declare export { + default as DragIndicator, + } from '@material-ui/icons/DragIndicator'; + declare export { + default as DragIndicatorOutlined, + } from '@material-ui/icons/DragIndicatorOutlined'; + declare export { + default as DragIndicatorRounded, + } from '@material-ui/icons/DragIndicatorRounded'; + declare export { + default as DragIndicatorSharp, + } from '@material-ui/icons/DragIndicatorSharp'; + declare export { + default as DragIndicatorTwoTone, + } from '@material-ui/icons/DragIndicatorTwoTone'; + declare export { default as DriveEta } from '@material-ui/icons/DriveEta'; + declare export { + default as DriveEtaOutlined, + } from '@material-ui/icons/DriveEtaOutlined'; + declare export { + default as DriveEtaRounded, + } from '@material-ui/icons/DriveEtaRounded'; + declare export { + default as DriveEtaSharp, + } from '@material-ui/icons/DriveEtaSharp'; + declare export { + default as DriveEtaTwoTone, + } from '@material-ui/icons/DriveEtaTwoTone'; + declare export { default as Duo } from '@material-ui/icons/Duo'; + declare export { + default as DuoOutlined, + } from '@material-ui/icons/DuoOutlined'; + declare export { default as DuoRounded } from '@material-ui/icons/DuoRounded'; + declare export { default as DuoSharp } from '@material-ui/icons/DuoSharp'; + declare export { default as DuoTwoTone } from '@material-ui/icons/DuoTwoTone'; + declare export { default as Dvr } from '@material-ui/icons/Dvr'; + declare export { + default as DvrOutlined, + } from '@material-ui/icons/DvrOutlined'; + declare export { default as DvrRounded } from '@material-ui/icons/DvrRounded'; + declare export { default as DvrSharp } from '@material-ui/icons/DvrSharp'; + declare export { default as DvrTwoTone } from '@material-ui/icons/DvrTwoTone'; + declare export { + default as EditAttributes, + } from '@material-ui/icons/EditAttributes'; + declare export { + default as EditAttributesOutlined, + } from '@material-ui/icons/EditAttributesOutlined'; + declare export { + default as EditAttributesRounded, + } from '@material-ui/icons/EditAttributesRounded'; + declare export { + default as EditAttributesSharp, + } from '@material-ui/icons/EditAttributesSharp'; + declare export { + default as EditAttributesTwoTone, + } from '@material-ui/icons/EditAttributesTwoTone'; + declare export { default as Edit } from '@material-ui/icons/Edit'; + declare export { + default as EditLocation, + } from '@material-ui/icons/EditLocation'; + declare export { + default as EditLocationOutlined, + } from '@material-ui/icons/EditLocationOutlined'; + declare export { + default as EditLocationRounded, + } from '@material-ui/icons/EditLocationRounded'; + declare export { + default as EditLocationSharp, + } from '@material-ui/icons/EditLocationSharp'; + declare export { + default as EditLocationTwoTone, + } from '@material-ui/icons/EditLocationTwoTone'; + declare export { + default as EditOutlined, + } from '@material-ui/icons/EditOutlined'; + declare export { + default as EditRounded, + } from '@material-ui/icons/EditRounded'; + declare export { default as EditSharp } from '@material-ui/icons/EditSharp'; + declare export { + default as EditTwoTone, + } from '@material-ui/icons/EditTwoTone'; + declare export { default as Eject } from '@material-ui/icons/Eject'; + declare export { + default as EjectOutlined, + } from '@material-ui/icons/EjectOutlined'; + declare export { + default as EjectRounded, + } from '@material-ui/icons/EjectRounded'; + declare export { default as EjectSharp } from '@material-ui/icons/EjectSharp'; + declare export { + default as EjectTwoTone, + } from '@material-ui/icons/EjectTwoTone'; + declare export { default as Email } from '@material-ui/icons/Email'; + declare export { + default as EmailOutlined, + } from '@material-ui/icons/EmailOutlined'; + declare export { + default as EmailRounded, + } from '@material-ui/icons/EmailRounded'; + declare export { default as EmailSharp } from '@material-ui/icons/EmailSharp'; + declare export { + default as EmailTwoTone, + } from '@material-ui/icons/EmailTwoTone'; + declare export { + default as EnhancedEncryption, + } from '@material-ui/icons/EnhancedEncryption'; + declare export { + default as EnhancedEncryptionOutlined, + } from '@material-ui/icons/EnhancedEncryptionOutlined'; + declare export { + default as EnhancedEncryptionRounded, + } from '@material-ui/icons/EnhancedEncryptionRounded'; + declare export { + default as EnhancedEncryptionSharp, + } from '@material-ui/icons/EnhancedEncryptionSharp'; + declare export { + default as EnhancedEncryptionTwoTone, + } from '@material-ui/icons/EnhancedEncryptionTwoTone'; + declare export { default as Equalizer } from '@material-ui/icons/Equalizer'; + declare export { + default as EqualizerOutlined, + } from '@material-ui/icons/EqualizerOutlined'; + declare export { + default as EqualizerRounded, + } from '@material-ui/icons/EqualizerRounded'; + declare export { + default as EqualizerSharp, + } from '@material-ui/icons/EqualizerSharp'; + declare export { + default as EqualizerTwoTone, + } from '@material-ui/icons/EqualizerTwoTone'; + declare export { default as Error } from '@material-ui/icons/Error'; + declare export { + default as ErrorOutlined, + } from '@material-ui/icons/ErrorOutlined'; + declare export { + default as ErrorOutline, + } from '@material-ui/icons/ErrorOutline'; + declare export { + default as ErrorOutlineOutlined, + } from '@material-ui/icons/ErrorOutlineOutlined'; + declare export { + default as ErrorOutlineRounded, + } from '@material-ui/icons/ErrorOutlineRounded'; + declare export { + default as ErrorOutlineSharp, + } from '@material-ui/icons/ErrorOutlineSharp'; + declare export { + default as ErrorOutlineTwoTone, + } from '@material-ui/icons/ErrorOutlineTwoTone'; + declare export { + default as ErrorRounded, + } from '@material-ui/icons/ErrorRounded'; + declare export { default as ErrorSharp } from '@material-ui/icons/ErrorSharp'; + declare export { + default as ErrorTwoTone, + } from '@material-ui/icons/ErrorTwoTone'; + declare export { default as EuroSymbol } from '@material-ui/icons/EuroSymbol'; + declare export { + default as EuroSymbolOutlined, + } from '@material-ui/icons/EuroSymbolOutlined'; + declare export { + default as EuroSymbolRounded, + } from '@material-ui/icons/EuroSymbolRounded'; + declare export { + default as EuroSymbolSharp, + } from '@material-ui/icons/EuroSymbolSharp'; + declare export { + default as EuroSymbolTwoTone, + } from '@material-ui/icons/EuroSymbolTwoTone'; + declare export { + default as EventAvailable, + } from '@material-ui/icons/EventAvailable'; + declare export { + default as EventAvailableOutlined, + } from '@material-ui/icons/EventAvailableOutlined'; + declare export { + default as EventAvailableRounded, + } from '@material-ui/icons/EventAvailableRounded'; + declare export { + default as EventAvailableSharp, + } from '@material-ui/icons/EventAvailableSharp'; + declare export { + default as EventAvailableTwoTone, + } from '@material-ui/icons/EventAvailableTwoTone'; + declare export { default as EventBusy } from '@material-ui/icons/EventBusy'; + declare export { + default as EventBusyOutlined, + } from '@material-ui/icons/EventBusyOutlined'; + declare export { + default as EventBusyRounded, + } from '@material-ui/icons/EventBusyRounded'; + declare export { + default as EventBusySharp, + } from '@material-ui/icons/EventBusySharp'; + declare export { + default as EventBusyTwoTone, + } from '@material-ui/icons/EventBusyTwoTone'; + declare export { default as Event } from '@material-ui/icons/Event'; + declare export { default as EventNote } from '@material-ui/icons/EventNote'; + declare export { + default as EventNoteOutlined, + } from '@material-ui/icons/EventNoteOutlined'; + declare export { + default as EventNoteRounded, + } from '@material-ui/icons/EventNoteRounded'; + declare export { + default as EventNoteSharp, + } from '@material-ui/icons/EventNoteSharp'; + declare export { + default as EventNoteTwoTone, + } from '@material-ui/icons/EventNoteTwoTone'; + declare export { + default as EventOutlined, + } from '@material-ui/icons/EventOutlined'; + declare export { + default as EventRounded, + } from '@material-ui/icons/EventRounded'; + declare export { default as EventSeat } from '@material-ui/icons/EventSeat'; + declare export { + default as EventSeatOutlined, + } from '@material-ui/icons/EventSeatOutlined'; + declare export { + default as EventSeatRounded, + } from '@material-ui/icons/EventSeatRounded'; + declare export { + default as EventSeatSharp, + } from '@material-ui/icons/EventSeatSharp'; + declare export { + default as EventSeatTwoTone, + } from '@material-ui/icons/EventSeatTwoTone'; + declare export { default as EventSharp } from '@material-ui/icons/EventSharp'; + declare export { + default as EventTwoTone, + } from '@material-ui/icons/EventTwoTone'; + declare export { default as EvStation } from '@material-ui/icons/EvStation'; + declare export { + default as EvStationOutlined, + } from '@material-ui/icons/EvStationOutlined'; + declare export { + default as EvStationRounded, + } from '@material-ui/icons/EvStationRounded'; + declare export { + default as EvStationSharp, + } from '@material-ui/icons/EvStationSharp'; + declare export { + default as EvStationTwoTone, + } from '@material-ui/icons/EvStationTwoTone'; + declare export { default as ExitToApp } from '@material-ui/icons/ExitToApp'; + declare export { + default as ExitToAppOutlined, + } from '@material-ui/icons/ExitToAppOutlined'; + declare export { + default as ExitToAppRounded, + } from '@material-ui/icons/ExitToAppRounded'; + declare export { + default as ExitToAppSharp, + } from '@material-ui/icons/ExitToAppSharp'; + declare export { + default as ExitToAppTwoTone, + } from '@material-ui/icons/ExitToAppTwoTone'; + declare export { default as ExpandLess } from '@material-ui/icons/ExpandLess'; + declare export { + default as ExpandLessOutlined, + } from '@material-ui/icons/ExpandLessOutlined'; + declare export { + default as ExpandLessRounded, + } from '@material-ui/icons/ExpandLessRounded'; + declare export { + default as ExpandLessSharp, + } from '@material-ui/icons/ExpandLessSharp'; + declare export { + default as ExpandLessTwoTone, + } from '@material-ui/icons/ExpandLessTwoTone'; + declare export { default as ExpandMore } from '@material-ui/icons/ExpandMore'; + declare export { + default as ExpandMoreOutlined, + } from '@material-ui/icons/ExpandMoreOutlined'; + declare export { + default as ExpandMoreRounded, + } from '@material-ui/icons/ExpandMoreRounded'; + declare export { + default as ExpandMoreSharp, + } from '@material-ui/icons/ExpandMoreSharp'; + declare export { + default as ExpandMoreTwoTone, + } from '@material-ui/icons/ExpandMoreTwoTone'; + declare export { default as Explicit } from '@material-ui/icons/Explicit'; + declare export { + default as ExplicitOutlined, + } from '@material-ui/icons/ExplicitOutlined'; + declare export { + default as ExplicitRounded, + } from '@material-ui/icons/ExplicitRounded'; + declare export { + default as ExplicitSharp, + } from '@material-ui/icons/ExplicitSharp'; + declare export { + default as ExplicitTwoTone, + } from '@material-ui/icons/ExplicitTwoTone'; + declare export { default as Explore } from '@material-ui/icons/Explore'; + declare export { default as ExploreOff } from '@material-ui/icons/ExploreOff'; + declare export { + default as ExploreOffOutlined, + } from '@material-ui/icons/ExploreOffOutlined'; + declare export { + default as ExploreOffRounded, + } from '@material-ui/icons/ExploreOffRounded'; + declare export { + default as ExploreOffSharp, + } from '@material-ui/icons/ExploreOffSharp'; + declare export { + default as ExploreOffTwoTone, + } from '@material-ui/icons/ExploreOffTwoTone'; + declare export { + default as ExploreOutlined, + } from '@material-ui/icons/ExploreOutlined'; + declare export { + default as ExploreRounded, + } from '@material-ui/icons/ExploreRounded'; + declare export { + default as ExploreSharp, + } from '@material-ui/icons/ExploreSharp'; + declare export { + default as ExploreTwoTone, + } from '@material-ui/icons/ExploreTwoTone'; + declare export { default as Exposure } from '@material-ui/icons/Exposure'; + declare export { + default as ExposureNeg1, + } from '@material-ui/icons/ExposureNeg1'; + declare export { + default as ExposureNeg1Outlined, + } from '@material-ui/icons/ExposureNeg1Outlined'; + declare export { + default as ExposureNeg1Rounded, + } from '@material-ui/icons/ExposureNeg1Rounded'; + declare export { + default as ExposureNeg1Sharp, + } from '@material-ui/icons/ExposureNeg1Sharp'; + declare export { + default as ExposureNeg1TwoTone, + } from '@material-ui/icons/ExposureNeg1TwoTone'; + declare export { + default as ExposureNeg2, + } from '@material-ui/icons/ExposureNeg2'; + declare export { + default as ExposureNeg2Outlined, + } from '@material-ui/icons/ExposureNeg2Outlined'; + declare export { + default as ExposureNeg2Rounded, + } from '@material-ui/icons/ExposureNeg2Rounded'; + declare export { + default as ExposureNeg2Sharp, + } from '@material-ui/icons/ExposureNeg2Sharp'; + declare export { + default as ExposureNeg2TwoTone, + } from '@material-ui/icons/ExposureNeg2TwoTone'; + declare export { + default as ExposureOutlined, + } from '@material-ui/icons/ExposureOutlined'; + declare export { + default as ExposurePlus1, + } from '@material-ui/icons/ExposurePlus1'; + declare export { + default as ExposurePlus1Outlined, + } from '@material-ui/icons/ExposurePlus1Outlined'; + declare export { + default as ExposurePlus1Rounded, + } from '@material-ui/icons/ExposurePlus1Rounded'; + declare export { + default as ExposurePlus1Sharp, + } from '@material-ui/icons/ExposurePlus1Sharp'; + declare export { + default as ExposurePlus1TwoTone, + } from '@material-ui/icons/ExposurePlus1TwoTone'; + declare export { + default as ExposurePlus2, + } from '@material-ui/icons/ExposurePlus2'; + declare export { + default as ExposurePlus2Outlined, + } from '@material-ui/icons/ExposurePlus2Outlined'; + declare export { + default as ExposurePlus2Rounded, + } from '@material-ui/icons/ExposurePlus2Rounded'; + declare export { + default as ExposurePlus2Sharp, + } from '@material-ui/icons/ExposurePlus2Sharp'; + declare export { + default as ExposurePlus2TwoTone, + } from '@material-ui/icons/ExposurePlus2TwoTone'; + declare export { + default as ExposureRounded, + } from '@material-ui/icons/ExposureRounded'; + declare export { + default as ExposureSharp, + } from '@material-ui/icons/ExposureSharp'; + declare export { + default as ExposureTwoTone, + } from '@material-ui/icons/ExposureTwoTone'; + declare export { + default as ExposureZero, + } from '@material-ui/icons/ExposureZero'; + declare export { + default as ExposureZeroOutlined, + } from '@material-ui/icons/ExposureZeroOutlined'; + declare export { + default as ExposureZeroRounded, + } from '@material-ui/icons/ExposureZeroRounded'; + declare export { + default as ExposureZeroSharp, + } from '@material-ui/icons/ExposureZeroSharp'; + declare export { + default as ExposureZeroTwoTone, + } from '@material-ui/icons/ExposureZeroTwoTone'; + declare export { default as Extension } from '@material-ui/icons/Extension'; + declare export { + default as ExtensionOutlined, + } from '@material-ui/icons/ExtensionOutlined'; + declare export { + default as ExtensionRounded, + } from '@material-ui/icons/ExtensionRounded'; + declare export { + default as ExtensionSharp, + } from '@material-ui/icons/ExtensionSharp'; + declare export { + default as ExtensionTwoTone, + } from '@material-ui/icons/ExtensionTwoTone'; + declare export { default as Face } from '@material-ui/icons/Face'; + declare export { + default as FaceOutlined, + } from '@material-ui/icons/FaceOutlined'; + declare export { + default as FaceRounded, + } from '@material-ui/icons/FaceRounded'; + declare export { default as FaceSharp } from '@material-ui/icons/FaceSharp'; + declare export { + default as FaceTwoTone, + } from '@material-ui/icons/FaceTwoTone'; + declare export { default as Fastfood } from '@material-ui/icons/Fastfood'; + declare export { + default as FastfoodOutlined, + } from '@material-ui/icons/FastfoodOutlined'; + declare export { + default as FastfoodRounded, + } from '@material-ui/icons/FastfoodRounded'; + declare export { + default as FastfoodSharp, + } from '@material-ui/icons/FastfoodSharp'; + declare export { + default as FastfoodTwoTone, + } from '@material-ui/icons/FastfoodTwoTone'; + declare export { + default as FastForward, + } from '@material-ui/icons/FastForward'; + declare export { + default as FastForwardOutlined, + } from '@material-ui/icons/FastForwardOutlined'; + declare export { + default as FastForwardRounded, + } from '@material-ui/icons/FastForwardRounded'; + declare export { + default as FastForwardSharp, + } from '@material-ui/icons/FastForwardSharp'; + declare export { + default as FastForwardTwoTone, + } from '@material-ui/icons/FastForwardTwoTone'; + declare export { default as FastRewind } from '@material-ui/icons/FastRewind'; + declare export { + default as FastRewindOutlined, + } from '@material-ui/icons/FastRewindOutlined'; + declare export { + default as FastRewindRounded, + } from '@material-ui/icons/FastRewindRounded'; + declare export { + default as FastRewindSharp, + } from '@material-ui/icons/FastRewindSharp'; + declare export { + default as FastRewindTwoTone, + } from '@material-ui/icons/FastRewindTwoTone'; + declare export { + default as FavoriteBorder, + } from '@material-ui/icons/FavoriteBorder'; + declare export { + default as FavoriteBorderOutlined, + } from '@material-ui/icons/FavoriteBorderOutlined'; + declare export { + default as FavoriteBorderRounded, + } from '@material-ui/icons/FavoriteBorderRounded'; + declare export { + default as FavoriteBorderSharp, + } from '@material-ui/icons/FavoriteBorderSharp'; + declare export { + default as FavoriteBorderTwoTone, + } from '@material-ui/icons/FavoriteBorderTwoTone'; + declare export { default as Favorite } from '@material-ui/icons/Favorite'; + declare export { + default as FavoriteOutlined, + } from '@material-ui/icons/FavoriteOutlined'; + declare export { + default as FavoriteRounded, + } from '@material-ui/icons/FavoriteRounded'; + declare export { + default as FavoriteSharp, + } from '@material-ui/icons/FavoriteSharp'; + declare export { + default as FavoriteTwoTone, + } from '@material-ui/icons/FavoriteTwoTone'; + declare export { + default as FeaturedPlayList, + } from '@material-ui/icons/FeaturedPlayList'; + declare export { + default as FeaturedPlayListOutlined, + } from '@material-ui/icons/FeaturedPlayListOutlined'; + declare export { + default as FeaturedPlayListRounded, + } from '@material-ui/icons/FeaturedPlayListRounded'; + declare export { + default as FeaturedPlayListSharp, + } from '@material-ui/icons/FeaturedPlayListSharp'; + declare export { + default as FeaturedPlayListTwoTone, + } from '@material-ui/icons/FeaturedPlayListTwoTone'; + declare export { + default as FeaturedVideo, + } from '@material-ui/icons/FeaturedVideo'; + declare export { + default as FeaturedVideoOutlined, + } from '@material-ui/icons/FeaturedVideoOutlined'; + declare export { + default as FeaturedVideoRounded, + } from '@material-ui/icons/FeaturedVideoRounded'; + declare export { + default as FeaturedVideoSharp, + } from '@material-ui/icons/FeaturedVideoSharp'; + declare export { + default as FeaturedVideoTwoTone, + } from '@material-ui/icons/FeaturedVideoTwoTone'; + declare export { default as Feedback } from '@material-ui/icons/Feedback'; + declare export { + default as FeedbackOutlined, + } from '@material-ui/icons/FeedbackOutlined'; + declare export { + default as FeedbackRounded, + } from '@material-ui/icons/FeedbackRounded'; + declare export { + default as FeedbackSharp, + } from '@material-ui/icons/FeedbackSharp'; + declare export { + default as FeedbackTwoTone, + } from '@material-ui/icons/FeedbackTwoTone'; + declare export { default as FiberDvr } from '@material-ui/icons/FiberDvr'; + declare export { + default as FiberDvrOutlined, + } from '@material-ui/icons/FiberDvrOutlined'; + declare export { + default as FiberDvrRounded, + } from '@material-ui/icons/FiberDvrRounded'; + declare export { + default as FiberDvrSharp, + } from '@material-ui/icons/FiberDvrSharp'; + declare export { + default as FiberDvrTwoTone, + } from '@material-ui/icons/FiberDvrTwoTone'; + declare export { + default as FiberManualRecord, + } from '@material-ui/icons/FiberManualRecord'; + declare export { + default as FiberManualRecordOutlined, + } from '@material-ui/icons/FiberManualRecordOutlined'; + declare export { + default as FiberManualRecordRounded, + } from '@material-ui/icons/FiberManualRecordRounded'; + declare export { + default as FiberManualRecordSharp, + } from '@material-ui/icons/FiberManualRecordSharp'; + declare export { + default as FiberManualRecordTwoTone, + } from '@material-ui/icons/FiberManualRecordTwoTone'; + declare export { default as FiberNew } from '@material-ui/icons/FiberNew'; + declare export { + default as FiberNewOutlined, + } from '@material-ui/icons/FiberNewOutlined'; + declare export { + default as FiberNewRounded, + } from '@material-ui/icons/FiberNewRounded'; + declare export { + default as FiberNewSharp, + } from '@material-ui/icons/FiberNewSharp'; + declare export { + default as FiberNewTwoTone, + } from '@material-ui/icons/FiberNewTwoTone'; + declare export { default as FiberPin } from '@material-ui/icons/FiberPin'; + declare export { + default as FiberPinOutlined, + } from '@material-ui/icons/FiberPinOutlined'; + declare export { + default as FiberPinRounded, + } from '@material-ui/icons/FiberPinRounded'; + declare export { + default as FiberPinSharp, + } from '@material-ui/icons/FiberPinSharp'; + declare export { + default as FiberPinTwoTone, + } from '@material-ui/icons/FiberPinTwoTone'; + declare export { + default as FiberSmartRecord, + } from '@material-ui/icons/FiberSmartRecord'; + declare export { + default as FiberSmartRecordOutlined, + } from '@material-ui/icons/FiberSmartRecordOutlined'; + declare export { + default as FiberSmartRecordRounded, + } from '@material-ui/icons/FiberSmartRecordRounded'; + declare export { + default as FiberSmartRecordSharp, + } from '@material-ui/icons/FiberSmartRecordSharp'; + declare export { + default as FiberSmartRecordTwoTone, + } from '@material-ui/icons/FiberSmartRecordTwoTone'; + declare export { default as FileCopy } from '@material-ui/icons/FileCopy'; + declare export { + default as FileCopyOutlined, + } from '@material-ui/icons/FileCopyOutlined'; + declare export { + default as FileCopyRounded, + } from '@material-ui/icons/FileCopyRounded'; + declare export { + default as FileCopySharp, + } from '@material-ui/icons/FileCopySharp'; + declare export { + default as FileCopyTwoTone, + } from '@material-ui/icons/FileCopyTwoTone'; + declare export { default as Filter1 } from '@material-ui/icons/Filter1'; + declare export { + default as Filter1Outlined, + } from '@material-ui/icons/Filter1Outlined'; + declare export { + default as Filter1Rounded, + } from '@material-ui/icons/Filter1Rounded'; + declare export { + default as Filter1Sharp, + } from '@material-ui/icons/Filter1Sharp'; + declare export { + default as Filter1TwoTone, + } from '@material-ui/icons/Filter1TwoTone'; + declare export { default as Filter2 } from '@material-ui/icons/Filter2'; + declare export { + default as Filter2Outlined, + } from '@material-ui/icons/Filter2Outlined'; + declare export { + default as Filter2Rounded, + } from '@material-ui/icons/Filter2Rounded'; + declare export { + default as Filter2Sharp, + } from '@material-ui/icons/Filter2Sharp'; + declare export { + default as Filter2TwoTone, + } from '@material-ui/icons/Filter2TwoTone'; + declare export { default as Filter3 } from '@material-ui/icons/Filter3'; + declare export { + default as Filter3Outlined, + } from '@material-ui/icons/Filter3Outlined'; + declare export { + default as Filter3Rounded, + } from '@material-ui/icons/Filter3Rounded'; + declare export { + default as Filter3Sharp, + } from '@material-ui/icons/Filter3Sharp'; + declare export { + default as Filter3TwoTone, + } from '@material-ui/icons/Filter3TwoTone'; + declare export { default as Filter4 } from '@material-ui/icons/Filter4'; + declare export { + default as Filter4Outlined, + } from '@material-ui/icons/Filter4Outlined'; + declare export { + default as Filter4Rounded, + } from '@material-ui/icons/Filter4Rounded'; + declare export { + default as Filter4Sharp, + } from '@material-ui/icons/Filter4Sharp'; + declare export { + default as Filter4TwoTone, + } from '@material-ui/icons/Filter4TwoTone'; + declare export { default as Filter5 } from '@material-ui/icons/Filter5'; + declare export { + default as Filter5Outlined, + } from '@material-ui/icons/Filter5Outlined'; + declare export { + default as Filter5Rounded, + } from '@material-ui/icons/Filter5Rounded'; + declare export { + default as Filter5Sharp, + } from '@material-ui/icons/Filter5Sharp'; + declare export { + default as Filter5TwoTone, + } from '@material-ui/icons/Filter5TwoTone'; + declare export { default as Filter6 } from '@material-ui/icons/Filter6'; + declare export { + default as Filter6Outlined, + } from '@material-ui/icons/Filter6Outlined'; + declare export { + default as Filter6Rounded, + } from '@material-ui/icons/Filter6Rounded'; + declare export { + default as Filter6Sharp, + } from '@material-ui/icons/Filter6Sharp'; + declare export { + default as Filter6TwoTone, + } from '@material-ui/icons/Filter6TwoTone'; + declare export { default as Filter7 } from '@material-ui/icons/Filter7'; + declare export { + default as Filter7Outlined, + } from '@material-ui/icons/Filter7Outlined'; + declare export { + default as Filter7Rounded, + } from '@material-ui/icons/Filter7Rounded'; + declare export { + default as Filter7Sharp, + } from '@material-ui/icons/Filter7Sharp'; + declare export { + default as Filter7TwoTone, + } from '@material-ui/icons/Filter7TwoTone'; + declare export { default as Filter8 } from '@material-ui/icons/Filter8'; + declare export { + default as Filter8Outlined, + } from '@material-ui/icons/Filter8Outlined'; + declare export { + default as Filter8Rounded, + } from '@material-ui/icons/Filter8Rounded'; + declare export { + default as Filter8Sharp, + } from '@material-ui/icons/Filter8Sharp'; + declare export { + default as Filter8TwoTone, + } from '@material-ui/icons/Filter8TwoTone'; + declare export { default as Filter9 } from '@material-ui/icons/Filter9'; + declare export { + default as Filter9Outlined, + } from '@material-ui/icons/Filter9Outlined'; + declare export { + default as Filter9Plus, + } from '@material-ui/icons/Filter9Plus'; + declare export { + default as Filter9PlusOutlined, + } from '@material-ui/icons/Filter9PlusOutlined'; + declare export { + default as Filter9PlusRounded, + } from '@material-ui/icons/Filter9PlusRounded'; + declare export { + default as Filter9PlusSharp, + } from '@material-ui/icons/Filter9PlusSharp'; + declare export { + default as Filter9PlusTwoTone, + } from '@material-ui/icons/Filter9PlusTwoTone'; + declare export { + default as Filter9Rounded, + } from '@material-ui/icons/Filter9Rounded'; + declare export { + default as Filter9Sharp, + } from '@material-ui/icons/Filter9Sharp'; + declare export { + default as Filter9TwoTone, + } from '@material-ui/icons/Filter9TwoTone'; + declare export { + default as FilterBAndW, + } from '@material-ui/icons/FilterBAndW'; + declare export { + default as FilterBAndWOutlined, + } from '@material-ui/icons/FilterBAndWOutlined'; + declare export { + default as FilterBAndWRounded, + } from '@material-ui/icons/FilterBAndWRounded'; + declare export { + default as FilterBAndWSharp, + } from '@material-ui/icons/FilterBAndWSharp'; + declare export { + default as FilterBAndWTwoTone, + } from '@material-ui/icons/FilterBAndWTwoTone'; + declare export { + default as FilterCenterFocus, + } from '@material-ui/icons/FilterCenterFocus'; + declare export { + default as FilterCenterFocusOutlined, + } from '@material-ui/icons/FilterCenterFocusOutlined'; + declare export { + default as FilterCenterFocusRounded, + } from '@material-ui/icons/FilterCenterFocusRounded'; + declare export { + default as FilterCenterFocusSharp, + } from '@material-ui/icons/FilterCenterFocusSharp'; + declare export { + default as FilterCenterFocusTwoTone, + } from '@material-ui/icons/FilterCenterFocusTwoTone'; + declare export { + default as FilterDrama, + } from '@material-ui/icons/FilterDrama'; + declare export { + default as FilterDramaOutlined, + } from '@material-ui/icons/FilterDramaOutlined'; + declare export { + default as FilterDramaRounded, + } from '@material-ui/icons/FilterDramaRounded'; + declare export { + default as FilterDramaSharp, + } from '@material-ui/icons/FilterDramaSharp'; + declare export { + default as FilterDramaTwoTone, + } from '@material-ui/icons/FilterDramaTwoTone'; + declare export { + default as FilterFrames, + } from '@material-ui/icons/FilterFrames'; + declare export { + default as FilterFramesOutlined, + } from '@material-ui/icons/FilterFramesOutlined'; + declare export { + default as FilterFramesRounded, + } from '@material-ui/icons/FilterFramesRounded'; + declare export { + default as FilterFramesSharp, + } from '@material-ui/icons/FilterFramesSharp'; + declare export { + default as FilterFramesTwoTone, + } from '@material-ui/icons/FilterFramesTwoTone'; + declare export { default as FilterHdr } from '@material-ui/icons/FilterHdr'; + declare export { + default as FilterHdrOutlined, + } from '@material-ui/icons/FilterHdrOutlined'; + declare export { + default as FilterHdrRounded, + } from '@material-ui/icons/FilterHdrRounded'; + declare export { + default as FilterHdrSharp, + } from '@material-ui/icons/FilterHdrSharp'; + declare export { + default as FilterHdrTwoTone, + } from '@material-ui/icons/FilterHdrTwoTone'; + declare export { default as Filter } from '@material-ui/icons/Filter'; + declare export { default as FilterList } from '@material-ui/icons/FilterList'; + declare export { + default as FilterListOutlined, + } from '@material-ui/icons/FilterListOutlined'; + declare export { + default as FilterListRounded, + } from '@material-ui/icons/FilterListRounded'; + declare export { + default as FilterListSharp, + } from '@material-ui/icons/FilterListSharp'; + declare export { + default as FilterListTwoTone, + } from '@material-ui/icons/FilterListTwoTone'; + declare export { default as FilterNone } from '@material-ui/icons/FilterNone'; + declare export { + default as FilterNoneOutlined, + } from '@material-ui/icons/FilterNoneOutlined'; + declare export { + default as FilterNoneRounded, + } from '@material-ui/icons/FilterNoneRounded'; + declare export { + default as FilterNoneSharp, + } from '@material-ui/icons/FilterNoneSharp'; + declare export { + default as FilterNoneTwoTone, + } from '@material-ui/icons/FilterNoneTwoTone'; + declare export { + default as FilterOutlined, + } from '@material-ui/icons/FilterOutlined'; + declare export { + default as FilterRounded, + } from '@material-ui/icons/FilterRounded'; + declare export { + default as FilterSharp, + } from '@material-ui/icons/FilterSharp'; + declare export { + default as FilterTiltShift, + } from '@material-ui/icons/FilterTiltShift'; + declare export { + default as FilterTiltShiftOutlined, + } from '@material-ui/icons/FilterTiltShiftOutlined'; + declare export { + default as FilterTiltShiftRounded, + } from '@material-ui/icons/FilterTiltShiftRounded'; + declare export { + default as FilterTiltShiftSharp, + } from '@material-ui/icons/FilterTiltShiftSharp'; + declare export { + default as FilterTiltShiftTwoTone, + } from '@material-ui/icons/FilterTiltShiftTwoTone'; + declare export { + default as FilterTwoTone, + } from '@material-ui/icons/FilterTwoTone'; + declare export { + default as FilterVintage, + } from '@material-ui/icons/FilterVintage'; + declare export { + default as FilterVintageOutlined, + } from '@material-ui/icons/FilterVintageOutlined'; + declare export { + default as FilterVintageRounded, + } from '@material-ui/icons/FilterVintageRounded'; + declare export { + default as FilterVintageSharp, + } from '@material-ui/icons/FilterVintageSharp'; + declare export { + default as FilterVintageTwoTone, + } from '@material-ui/icons/FilterVintageTwoTone'; + declare export { default as FindInPage } from '@material-ui/icons/FindInPage'; + declare export { + default as FindInPageOutlined, + } from '@material-ui/icons/FindInPageOutlined'; + declare export { + default as FindInPageRounded, + } from '@material-ui/icons/FindInPageRounded'; + declare export { + default as FindInPageSharp, + } from '@material-ui/icons/FindInPageSharp'; + declare export { + default as FindInPageTwoTone, + } from '@material-ui/icons/FindInPageTwoTone'; + declare export { + default as FindReplace, + } from '@material-ui/icons/FindReplace'; + declare export { + default as FindReplaceOutlined, + } from '@material-ui/icons/FindReplaceOutlined'; + declare export { + default as FindReplaceRounded, + } from '@material-ui/icons/FindReplaceRounded'; + declare export { + default as FindReplaceSharp, + } from '@material-ui/icons/FindReplaceSharp'; + declare export { + default as FindReplaceTwoTone, + } from '@material-ui/icons/FindReplaceTwoTone'; + declare export { + default as Fingerprint, + } from '@material-ui/icons/Fingerprint'; + declare export { + default as FingerprintOutlined, + } from '@material-ui/icons/FingerprintOutlined'; + declare export { + default as FingerprintRounded, + } from '@material-ui/icons/FingerprintRounded'; + declare export { + default as FingerprintSharp, + } from '@material-ui/icons/FingerprintSharp'; + declare export { + default as FingerprintTwoTone, + } from '@material-ui/icons/FingerprintTwoTone'; + declare export { default as FirstPage } from '@material-ui/icons/FirstPage'; + declare export { + default as FirstPageOutlined, + } from '@material-ui/icons/FirstPageOutlined'; + declare export { + default as FirstPageRounded, + } from '@material-ui/icons/FirstPageRounded'; + declare export { + default as FirstPageSharp, + } from '@material-ui/icons/FirstPageSharp'; + declare export { + default as FirstPageTwoTone, + } from '@material-ui/icons/FirstPageTwoTone'; + declare export { + default as FitnessCenter, + } from '@material-ui/icons/FitnessCenter'; + declare export { + default as FitnessCenterOutlined, + } from '@material-ui/icons/FitnessCenterOutlined'; + declare export { + default as FitnessCenterRounded, + } from '@material-ui/icons/FitnessCenterRounded'; + declare export { + default as FitnessCenterSharp, + } from '@material-ui/icons/FitnessCenterSharp'; + declare export { + default as FitnessCenterTwoTone, + } from '@material-ui/icons/FitnessCenterTwoTone'; + declare export { default as Flag } from '@material-ui/icons/Flag'; + declare export { + default as FlagOutlined, + } from '@material-ui/icons/FlagOutlined'; + declare export { + default as FlagRounded, + } from '@material-ui/icons/FlagRounded'; + declare export { default as FlagSharp } from '@material-ui/icons/FlagSharp'; + declare export { + default as FlagTwoTone, + } from '@material-ui/icons/FlagTwoTone'; + declare export { default as Flare } from '@material-ui/icons/Flare'; + declare export { + default as FlareOutlined, + } from '@material-ui/icons/FlareOutlined'; + declare export { + default as FlareRounded, + } from '@material-ui/icons/FlareRounded'; + declare export { default as FlareSharp } from '@material-ui/icons/FlareSharp'; + declare export { + default as FlareTwoTone, + } from '@material-ui/icons/FlareTwoTone'; + declare export { default as FlashAuto } from '@material-ui/icons/FlashAuto'; + declare export { + default as FlashAutoOutlined, + } from '@material-ui/icons/FlashAutoOutlined'; + declare export { + default as FlashAutoRounded, + } from '@material-ui/icons/FlashAutoRounded'; + declare export { + default as FlashAutoSharp, + } from '@material-ui/icons/FlashAutoSharp'; + declare export { + default as FlashAutoTwoTone, + } from '@material-ui/icons/FlashAutoTwoTone'; + declare export { default as FlashOff } from '@material-ui/icons/FlashOff'; + declare export { + default as FlashOffOutlined, + } from '@material-ui/icons/FlashOffOutlined'; + declare export { + default as FlashOffRounded, + } from '@material-ui/icons/FlashOffRounded'; + declare export { + default as FlashOffSharp, + } from '@material-ui/icons/FlashOffSharp'; + declare export { + default as FlashOffTwoTone, + } from '@material-ui/icons/FlashOffTwoTone'; + declare export { default as FlashOn } from '@material-ui/icons/FlashOn'; + declare export { + default as FlashOnOutlined, + } from '@material-ui/icons/FlashOnOutlined'; + declare export { + default as FlashOnRounded, + } from '@material-ui/icons/FlashOnRounded'; + declare export { + default as FlashOnSharp, + } from '@material-ui/icons/FlashOnSharp'; + declare export { + default as FlashOnTwoTone, + } from '@material-ui/icons/FlashOnTwoTone'; + declare export { default as Flight } from '@material-ui/icons/Flight'; + declare export { default as FlightLand } from '@material-ui/icons/FlightLand'; + declare export { + default as FlightLandOutlined, + } from '@material-ui/icons/FlightLandOutlined'; + declare export { + default as FlightLandRounded, + } from '@material-ui/icons/FlightLandRounded'; + declare export { + default as FlightLandSharp, + } from '@material-ui/icons/FlightLandSharp'; + declare export { + default as FlightLandTwoTone, + } from '@material-ui/icons/FlightLandTwoTone'; + declare export { + default as FlightOutlined, + } from '@material-ui/icons/FlightOutlined'; + declare export { + default as FlightRounded, + } from '@material-ui/icons/FlightRounded'; + declare export { + default as FlightSharp, + } from '@material-ui/icons/FlightSharp'; + declare export { + default as FlightTakeoff, + } from '@material-ui/icons/FlightTakeoff'; + declare export { + default as FlightTakeoffOutlined, + } from '@material-ui/icons/FlightTakeoffOutlined'; + declare export { + default as FlightTakeoffRounded, + } from '@material-ui/icons/FlightTakeoffRounded'; + declare export { + default as FlightTakeoffSharp, + } from '@material-ui/icons/FlightTakeoffSharp'; + declare export { + default as FlightTakeoffTwoTone, + } from '@material-ui/icons/FlightTakeoffTwoTone'; + declare export { + default as FlightTwoTone, + } from '@material-ui/icons/FlightTwoTone'; + declare export { default as Flip } from '@material-ui/icons/Flip'; + declare export { + default as FlipOutlined, + } from '@material-ui/icons/FlipOutlined'; + declare export { + default as FlipRounded, + } from '@material-ui/icons/FlipRounded'; + declare export { default as FlipSharp } from '@material-ui/icons/FlipSharp'; + declare export { default as FlipToBack } from '@material-ui/icons/FlipToBack'; + declare export { + default as FlipToBackOutlined, + } from '@material-ui/icons/FlipToBackOutlined'; + declare export { + default as FlipToBackRounded, + } from '@material-ui/icons/FlipToBackRounded'; + declare export { + default as FlipToBackSharp, + } from '@material-ui/icons/FlipToBackSharp'; + declare export { + default as FlipToBackTwoTone, + } from '@material-ui/icons/FlipToBackTwoTone'; + declare export { + default as FlipToFront, + } from '@material-ui/icons/FlipToFront'; + declare export { + default as FlipToFrontOutlined, + } from '@material-ui/icons/FlipToFrontOutlined'; + declare export { + default as FlipToFrontRounded, + } from '@material-ui/icons/FlipToFrontRounded'; + declare export { + default as FlipToFrontSharp, + } from '@material-ui/icons/FlipToFrontSharp'; + declare export { + default as FlipToFrontTwoTone, + } from '@material-ui/icons/FlipToFrontTwoTone'; + declare export { + default as FlipTwoTone, + } from '@material-ui/icons/FlipTwoTone'; + declare export { default as Folder } from '@material-ui/icons/Folder'; + declare export { default as FolderOpen } from '@material-ui/icons/FolderOpen'; + declare export { + default as FolderOpenOutlined, + } from '@material-ui/icons/FolderOpenOutlined'; + declare export { + default as FolderOpenRounded, + } from '@material-ui/icons/FolderOpenRounded'; + declare export { + default as FolderOpenSharp, + } from '@material-ui/icons/FolderOpenSharp'; + declare export { + default as FolderOpenTwoTone, + } from '@material-ui/icons/FolderOpenTwoTone'; + declare export { + default as FolderOutlined, + } from '@material-ui/icons/FolderOutlined'; + declare export { + default as FolderRounded, + } from '@material-ui/icons/FolderRounded'; + declare export { + default as FolderShared, + } from '@material-ui/icons/FolderShared'; + declare export { + default as FolderSharedOutlined, + } from '@material-ui/icons/FolderSharedOutlined'; + declare export { + default as FolderSharedRounded, + } from '@material-ui/icons/FolderSharedRounded'; + declare export { + default as FolderSharedSharp, + } from '@material-ui/icons/FolderSharedSharp'; + declare export { + default as FolderSharedTwoTone, + } from '@material-ui/icons/FolderSharedTwoTone'; + declare export { + default as FolderSharp, + } from '@material-ui/icons/FolderSharp'; + declare export { + default as FolderSpecial, + } from '@material-ui/icons/FolderSpecial'; + declare export { + default as FolderSpecialOutlined, + } from '@material-ui/icons/FolderSpecialOutlined'; + declare export { + default as FolderSpecialRounded, + } from '@material-ui/icons/FolderSpecialRounded'; + declare export { + default as FolderSpecialSharp, + } from '@material-ui/icons/FolderSpecialSharp'; + declare export { + default as FolderSpecialTwoTone, + } from '@material-ui/icons/FolderSpecialTwoTone'; + declare export { + default as FolderTwoTone, + } from '@material-ui/icons/FolderTwoTone'; + declare export { + default as FontDownload, + } from '@material-ui/icons/FontDownload'; + declare export { + default as FontDownloadOutlined, + } from '@material-ui/icons/FontDownloadOutlined'; + declare export { + default as FontDownloadRounded, + } from '@material-ui/icons/FontDownloadRounded'; + declare export { + default as FontDownloadSharp, + } from '@material-ui/icons/FontDownloadSharp'; + declare export { + default as FontDownloadTwoTone, + } from '@material-ui/icons/FontDownloadTwoTone'; + declare export { + default as FormatAlignCenter, + } from '@material-ui/icons/FormatAlignCenter'; + declare export { + default as FormatAlignCenterOutlined, + } from '@material-ui/icons/FormatAlignCenterOutlined'; + declare export { + default as FormatAlignCenterRounded, + } from '@material-ui/icons/FormatAlignCenterRounded'; + declare export { + default as FormatAlignCenterSharp, + } from '@material-ui/icons/FormatAlignCenterSharp'; + declare export { + default as FormatAlignCenterTwoTone, + } from '@material-ui/icons/FormatAlignCenterTwoTone'; + declare export { + default as FormatAlignJustify, + } from '@material-ui/icons/FormatAlignJustify'; + declare export { + default as FormatAlignJustifyOutlined, + } from '@material-ui/icons/FormatAlignJustifyOutlined'; + declare export { + default as FormatAlignJustifyRounded, + } from '@material-ui/icons/FormatAlignJustifyRounded'; + declare export { + default as FormatAlignJustifySharp, + } from '@material-ui/icons/FormatAlignJustifySharp'; + declare export { + default as FormatAlignJustifyTwoTone, + } from '@material-ui/icons/FormatAlignJustifyTwoTone'; + declare export { + default as FormatAlignLeft, + } from '@material-ui/icons/FormatAlignLeft'; + declare export { + default as FormatAlignLeftOutlined, + } from '@material-ui/icons/FormatAlignLeftOutlined'; + declare export { + default as FormatAlignLeftRounded, + } from '@material-ui/icons/FormatAlignLeftRounded'; + declare export { + default as FormatAlignLeftSharp, + } from '@material-ui/icons/FormatAlignLeftSharp'; + declare export { + default as FormatAlignLeftTwoTone, + } from '@material-ui/icons/FormatAlignLeftTwoTone'; + declare export { + default as FormatAlignRight, + } from '@material-ui/icons/FormatAlignRight'; + declare export { + default as FormatAlignRightOutlined, + } from '@material-ui/icons/FormatAlignRightOutlined'; + declare export { + default as FormatAlignRightRounded, + } from '@material-ui/icons/FormatAlignRightRounded'; + declare export { + default as FormatAlignRightSharp, + } from '@material-ui/icons/FormatAlignRightSharp'; + declare export { + default as FormatAlignRightTwoTone, + } from '@material-ui/icons/FormatAlignRightTwoTone'; + declare export { default as FormatBold } from '@material-ui/icons/FormatBold'; + declare export { + default as FormatBoldOutlined, + } from '@material-ui/icons/FormatBoldOutlined'; + declare export { + default as FormatBoldRounded, + } from '@material-ui/icons/FormatBoldRounded'; + declare export { + default as FormatBoldSharp, + } from '@material-ui/icons/FormatBoldSharp'; + declare export { + default as FormatBoldTwoTone, + } from '@material-ui/icons/FormatBoldTwoTone'; + declare export { + default as FormatClear, + } from '@material-ui/icons/FormatClear'; + declare export { + default as FormatClearOutlined, + } from '@material-ui/icons/FormatClearOutlined'; + declare export { + default as FormatClearRounded, + } from '@material-ui/icons/FormatClearRounded'; + declare export { + default as FormatClearSharp, + } from '@material-ui/icons/FormatClearSharp'; + declare export { + default as FormatClearTwoTone, + } from '@material-ui/icons/FormatClearTwoTone'; + declare export { + default as FormatColorFill, + } from '@material-ui/icons/FormatColorFill'; + declare export { + default as FormatColorFillOutlined, + } from '@material-ui/icons/FormatColorFillOutlined'; + declare export { + default as FormatColorFillRounded, + } from '@material-ui/icons/FormatColorFillRounded'; + declare export { + default as FormatColorFillSharp, + } from '@material-ui/icons/FormatColorFillSharp'; + declare export { + default as FormatColorFillTwoTone, + } from '@material-ui/icons/FormatColorFillTwoTone'; + declare export { + default as FormatColorReset, + } from '@material-ui/icons/FormatColorReset'; + declare export { + default as FormatColorResetOutlined, + } from '@material-ui/icons/FormatColorResetOutlined'; + declare export { + default as FormatColorResetRounded, + } from '@material-ui/icons/FormatColorResetRounded'; + declare export { + default as FormatColorResetSharp, + } from '@material-ui/icons/FormatColorResetSharp'; + declare export { + default as FormatColorResetTwoTone, + } from '@material-ui/icons/FormatColorResetTwoTone'; + declare export { + default as FormatColorText, + } from '@material-ui/icons/FormatColorText'; + declare export { + default as FormatColorTextOutlined, + } from '@material-ui/icons/FormatColorTextOutlined'; + declare export { + default as FormatColorTextRounded, + } from '@material-ui/icons/FormatColorTextRounded'; + declare export { + default as FormatColorTextSharp, + } from '@material-ui/icons/FormatColorTextSharp'; + declare export { + default as FormatColorTextTwoTone, + } from '@material-ui/icons/FormatColorTextTwoTone'; + declare export { + default as FormatIndentDecrease, + } from '@material-ui/icons/FormatIndentDecrease'; + declare export { + default as FormatIndentDecreaseOutlined, + } from '@material-ui/icons/FormatIndentDecreaseOutlined'; + declare export { + default as FormatIndentDecreaseRounded, + } from '@material-ui/icons/FormatIndentDecreaseRounded'; + declare export { + default as FormatIndentDecreaseSharp, + } from '@material-ui/icons/FormatIndentDecreaseSharp'; + declare export { + default as FormatIndentDecreaseTwoTone, + } from '@material-ui/icons/FormatIndentDecreaseTwoTone'; + declare export { + default as FormatIndentIncrease, + } from '@material-ui/icons/FormatIndentIncrease'; + declare export { + default as FormatIndentIncreaseOutlined, + } from '@material-ui/icons/FormatIndentIncreaseOutlined'; + declare export { + default as FormatIndentIncreaseRounded, + } from '@material-ui/icons/FormatIndentIncreaseRounded'; + declare export { + default as FormatIndentIncreaseSharp, + } from '@material-ui/icons/FormatIndentIncreaseSharp'; + declare export { + default as FormatIndentIncreaseTwoTone, + } from '@material-ui/icons/FormatIndentIncreaseTwoTone'; + declare export { + default as FormatItalic, + } from '@material-ui/icons/FormatItalic'; + declare export { + default as FormatItalicOutlined, + } from '@material-ui/icons/FormatItalicOutlined'; + declare export { + default as FormatItalicRounded, + } from '@material-ui/icons/FormatItalicRounded'; + declare export { + default as FormatItalicSharp, + } from '@material-ui/icons/FormatItalicSharp'; + declare export { + default as FormatItalicTwoTone, + } from '@material-ui/icons/FormatItalicTwoTone'; + declare export { + default as FormatLineSpacing, + } from '@material-ui/icons/FormatLineSpacing'; + declare export { + default as FormatLineSpacingOutlined, + } from '@material-ui/icons/FormatLineSpacingOutlined'; + declare export { + default as FormatLineSpacingRounded, + } from '@material-ui/icons/FormatLineSpacingRounded'; + declare export { + default as FormatLineSpacingSharp, + } from '@material-ui/icons/FormatLineSpacingSharp'; + declare export { + default as FormatLineSpacingTwoTone, + } from '@material-ui/icons/FormatLineSpacingTwoTone'; + declare export { + default as FormatListBulleted, + } from '@material-ui/icons/FormatListBulleted'; + declare export { + default as FormatListBulletedOutlined, + } from '@material-ui/icons/FormatListBulletedOutlined'; + declare export { + default as FormatListBulletedRounded, + } from '@material-ui/icons/FormatListBulletedRounded'; + declare export { + default as FormatListBulletedSharp, + } from '@material-ui/icons/FormatListBulletedSharp'; + declare export { + default as FormatListBulletedTwoTone, + } from '@material-ui/icons/FormatListBulletedTwoTone'; + declare export { + default as FormatListNumbered, + } from '@material-ui/icons/FormatListNumbered'; + declare export { + default as FormatListNumberedOutlined, + } from '@material-ui/icons/FormatListNumberedOutlined'; + declare export { + default as FormatListNumberedRounded, + } from '@material-ui/icons/FormatListNumberedRounded'; + declare export { + default as FormatListNumberedRtl, + } from '@material-ui/icons/FormatListNumberedRtl'; + declare export { + default as FormatListNumberedRtlOutlined, + } from '@material-ui/icons/FormatListNumberedRtlOutlined'; + declare export { + default as FormatListNumberedRtlRounded, + } from '@material-ui/icons/FormatListNumberedRtlRounded'; + declare export { + default as FormatListNumberedRtlSharp, + } from '@material-ui/icons/FormatListNumberedRtlSharp'; + declare export { + default as FormatListNumberedRtlTwoTone, + } from '@material-ui/icons/FormatListNumberedRtlTwoTone'; + declare export { + default as FormatListNumberedSharp, + } from '@material-ui/icons/FormatListNumberedSharp'; + declare export { + default as FormatListNumberedTwoTone, + } from '@material-ui/icons/FormatListNumberedTwoTone'; + declare export { + default as FormatPaint, + } from '@material-ui/icons/FormatPaint'; + declare export { + default as FormatPaintOutlined, + } from '@material-ui/icons/FormatPaintOutlined'; + declare export { + default as FormatPaintRounded, + } from '@material-ui/icons/FormatPaintRounded'; + declare export { + default as FormatPaintSharp, + } from '@material-ui/icons/FormatPaintSharp'; + declare export { + default as FormatPaintTwoTone, + } from '@material-ui/icons/FormatPaintTwoTone'; + declare export { + default as FormatQuote, + } from '@material-ui/icons/FormatQuote'; + declare export { + default as FormatQuoteOutlined, + } from '@material-ui/icons/FormatQuoteOutlined'; + declare export { + default as FormatQuoteRounded, + } from '@material-ui/icons/FormatQuoteRounded'; + declare export { + default as FormatQuoteSharp, + } from '@material-ui/icons/FormatQuoteSharp'; + declare export { + default as FormatQuoteTwoTone, + } from '@material-ui/icons/FormatQuoteTwoTone'; + declare export { + default as FormatShapes, + } from '@material-ui/icons/FormatShapes'; + declare export { + default as FormatShapesOutlined, + } from '@material-ui/icons/FormatShapesOutlined'; + declare export { + default as FormatShapesRounded, + } from '@material-ui/icons/FormatShapesRounded'; + declare export { + default as FormatShapesSharp, + } from '@material-ui/icons/FormatShapesSharp'; + declare export { + default as FormatShapesTwoTone, + } from '@material-ui/icons/FormatShapesTwoTone'; + declare export { default as FormatSize } from '@material-ui/icons/FormatSize'; + declare export { + default as FormatSizeOutlined, + } from '@material-ui/icons/FormatSizeOutlined'; + declare export { + default as FormatSizeRounded, + } from '@material-ui/icons/FormatSizeRounded'; + declare export { + default as FormatSizeSharp, + } from '@material-ui/icons/FormatSizeSharp'; + declare export { + default as FormatSizeTwoTone, + } from '@material-ui/icons/FormatSizeTwoTone'; + declare export { + default as FormatStrikethrough, + } from '@material-ui/icons/FormatStrikethrough'; + declare export { + default as FormatStrikethroughOutlined, + } from '@material-ui/icons/FormatStrikethroughOutlined'; + declare export { + default as FormatStrikethroughRounded, + } from '@material-ui/icons/FormatStrikethroughRounded'; + declare export { + default as FormatStrikethroughSharp, + } from '@material-ui/icons/FormatStrikethroughSharp'; + declare export { + default as FormatStrikethroughTwoTone, + } from '@material-ui/icons/FormatStrikethroughTwoTone'; + declare export { + default as FormatTextdirectionLToR, + } from '@material-ui/icons/FormatTextdirectionLToR'; + declare export { + default as FormatTextdirectionLToROutlined, + } from '@material-ui/icons/FormatTextdirectionLToROutlined'; + declare export { + default as FormatTextdirectionLToRRounded, + } from '@material-ui/icons/FormatTextdirectionLToRRounded'; + declare export { + default as FormatTextdirectionLToRSharp, + } from '@material-ui/icons/FormatTextdirectionLToRSharp'; + declare export { + default as FormatTextdirectionLToRTwoTone, + } from '@material-ui/icons/FormatTextdirectionLToRTwoTone'; + declare export { + default as FormatTextdirectionRToL, + } from '@material-ui/icons/FormatTextdirectionRToL'; + declare export { + default as FormatTextdirectionRToLOutlined, + } from '@material-ui/icons/FormatTextdirectionRToLOutlined'; + declare export { + default as FormatTextdirectionRToLRounded, + } from '@material-ui/icons/FormatTextdirectionRToLRounded'; + declare export { + default as FormatTextdirectionRToLSharp, + } from '@material-ui/icons/FormatTextdirectionRToLSharp'; + declare export { + default as FormatTextdirectionRToLTwoTone, + } from '@material-ui/icons/FormatTextdirectionRToLTwoTone'; + declare export { + default as FormatUnderlined, + } from '@material-ui/icons/FormatUnderlined'; + declare export { + default as FormatUnderlinedOutlined, + } from '@material-ui/icons/FormatUnderlinedOutlined'; + declare export { + default as FormatUnderlinedRounded, + } from '@material-ui/icons/FormatUnderlinedRounded'; + declare export { + default as FormatUnderlinedSharp, + } from '@material-ui/icons/FormatUnderlinedSharp'; + declare export { + default as FormatUnderlinedTwoTone, + } from '@material-ui/icons/FormatUnderlinedTwoTone'; + declare export { default as Forum } from '@material-ui/icons/Forum'; + declare export { + default as ForumOutlined, + } from '@material-ui/icons/ForumOutlined'; + declare export { + default as ForumRounded, + } from '@material-ui/icons/ForumRounded'; + declare export { default as ForumSharp } from '@material-ui/icons/ForumSharp'; + declare export { + default as ForumTwoTone, + } from '@material-ui/icons/ForumTwoTone'; + declare export { default as Forward10 } from '@material-ui/icons/Forward10'; + declare export { + default as Forward10Outlined, + } from '@material-ui/icons/Forward10Outlined'; + declare export { + default as Forward10Rounded, + } from '@material-ui/icons/Forward10Rounded'; + declare export { + default as Forward10Sharp, + } from '@material-ui/icons/Forward10Sharp'; + declare export { + default as Forward10TwoTone, + } from '@material-ui/icons/Forward10TwoTone'; + declare export { default as Forward30 } from '@material-ui/icons/Forward30'; + declare export { + default as Forward30Outlined, + } from '@material-ui/icons/Forward30Outlined'; + declare export { + default as Forward30Rounded, + } from '@material-ui/icons/Forward30Rounded'; + declare export { + default as Forward30Sharp, + } from '@material-ui/icons/Forward30Sharp'; + declare export { + default as Forward30TwoTone, + } from '@material-ui/icons/Forward30TwoTone'; + declare export { default as Forward5 } from '@material-ui/icons/Forward5'; + declare export { + default as Forward5Outlined, + } from '@material-ui/icons/Forward5Outlined'; + declare export { + default as Forward5Rounded, + } from '@material-ui/icons/Forward5Rounded'; + declare export { + default as Forward5Sharp, + } from '@material-ui/icons/Forward5Sharp'; + declare export { + default as Forward5TwoTone, + } from '@material-ui/icons/Forward5TwoTone'; + declare export { default as Forward } from '@material-ui/icons/Forward'; + declare export { + default as ForwardOutlined, + } from '@material-ui/icons/ForwardOutlined'; + declare export { + default as ForwardRounded, + } from '@material-ui/icons/ForwardRounded'; + declare export { + default as ForwardSharp, + } from '@material-ui/icons/ForwardSharp'; + declare export { + default as ForwardTwoTone, + } from '@material-ui/icons/ForwardTwoTone'; + declare export { default as FourK } from '@material-ui/icons/FourK'; + declare export { + default as FourKOutlined, + } from '@material-ui/icons/FourKOutlined'; + declare export { + default as FourKRounded, + } from '@material-ui/icons/FourKRounded'; + declare export { default as FourKSharp } from '@material-ui/icons/FourKSharp'; + declare export { + default as FourKTwoTone, + } from '@material-ui/icons/FourKTwoTone'; + declare export { + default as FreeBreakfast, + } from '@material-ui/icons/FreeBreakfast'; + declare export { + default as FreeBreakfastOutlined, + } from '@material-ui/icons/FreeBreakfastOutlined'; + declare export { + default as FreeBreakfastRounded, + } from '@material-ui/icons/FreeBreakfastRounded'; + declare export { + default as FreeBreakfastSharp, + } from '@material-ui/icons/FreeBreakfastSharp'; + declare export { + default as FreeBreakfastTwoTone, + } from '@material-ui/icons/FreeBreakfastTwoTone'; + declare export { + default as FullscreenExit, + } from '@material-ui/icons/FullscreenExit'; + declare export { + default as FullscreenExitOutlined, + } from '@material-ui/icons/FullscreenExitOutlined'; + declare export { + default as FullscreenExitRounded, + } from '@material-ui/icons/FullscreenExitRounded'; + declare export { + default as FullscreenExitSharp, + } from '@material-ui/icons/FullscreenExitSharp'; + declare export { + default as FullscreenExitTwoTone, + } from '@material-ui/icons/FullscreenExitTwoTone'; + declare export { default as Fullscreen } from '@material-ui/icons/Fullscreen'; + declare export { + default as FullscreenOutlined, + } from '@material-ui/icons/FullscreenOutlined'; + declare export { + default as FullscreenRounded, + } from '@material-ui/icons/FullscreenRounded'; + declare export { + default as FullscreenSharp, + } from '@material-ui/icons/FullscreenSharp'; + declare export { + default as FullscreenTwoTone, + } from '@material-ui/icons/FullscreenTwoTone'; + declare export { default as Functions } from '@material-ui/icons/Functions'; + declare export { + default as FunctionsOutlined, + } from '@material-ui/icons/FunctionsOutlined'; + declare export { + default as FunctionsRounded, + } from '@material-ui/icons/FunctionsRounded'; + declare export { + default as FunctionsSharp, + } from '@material-ui/icons/FunctionsSharp'; + declare export { + default as FunctionsTwoTone, + } from '@material-ui/icons/FunctionsTwoTone'; + declare export { default as Gamepad } from '@material-ui/icons/Gamepad'; + declare export { + default as GamepadOutlined, + } from '@material-ui/icons/GamepadOutlined'; + declare export { + default as GamepadRounded, + } from '@material-ui/icons/GamepadRounded'; + declare export { + default as GamepadSharp, + } from '@material-ui/icons/GamepadSharp'; + declare export { + default as GamepadTwoTone, + } from '@material-ui/icons/GamepadTwoTone'; + declare export { default as Games } from '@material-ui/icons/Games'; + declare export { + default as GamesOutlined, + } from '@material-ui/icons/GamesOutlined'; + declare export { + default as GamesRounded, + } from '@material-ui/icons/GamesRounded'; + declare export { default as GamesSharp } from '@material-ui/icons/GamesSharp'; + declare export { + default as GamesTwoTone, + } from '@material-ui/icons/GamesTwoTone'; + declare export { default as Gavel } from '@material-ui/icons/Gavel'; + declare export { + default as GavelOutlined, + } from '@material-ui/icons/GavelOutlined'; + declare export { + default as GavelRounded, + } from '@material-ui/icons/GavelRounded'; + declare export { default as GavelSharp } from '@material-ui/icons/GavelSharp'; + declare export { + default as GavelTwoTone, + } from '@material-ui/icons/GavelTwoTone'; + declare export { default as Gesture } from '@material-ui/icons/Gesture'; + declare export { + default as GestureOutlined, + } from '@material-ui/icons/GestureOutlined'; + declare export { + default as GestureRounded, + } from '@material-ui/icons/GestureRounded'; + declare export { + default as GestureSharp, + } from '@material-ui/icons/GestureSharp'; + declare export { + default as GestureTwoTone, + } from '@material-ui/icons/GestureTwoTone'; + declare export { default as GetApp } from '@material-ui/icons/GetApp'; + declare export { + default as GetAppOutlined, + } from '@material-ui/icons/GetAppOutlined'; + declare export { + default as GetAppRounded, + } from '@material-ui/icons/GetAppRounded'; + declare export { + default as GetAppSharp, + } from '@material-ui/icons/GetAppSharp'; + declare export { + default as GetAppTwoTone, + } from '@material-ui/icons/GetAppTwoTone'; + declare export { default as Gif } from '@material-ui/icons/Gif'; + declare export { + default as GifOutlined, + } from '@material-ui/icons/GifOutlined'; + declare export { default as GifRounded } from '@material-ui/icons/GifRounded'; + declare export { default as GifSharp } from '@material-ui/icons/GifSharp'; + declare export { default as GifTwoTone } from '@material-ui/icons/GifTwoTone'; + declare export { default as GolfCourse } from '@material-ui/icons/GolfCourse'; + declare export { + default as GolfCourseOutlined, + } from '@material-ui/icons/GolfCourseOutlined'; + declare export { + default as GolfCourseRounded, + } from '@material-ui/icons/GolfCourseRounded'; + declare export { + default as GolfCourseSharp, + } from '@material-ui/icons/GolfCourseSharp'; + declare export { + default as GolfCourseTwoTone, + } from '@material-ui/icons/GolfCourseTwoTone'; + declare export { default as GpsFixed } from '@material-ui/icons/GpsFixed'; + declare export { + default as GpsFixedOutlined, + } from '@material-ui/icons/GpsFixedOutlined'; + declare export { + default as GpsFixedRounded, + } from '@material-ui/icons/GpsFixedRounded'; + declare export { + default as GpsFixedSharp, + } from '@material-ui/icons/GpsFixedSharp'; + declare export { + default as GpsFixedTwoTone, + } from '@material-ui/icons/GpsFixedTwoTone'; + declare export { + default as GpsNotFixed, + } from '@material-ui/icons/GpsNotFixed'; + declare export { + default as GpsNotFixedOutlined, + } from '@material-ui/icons/GpsNotFixedOutlined'; + declare export { + default as GpsNotFixedRounded, + } from '@material-ui/icons/GpsNotFixedRounded'; + declare export { + default as GpsNotFixedSharp, + } from '@material-ui/icons/GpsNotFixedSharp'; + declare export { + default as GpsNotFixedTwoTone, + } from '@material-ui/icons/GpsNotFixedTwoTone'; + declare export { default as GpsOff } from '@material-ui/icons/GpsOff'; + declare export { + default as GpsOffOutlined, + } from '@material-ui/icons/GpsOffOutlined'; + declare export { + default as GpsOffRounded, + } from '@material-ui/icons/GpsOffRounded'; + declare export { + default as GpsOffSharp, + } from '@material-ui/icons/GpsOffSharp'; + declare export { + default as GpsOffTwoTone, + } from '@material-ui/icons/GpsOffTwoTone'; + declare export { default as Grade } from '@material-ui/icons/Grade'; + declare export { + default as GradeOutlined, + } from '@material-ui/icons/GradeOutlined'; + declare export { + default as GradeRounded, + } from '@material-ui/icons/GradeRounded'; + declare export { default as GradeSharp } from '@material-ui/icons/GradeSharp'; + declare export { + default as GradeTwoTone, + } from '@material-ui/icons/GradeTwoTone'; + declare export { default as Gradient } from '@material-ui/icons/Gradient'; + declare export { + default as GradientOutlined, + } from '@material-ui/icons/GradientOutlined'; + declare export { + default as GradientRounded, + } from '@material-ui/icons/GradientRounded'; + declare export { + default as GradientSharp, + } from '@material-ui/icons/GradientSharp'; + declare export { + default as GradientTwoTone, + } from '@material-ui/icons/GradientTwoTone'; + declare export { default as Grain } from '@material-ui/icons/Grain'; + declare export { + default as GrainOutlined, + } from '@material-ui/icons/GrainOutlined'; + declare export { + default as GrainRounded, + } from '@material-ui/icons/GrainRounded'; + declare export { default as GrainSharp } from '@material-ui/icons/GrainSharp'; + declare export { + default as GrainTwoTone, + } from '@material-ui/icons/GrainTwoTone'; + declare export { default as GraphicEq } from '@material-ui/icons/GraphicEq'; + declare export { + default as GraphicEqOutlined, + } from '@material-ui/icons/GraphicEqOutlined'; + declare export { + default as GraphicEqRounded, + } from '@material-ui/icons/GraphicEqRounded'; + declare export { + default as GraphicEqSharp, + } from '@material-ui/icons/GraphicEqSharp'; + declare export { + default as GraphicEqTwoTone, + } from '@material-ui/icons/GraphicEqTwoTone'; + declare export { default as GridOff } from '@material-ui/icons/GridOff'; + declare export { + default as GridOffOutlined, + } from '@material-ui/icons/GridOffOutlined'; + declare export { + default as GridOffRounded, + } from '@material-ui/icons/GridOffRounded'; + declare export { + default as GridOffSharp, + } from '@material-ui/icons/GridOffSharp'; + declare export { + default as GridOffTwoTone, + } from '@material-ui/icons/GridOffTwoTone'; + declare export { default as GridOn } from '@material-ui/icons/GridOn'; + declare export { + default as GridOnOutlined, + } from '@material-ui/icons/GridOnOutlined'; + declare export { + default as GridOnRounded, + } from '@material-ui/icons/GridOnRounded'; + declare export { + default as GridOnSharp, + } from '@material-ui/icons/GridOnSharp'; + declare export { + default as GridOnTwoTone, + } from '@material-ui/icons/GridOnTwoTone'; + declare export { default as GroupAdd } from '@material-ui/icons/GroupAdd'; + declare export { + default as GroupAddOutlined, + } from '@material-ui/icons/GroupAddOutlined'; + declare export { + default as GroupAddRounded, + } from '@material-ui/icons/GroupAddRounded'; + declare export { + default as GroupAddSharp, + } from '@material-ui/icons/GroupAddSharp'; + declare export { + default as GroupAddTwoTone, + } from '@material-ui/icons/GroupAddTwoTone'; + declare export { default as Group } from '@material-ui/icons/Group'; + declare export { + default as GroupOutlined, + } from '@material-ui/icons/GroupOutlined'; + declare export { + default as GroupRounded, + } from '@material-ui/icons/GroupRounded'; + declare export { default as GroupSharp } from '@material-ui/icons/GroupSharp'; + declare export { + default as GroupTwoTone, + } from '@material-ui/icons/GroupTwoTone'; + declare export { default as GroupWork } from '@material-ui/icons/GroupWork'; + declare export { + default as GroupWorkOutlined, + } from '@material-ui/icons/GroupWorkOutlined'; + declare export { + default as GroupWorkRounded, + } from '@material-ui/icons/GroupWorkRounded'; + declare export { + default as GroupWorkSharp, + } from '@material-ui/icons/GroupWorkSharp'; + declare export { + default as GroupWorkTwoTone, + } from '@material-ui/icons/GroupWorkTwoTone'; + declare export { default as GTranslate } from '@material-ui/icons/GTranslate'; + declare export { + default as GTranslateOutlined, + } from '@material-ui/icons/GTranslateOutlined'; + declare export { + default as GTranslateRounded, + } from '@material-ui/icons/GTranslateRounded'; + declare export { + default as GTranslateSharp, + } from '@material-ui/icons/GTranslateSharp'; + declare export { + default as GTranslateTwoTone, + } from '@material-ui/icons/GTranslateTwoTone'; + declare export { default as Hd } from '@material-ui/icons/Hd'; + declare export { default as HdOutlined } from '@material-ui/icons/HdOutlined'; + declare export { default as HdrOff } from '@material-ui/icons/HdrOff'; + declare export { + default as HdrOffOutlined, + } from '@material-ui/icons/HdrOffOutlined'; + declare export { + default as HdrOffRounded, + } from '@material-ui/icons/HdrOffRounded'; + declare export { + default as HdrOffSharp, + } from '@material-ui/icons/HdrOffSharp'; + declare export { + default as HdrOffTwoTone, + } from '@material-ui/icons/HdrOffTwoTone'; + declare export { default as HdrOn } from '@material-ui/icons/HdrOn'; + declare export { + default as HdrOnOutlined, + } from '@material-ui/icons/HdrOnOutlined'; + declare export { + default as HdrOnRounded, + } from '@material-ui/icons/HdrOnRounded'; + declare export { default as HdrOnSharp } from '@material-ui/icons/HdrOnSharp'; + declare export { + default as HdrOnTwoTone, + } from '@material-ui/icons/HdrOnTwoTone'; + declare export { default as HdRounded } from '@material-ui/icons/HdRounded'; + declare export { default as HdrStrong } from '@material-ui/icons/HdrStrong'; + declare export { + default as HdrStrongOutlined, + } from '@material-ui/icons/HdrStrongOutlined'; + declare export { + default as HdrStrongRounded, + } from '@material-ui/icons/HdrStrongRounded'; + declare export { + default as HdrStrongSharp, + } from '@material-ui/icons/HdrStrongSharp'; + declare export { + default as HdrStrongTwoTone, + } from '@material-ui/icons/HdrStrongTwoTone'; + declare export { default as HdrWeak } from '@material-ui/icons/HdrWeak'; + declare export { + default as HdrWeakOutlined, + } from '@material-ui/icons/HdrWeakOutlined'; + declare export { + default as HdrWeakRounded, + } from '@material-ui/icons/HdrWeakRounded'; + declare export { + default as HdrWeakSharp, + } from '@material-ui/icons/HdrWeakSharp'; + declare export { + default as HdrWeakTwoTone, + } from '@material-ui/icons/HdrWeakTwoTone'; + declare export { default as HdSharp } from '@material-ui/icons/HdSharp'; + declare export { default as HdTwoTone } from '@material-ui/icons/HdTwoTone'; + declare export { default as Headset } from '@material-ui/icons/Headset'; + declare export { default as HeadsetMic } from '@material-ui/icons/HeadsetMic'; + declare export { + default as HeadsetMicOutlined, + } from '@material-ui/icons/HeadsetMicOutlined'; + declare export { + default as HeadsetMicRounded, + } from '@material-ui/icons/HeadsetMicRounded'; + declare export { + default as HeadsetMicSharp, + } from '@material-ui/icons/HeadsetMicSharp'; + declare export { + default as HeadsetMicTwoTone, + } from '@material-ui/icons/HeadsetMicTwoTone'; + declare export { + default as HeadsetOutlined, + } from '@material-ui/icons/HeadsetOutlined'; + declare export { + default as HeadsetRounded, + } from '@material-ui/icons/HeadsetRounded'; + declare export { + default as HeadsetSharp, + } from '@material-ui/icons/HeadsetSharp'; + declare export { + default as HeadsetTwoTone, + } from '@material-ui/icons/HeadsetTwoTone'; + declare export { default as Healing } from '@material-ui/icons/Healing'; + declare export { + default as HealingOutlined, + } from '@material-ui/icons/HealingOutlined'; + declare export { + default as HealingRounded, + } from '@material-ui/icons/HealingRounded'; + declare export { + default as HealingSharp, + } from '@material-ui/icons/HealingSharp'; + declare export { + default as HealingTwoTone, + } from '@material-ui/icons/HealingTwoTone'; + declare export { default as Hearing } from '@material-ui/icons/Hearing'; + declare export { + default as HearingOutlined, + } from '@material-ui/icons/HearingOutlined'; + declare export { + default as HearingRounded, + } from '@material-ui/icons/HearingRounded'; + declare export { + default as HearingSharp, + } from '@material-ui/icons/HearingSharp'; + declare export { + default as HearingTwoTone, + } from '@material-ui/icons/HearingTwoTone'; + declare export { default as Help } from '@material-ui/icons/Help'; + declare export { + default as HelpOutlined, + } from '@material-ui/icons/HelpOutlined'; + declare export { + default as HelpOutline, + } from '@material-ui/icons/HelpOutline'; + declare export { + default as HelpOutlineOutlined, + } from '@material-ui/icons/HelpOutlineOutlined'; + declare export { + default as HelpOutlineRounded, + } from '@material-ui/icons/HelpOutlineRounded'; + declare export { + default as HelpOutlineSharp, + } from '@material-ui/icons/HelpOutlineSharp'; + declare export { + default as HelpOutlineTwoTone, + } from '@material-ui/icons/HelpOutlineTwoTone'; + declare export { + default as HelpRounded, + } from '@material-ui/icons/HelpRounded'; + declare export { default as HelpSharp } from '@material-ui/icons/HelpSharp'; + declare export { + default as HelpTwoTone, + } from '@material-ui/icons/HelpTwoTone'; + declare export { default as Highlight } from '@material-ui/icons/Highlight'; + declare export { + default as HighlightOff, + } from '@material-ui/icons/HighlightOff'; + declare export { + default as HighlightOffOutlined, + } from '@material-ui/icons/HighlightOffOutlined'; + declare export { + default as HighlightOffRounded, + } from '@material-ui/icons/HighlightOffRounded'; + declare export { + default as HighlightOffSharp, + } from '@material-ui/icons/HighlightOffSharp'; + declare export { + default as HighlightOffTwoTone, + } from '@material-ui/icons/HighlightOffTwoTone'; + declare export { + default as HighlightOutlined, + } from '@material-ui/icons/HighlightOutlined'; + declare export { + default as HighlightRounded, + } from '@material-ui/icons/HighlightRounded'; + declare export { + default as HighlightSharp, + } from '@material-ui/icons/HighlightSharp'; + declare export { + default as HighlightTwoTone, + } from '@material-ui/icons/HighlightTwoTone'; + declare export { + default as HighQuality, + } from '@material-ui/icons/HighQuality'; + declare export { + default as HighQualityOutlined, + } from '@material-ui/icons/HighQualityOutlined'; + declare export { + default as HighQualityRounded, + } from '@material-ui/icons/HighQualityRounded'; + declare export { + default as HighQualitySharp, + } from '@material-ui/icons/HighQualitySharp'; + declare export { + default as HighQualityTwoTone, + } from '@material-ui/icons/HighQualityTwoTone'; + declare export { default as History } from '@material-ui/icons/History'; + declare export { + default as HistoryOutlined, + } from '@material-ui/icons/HistoryOutlined'; + declare export { + default as HistoryRounded, + } from '@material-ui/icons/HistoryRounded'; + declare export { + default as HistorySharp, + } from '@material-ui/icons/HistorySharp'; + declare export { + default as HistoryTwoTone, + } from '@material-ui/icons/HistoryTwoTone'; + declare export { default as Home } from '@material-ui/icons/Home'; + declare export { + default as HomeOutlined, + } from '@material-ui/icons/HomeOutlined'; + declare export { + default as HomeRounded, + } from '@material-ui/icons/HomeRounded'; + declare export { default as HomeSharp } from '@material-ui/icons/HomeSharp'; + declare export { + default as HomeTwoTone, + } from '@material-ui/icons/HomeTwoTone'; + declare export { + default as HorizontalSplit, + } from '@material-ui/icons/HorizontalSplit'; + declare export { + default as HorizontalSplitOutlined, + } from '@material-ui/icons/HorizontalSplitOutlined'; + declare export { + default as HorizontalSplitRounded, + } from '@material-ui/icons/HorizontalSplitRounded'; + declare export { + default as HorizontalSplitSharp, + } from '@material-ui/icons/HorizontalSplitSharp'; + declare export { + default as HorizontalSplitTwoTone, + } from '@material-ui/icons/HorizontalSplitTwoTone'; + declare export { default as Hotel } from '@material-ui/icons/Hotel'; + declare export { + default as HotelOutlined, + } from '@material-ui/icons/HotelOutlined'; + declare export { + default as HotelRounded, + } from '@material-ui/icons/HotelRounded'; + declare export { default as HotelSharp } from '@material-ui/icons/HotelSharp'; + declare export { + default as HotelTwoTone, + } from '@material-ui/icons/HotelTwoTone'; + declare export { default as HotTub } from '@material-ui/icons/HotTub'; + declare export { + default as HotTubOutlined, + } from '@material-ui/icons/HotTubOutlined'; + declare export { + default as HotTubRounded, + } from '@material-ui/icons/HotTubRounded'; + declare export { + default as HotTubSharp, + } from '@material-ui/icons/HotTubSharp'; + declare export { + default as HotTubTwoTone, + } from '@material-ui/icons/HotTubTwoTone'; + declare export { + default as HourglassEmpty, + } from '@material-ui/icons/HourglassEmpty'; + declare export { + default as HourglassEmptyOutlined, + } from '@material-ui/icons/HourglassEmptyOutlined'; + declare export { + default as HourglassEmptyRounded, + } from '@material-ui/icons/HourglassEmptyRounded'; + declare export { + default as HourglassEmptySharp, + } from '@material-ui/icons/HourglassEmptySharp'; + declare export { + default as HourglassEmptyTwoTone, + } from '@material-ui/icons/HourglassEmptyTwoTone'; + declare export { + default as HourglassFull, + } from '@material-ui/icons/HourglassFull'; + declare export { + default as HourglassFullOutlined, + } from '@material-ui/icons/HourglassFullOutlined'; + declare export { + default as HourglassFullRounded, + } from '@material-ui/icons/HourglassFullRounded'; + declare export { + default as HourglassFullSharp, + } from '@material-ui/icons/HourglassFullSharp'; + declare export { + default as HourglassFullTwoTone, + } from '@material-ui/icons/HourglassFullTwoTone'; + declare export { default as HowToReg } from '@material-ui/icons/HowToReg'; + declare export { + default as HowToRegOutlined, + } from '@material-ui/icons/HowToRegOutlined'; + declare export { + default as HowToRegRounded, + } from '@material-ui/icons/HowToRegRounded'; + declare export { + default as HowToRegSharp, + } from '@material-ui/icons/HowToRegSharp'; + declare export { + default as HowToRegTwoTone, + } from '@material-ui/icons/HowToRegTwoTone'; + declare export { default as HowToVote } from '@material-ui/icons/HowToVote'; + declare export { + default as HowToVoteOutlined, + } from '@material-ui/icons/HowToVoteOutlined'; + declare export { + default as HowToVoteRounded, + } from '@material-ui/icons/HowToVoteRounded'; + declare export { + default as HowToVoteSharp, + } from '@material-ui/icons/HowToVoteSharp'; + declare export { + default as HowToVoteTwoTone, + } from '@material-ui/icons/HowToVoteTwoTone'; + declare export { default as Http } from '@material-ui/icons/Http'; + declare export { + default as HttpOutlined, + } from '@material-ui/icons/HttpOutlined'; + declare export { + default as HttpRounded, + } from '@material-ui/icons/HttpRounded'; + declare export { default as HttpSharp } from '@material-ui/icons/HttpSharp'; + declare export { default as Https } from '@material-ui/icons/Https'; + declare export { + default as HttpsOutlined, + } from '@material-ui/icons/HttpsOutlined'; + declare export { + default as HttpsRounded, + } from '@material-ui/icons/HttpsRounded'; + declare export { default as HttpsSharp } from '@material-ui/icons/HttpsSharp'; + declare export { + default as HttpsTwoTone, + } from '@material-ui/icons/HttpsTwoTone'; + declare export { + default as HttpTwoTone, + } from '@material-ui/icons/HttpTwoTone'; + declare export { + default as ImageAspectRatio, + } from '@material-ui/icons/ImageAspectRatio'; + declare export { + default as ImageAspectRatioOutlined, + } from '@material-ui/icons/ImageAspectRatioOutlined'; + declare export { + default as ImageAspectRatioRounded, + } from '@material-ui/icons/ImageAspectRatioRounded'; + declare export { + default as ImageAspectRatioSharp, + } from '@material-ui/icons/ImageAspectRatioSharp'; + declare export { + default as ImageAspectRatioTwoTone, + } from '@material-ui/icons/ImageAspectRatioTwoTone'; + declare export { default as Image } from '@material-ui/icons/Image'; + declare export { + default as ImageOutlined, + } from '@material-ui/icons/ImageOutlined'; + declare export { + default as ImageRounded, + } from '@material-ui/icons/ImageRounded'; + declare export { + default as ImageSearch, + } from '@material-ui/icons/ImageSearch'; + declare export { + default as ImageSearchOutlined, + } from '@material-ui/icons/ImageSearchOutlined'; + declare export { + default as ImageSearchRounded, + } from '@material-ui/icons/ImageSearchRounded'; + declare export { + default as ImageSearchSharp, + } from '@material-ui/icons/ImageSearchSharp'; + declare export { + default as ImageSearchTwoTone, + } from '@material-ui/icons/ImageSearchTwoTone'; + declare export { default as ImageSharp } from '@material-ui/icons/ImageSharp'; + declare export { + default as ImageTwoTone, + } from '@material-ui/icons/ImageTwoTone'; + declare export { + default as ImportantDevices, + } from '@material-ui/icons/ImportantDevices'; + declare export { + default as ImportantDevicesOutlined, + } from '@material-ui/icons/ImportantDevicesOutlined'; + declare export { + default as ImportantDevicesRounded, + } from '@material-ui/icons/ImportantDevicesRounded'; + declare export { + default as ImportantDevicesSharp, + } from '@material-ui/icons/ImportantDevicesSharp'; + declare export { + default as ImportantDevicesTwoTone, + } from '@material-ui/icons/ImportantDevicesTwoTone'; + declare export { + default as ImportContacts, + } from '@material-ui/icons/ImportContacts'; + declare export { + default as ImportContactsOutlined, + } from '@material-ui/icons/ImportContactsOutlined'; + declare export { + default as ImportContactsRounded, + } from '@material-ui/icons/ImportContactsRounded'; + declare export { + default as ImportContactsSharp, + } from '@material-ui/icons/ImportContactsSharp'; + declare export { + default as ImportContactsTwoTone, + } from '@material-ui/icons/ImportContactsTwoTone'; + declare export { + default as ImportExport, + } from '@material-ui/icons/ImportExport'; + declare export { + default as ImportExportOutlined, + } from '@material-ui/icons/ImportExportOutlined'; + declare export { + default as ImportExportRounded, + } from '@material-ui/icons/ImportExportRounded'; + declare export { + default as ImportExportSharp, + } from '@material-ui/icons/ImportExportSharp'; + declare export { + default as ImportExportTwoTone, + } from '@material-ui/icons/ImportExportTwoTone'; + declare export { default as Inbox } from '@material-ui/icons/Inbox'; + declare export { + default as InboxOutlined, + } from '@material-ui/icons/InboxOutlined'; + declare export { + default as InboxRounded, + } from '@material-ui/icons/InboxRounded'; + declare export { default as InboxSharp } from '@material-ui/icons/InboxSharp'; + declare export { + default as InboxTwoTone, + } from '@material-ui/icons/InboxTwoTone'; + declare export { + default as IndeterminateCheckBox, + } from '@material-ui/icons/IndeterminateCheckBox'; + declare export { + default as IndeterminateCheckBoxOutlined, + } from '@material-ui/icons/IndeterminateCheckBoxOutlined'; + declare export { + default as IndeterminateCheckBoxRounded, + } from '@material-ui/icons/IndeterminateCheckBoxRounded'; + declare export { + default as IndeterminateCheckBoxSharp, + } from '@material-ui/icons/IndeterminateCheckBoxSharp'; + declare export { + default as IndeterminateCheckBoxTwoTone, + } from '@material-ui/icons/IndeterminateCheckBoxTwoTone'; + declare export { default as index } from '@material-ui/icons/index'; + declare export { default as Info } from '@material-ui/icons/Info'; + declare export { + default as InfoOutlined, + } from '@material-ui/icons/InfoOutlined'; + declare export { + default as InfoRounded, + } from '@material-ui/icons/InfoRounded'; + declare export { default as InfoSharp } from '@material-ui/icons/InfoSharp'; + declare export { + default as InfoTwoTone, + } from '@material-ui/icons/InfoTwoTone'; + declare export { default as Input } from '@material-ui/icons/Input'; + declare export { + default as InputOutlined, + } from '@material-ui/icons/InputOutlined'; + declare export { + default as InputRounded, + } from '@material-ui/icons/InputRounded'; + declare export { default as InputSharp } from '@material-ui/icons/InputSharp'; + declare export { + default as InputTwoTone, + } from '@material-ui/icons/InputTwoTone'; + declare export { + default as InsertChart, + } from '@material-ui/icons/InsertChart'; + declare export { + default as InsertChartOutlined, + } from '@material-ui/icons/InsertChartOutlined'; + declare export { + default as InsertChartOutlinedOutlined, + } from '@material-ui/icons/InsertChartOutlinedOutlined'; + declare export { + default as InsertChartOutlinedRounded, + } from '@material-ui/icons/InsertChartOutlinedRounded'; + declare export { + default as InsertChartOutlinedSharp, + } from '@material-ui/icons/InsertChartOutlinedSharp'; + declare export { + default as InsertChartOutlinedTwoTone, + } from '@material-ui/icons/InsertChartOutlinedTwoTone'; + declare export { + default as InsertChartRounded, + } from '@material-ui/icons/InsertChartRounded'; + declare export { + default as InsertChartSharp, + } from '@material-ui/icons/InsertChartSharp'; + declare export { + default as InsertChartTwoTone, + } from '@material-ui/icons/InsertChartTwoTone'; + declare export { + default as InsertComment, + } from '@material-ui/icons/InsertComment'; + declare export { + default as InsertCommentOutlined, + } from '@material-ui/icons/InsertCommentOutlined'; + declare export { + default as InsertCommentRounded, + } from '@material-ui/icons/InsertCommentRounded'; + declare export { + default as InsertCommentSharp, + } from '@material-ui/icons/InsertCommentSharp'; + declare export { + default as InsertCommentTwoTone, + } from '@material-ui/icons/InsertCommentTwoTone'; + declare export { + default as InsertDriveFile, + } from '@material-ui/icons/InsertDriveFile'; + declare export { + default as InsertDriveFileOutlined, + } from '@material-ui/icons/InsertDriveFileOutlined'; + declare export { + default as InsertDriveFileRounded, + } from '@material-ui/icons/InsertDriveFileRounded'; + declare export { + default as InsertDriveFileSharp, + } from '@material-ui/icons/InsertDriveFileSharp'; + declare export { + default as InsertDriveFileTwoTone, + } from '@material-ui/icons/InsertDriveFileTwoTone'; + declare export { + default as InsertEmoticon, + } from '@material-ui/icons/InsertEmoticon'; + declare export { + default as InsertEmoticonOutlined, + } from '@material-ui/icons/InsertEmoticonOutlined'; + declare export { + default as InsertEmoticonRounded, + } from '@material-ui/icons/InsertEmoticonRounded'; + declare export { + default as InsertEmoticonSharp, + } from '@material-ui/icons/InsertEmoticonSharp'; + declare export { + default as InsertEmoticonTwoTone, + } from '@material-ui/icons/InsertEmoticonTwoTone'; + declare export { + default as InsertInvitation, + } from '@material-ui/icons/InsertInvitation'; + declare export { + default as InsertInvitationOutlined, + } from '@material-ui/icons/InsertInvitationOutlined'; + declare export { + default as InsertInvitationRounded, + } from '@material-ui/icons/InsertInvitationRounded'; + declare export { + default as InsertInvitationSharp, + } from '@material-ui/icons/InsertInvitationSharp'; + declare export { + default as InsertInvitationTwoTone, + } from '@material-ui/icons/InsertInvitationTwoTone'; + declare export { default as InsertLink } from '@material-ui/icons/InsertLink'; + declare export { + default as InsertLinkOutlined, + } from '@material-ui/icons/InsertLinkOutlined'; + declare export { + default as InsertLinkRounded, + } from '@material-ui/icons/InsertLinkRounded'; + declare export { + default as InsertLinkSharp, + } from '@material-ui/icons/InsertLinkSharp'; + declare export { + default as InsertLinkTwoTone, + } from '@material-ui/icons/InsertLinkTwoTone'; + declare export { + default as InsertPhoto, + } from '@material-ui/icons/InsertPhoto'; + declare export { + default as InsertPhotoOutlined, + } from '@material-ui/icons/InsertPhotoOutlined'; + declare export { + default as InsertPhotoRounded, + } from '@material-ui/icons/InsertPhotoRounded'; + declare export { + default as InsertPhotoSharp, + } from '@material-ui/icons/InsertPhotoSharp'; + declare export { + default as InsertPhotoTwoTone, + } from '@material-ui/icons/InsertPhotoTwoTone'; + declare export { + default as InvertColors, + } from '@material-ui/icons/InvertColors'; + declare export { + default as InvertColorsOff, + } from '@material-ui/icons/InvertColorsOff'; + declare export { + default as InvertColorsOffOutlined, + } from '@material-ui/icons/InvertColorsOffOutlined'; + declare export { + default as InvertColorsOffRounded, + } from '@material-ui/icons/InvertColorsOffRounded'; + declare export { + default as InvertColorsOffSharp, + } from '@material-ui/icons/InvertColorsOffSharp'; + declare export { + default as InvertColorsOffTwoTone, + } from '@material-ui/icons/InvertColorsOffTwoTone'; + declare export { + default as InvertColorsOutlined, + } from '@material-ui/icons/InvertColorsOutlined'; + declare export { + default as InvertColorsRounded, + } from '@material-ui/icons/InvertColorsRounded'; + declare export { + default as InvertColorsSharp, + } from '@material-ui/icons/InvertColorsSharp'; + declare export { + default as InvertColorsTwoTone, + } from '@material-ui/icons/InvertColorsTwoTone'; + declare export { default as Iso } from '@material-ui/icons/Iso'; + declare export { + default as IsoOutlined, + } from '@material-ui/icons/IsoOutlined'; + declare export { default as IsoRounded } from '@material-ui/icons/IsoRounded'; + declare export { default as IsoSharp } from '@material-ui/icons/IsoSharp'; + declare export { default as IsoTwoTone } from '@material-ui/icons/IsoTwoTone'; + declare export { + default as KeyboardArrowDown, + } from '@material-ui/icons/KeyboardArrowDown'; + declare export { + default as KeyboardArrowDownOutlined, + } from '@material-ui/icons/KeyboardArrowDownOutlined'; + declare export { + default as KeyboardArrowDownRounded, + } from '@material-ui/icons/KeyboardArrowDownRounded'; + declare export { + default as KeyboardArrowDownSharp, + } from '@material-ui/icons/KeyboardArrowDownSharp'; + declare export { + default as KeyboardArrowDownTwoTone, + } from '@material-ui/icons/KeyboardArrowDownTwoTone'; + declare export { + default as KeyboardArrowLeft, + } from '@material-ui/icons/KeyboardArrowLeft'; + declare export { + default as KeyboardArrowLeftOutlined, + } from '@material-ui/icons/KeyboardArrowLeftOutlined'; + declare export { + default as KeyboardArrowLeftRounded, + } from '@material-ui/icons/KeyboardArrowLeftRounded'; + declare export { + default as KeyboardArrowLeftSharp, + } from '@material-ui/icons/KeyboardArrowLeftSharp'; + declare export { + default as KeyboardArrowLeftTwoTone, + } from '@material-ui/icons/KeyboardArrowLeftTwoTone'; + declare export { + default as KeyboardArrowRight, + } from '@material-ui/icons/KeyboardArrowRight'; + declare export { + default as KeyboardArrowRightOutlined, + } from '@material-ui/icons/KeyboardArrowRightOutlined'; + declare export { + default as KeyboardArrowRightRounded, + } from '@material-ui/icons/KeyboardArrowRightRounded'; + declare export { + default as KeyboardArrowRightSharp, + } from '@material-ui/icons/KeyboardArrowRightSharp'; + declare export { + default as KeyboardArrowRightTwoTone, + } from '@material-ui/icons/KeyboardArrowRightTwoTone'; + declare export { + default as KeyboardArrowUp, + } from '@material-ui/icons/KeyboardArrowUp'; + declare export { + default as KeyboardArrowUpOutlined, + } from '@material-ui/icons/KeyboardArrowUpOutlined'; + declare export { + default as KeyboardArrowUpRounded, + } from '@material-ui/icons/KeyboardArrowUpRounded'; + declare export { + default as KeyboardArrowUpSharp, + } from '@material-ui/icons/KeyboardArrowUpSharp'; + declare export { + default as KeyboardArrowUpTwoTone, + } from '@material-ui/icons/KeyboardArrowUpTwoTone'; + declare export { + default as KeyboardBackspace, + } from '@material-ui/icons/KeyboardBackspace'; + declare export { + default as KeyboardBackspaceOutlined, + } from '@material-ui/icons/KeyboardBackspaceOutlined'; + declare export { + default as KeyboardBackspaceRounded, + } from '@material-ui/icons/KeyboardBackspaceRounded'; + declare export { + default as KeyboardBackspaceSharp, + } from '@material-ui/icons/KeyboardBackspaceSharp'; + declare export { + default as KeyboardBackspaceTwoTone, + } from '@material-ui/icons/KeyboardBackspaceTwoTone'; + declare export { + default as KeyboardCapslock, + } from '@material-ui/icons/KeyboardCapslock'; + declare export { + default as KeyboardCapslockOutlined, + } from '@material-ui/icons/KeyboardCapslockOutlined'; + declare export { + default as KeyboardCapslockRounded, + } from '@material-ui/icons/KeyboardCapslockRounded'; + declare export { + default as KeyboardCapslockSharp, + } from '@material-ui/icons/KeyboardCapslockSharp'; + declare export { + default as KeyboardCapslockTwoTone, + } from '@material-ui/icons/KeyboardCapslockTwoTone'; + declare export { + default as KeyboardHide, + } from '@material-ui/icons/KeyboardHide'; + declare export { + default as KeyboardHideOutlined, + } from '@material-ui/icons/KeyboardHideOutlined'; + declare export { + default as KeyboardHideRounded, + } from '@material-ui/icons/KeyboardHideRounded'; + declare export { + default as KeyboardHideSharp, + } from '@material-ui/icons/KeyboardHideSharp'; + declare export { + default as KeyboardHideTwoTone, + } from '@material-ui/icons/KeyboardHideTwoTone'; + declare export { default as Keyboard } from '@material-ui/icons/Keyboard'; + declare export { + default as KeyboardOutlined, + } from '@material-ui/icons/KeyboardOutlined'; + declare export { + default as KeyboardReturn, + } from '@material-ui/icons/KeyboardReturn'; + declare export { + default as KeyboardReturnOutlined, + } from '@material-ui/icons/KeyboardReturnOutlined'; + declare export { + default as KeyboardReturnRounded, + } from '@material-ui/icons/KeyboardReturnRounded'; + declare export { + default as KeyboardReturnSharp, + } from '@material-ui/icons/KeyboardReturnSharp'; + declare export { + default as KeyboardReturnTwoTone, + } from '@material-ui/icons/KeyboardReturnTwoTone'; + declare export { + default as KeyboardRounded, + } from '@material-ui/icons/KeyboardRounded'; + declare export { + default as KeyboardSharp, + } from '@material-ui/icons/KeyboardSharp'; + declare export { + default as KeyboardTab, + } from '@material-ui/icons/KeyboardTab'; + declare export { + default as KeyboardTabOutlined, + } from '@material-ui/icons/KeyboardTabOutlined'; + declare export { + default as KeyboardTabRounded, + } from '@material-ui/icons/KeyboardTabRounded'; + declare export { + default as KeyboardTabSharp, + } from '@material-ui/icons/KeyboardTabSharp'; + declare export { + default as KeyboardTabTwoTone, + } from '@material-ui/icons/KeyboardTabTwoTone'; + declare export { + default as KeyboardTwoTone, + } from '@material-ui/icons/KeyboardTwoTone'; + declare export { + default as KeyboardVoice, + } from '@material-ui/icons/KeyboardVoice'; + declare export { + default as KeyboardVoiceOutlined, + } from '@material-ui/icons/KeyboardVoiceOutlined'; + declare export { + default as KeyboardVoiceRounded, + } from '@material-ui/icons/KeyboardVoiceRounded'; + declare export { + default as KeyboardVoiceSharp, + } from '@material-ui/icons/KeyboardVoiceSharp'; + declare export { + default as KeyboardVoiceTwoTone, + } from '@material-ui/icons/KeyboardVoiceTwoTone'; + declare export { default as Kitchen } from '@material-ui/icons/Kitchen'; + declare export { + default as KitchenOutlined, + } from '@material-ui/icons/KitchenOutlined'; + declare export { + default as KitchenRounded, + } from '@material-ui/icons/KitchenRounded'; + declare export { + default as KitchenSharp, + } from '@material-ui/icons/KitchenSharp'; + declare export { + default as KitchenTwoTone, + } from '@material-ui/icons/KitchenTwoTone'; + declare export { + default as LabelImportant, + } from '@material-ui/icons/LabelImportant'; + declare export { + default as LabelImportantOutlined, + } from '@material-ui/icons/LabelImportantOutlined'; + declare export { + default as LabelImportantRounded, + } from '@material-ui/icons/LabelImportantRounded'; + declare export { + default as LabelImportantSharp, + } from '@material-ui/icons/LabelImportantSharp'; + declare export { + default as LabelImportantTwoTone, + } from '@material-ui/icons/LabelImportantTwoTone'; + declare export { default as Label } from '@material-ui/icons/Label'; + declare export { default as LabelOff } from '@material-ui/icons/LabelOff'; + declare export { + default as LabelOffOutlined, + } from '@material-ui/icons/LabelOffOutlined'; + declare export { + default as LabelOffRounded, + } from '@material-ui/icons/LabelOffRounded'; + declare export { + default as LabelOffSharp, + } from '@material-ui/icons/LabelOffSharp'; + declare export { + default as LabelOffTwoTone, + } from '@material-ui/icons/LabelOffTwoTone'; + declare export { + default as LabelOutlined, + } from '@material-ui/icons/LabelOutlined'; + declare export { + default as LabelRounded, + } from '@material-ui/icons/LabelRounded'; + declare export { default as LabelSharp } from '@material-ui/icons/LabelSharp'; + declare export { + default as LabelTwoTone, + } from '@material-ui/icons/LabelTwoTone'; + declare export { default as Landscape } from '@material-ui/icons/Landscape'; + declare export { + default as LandscapeOutlined, + } from '@material-ui/icons/LandscapeOutlined'; + declare export { + default as LandscapeRounded, + } from '@material-ui/icons/LandscapeRounded'; + declare export { + default as LandscapeSharp, + } from '@material-ui/icons/LandscapeSharp'; + declare export { + default as LandscapeTwoTone, + } from '@material-ui/icons/LandscapeTwoTone'; + declare export { default as Language } from '@material-ui/icons/Language'; + declare export { + default as LanguageOutlined, + } from '@material-ui/icons/LanguageOutlined'; + declare export { + default as LanguageRounded, + } from '@material-ui/icons/LanguageRounded'; + declare export { + default as LanguageSharp, + } from '@material-ui/icons/LanguageSharp'; + declare export { + default as LanguageTwoTone, + } from '@material-ui/icons/LanguageTwoTone'; + declare export { + default as LaptopChromebook, + } from '@material-ui/icons/LaptopChromebook'; + declare export { + default as LaptopChromebookOutlined, + } from '@material-ui/icons/LaptopChromebookOutlined'; + declare export { + default as LaptopChromebookRounded, + } from '@material-ui/icons/LaptopChromebookRounded'; + declare export { + default as LaptopChromebookSharp, + } from '@material-ui/icons/LaptopChromebookSharp'; + declare export { + default as LaptopChromebookTwoTone, + } from '@material-ui/icons/LaptopChromebookTwoTone'; + declare export { default as Laptop } from '@material-ui/icons/Laptop'; + declare export { default as LaptopMac } from '@material-ui/icons/LaptopMac'; + declare export { + default as LaptopMacOutlined, + } from '@material-ui/icons/LaptopMacOutlined'; + declare export { + default as LaptopMacRounded, + } from '@material-ui/icons/LaptopMacRounded'; + declare export { + default as LaptopMacSharp, + } from '@material-ui/icons/LaptopMacSharp'; + declare export { + default as LaptopMacTwoTone, + } from '@material-ui/icons/LaptopMacTwoTone'; + declare export { + default as LaptopOutlined, + } from '@material-ui/icons/LaptopOutlined'; + declare export { + default as LaptopRounded, + } from '@material-ui/icons/LaptopRounded'; + declare export { + default as LaptopSharp, + } from '@material-ui/icons/LaptopSharp'; + declare export { + default as LaptopTwoTone, + } from '@material-ui/icons/LaptopTwoTone'; + declare export { + default as LaptopWindows, + } from '@material-ui/icons/LaptopWindows'; + declare export { + default as LaptopWindowsOutlined, + } from '@material-ui/icons/LaptopWindowsOutlined'; + declare export { + default as LaptopWindowsRounded, + } from '@material-ui/icons/LaptopWindowsRounded'; + declare export { + default as LaptopWindowsSharp, + } from '@material-ui/icons/LaptopWindowsSharp'; + declare export { + default as LaptopWindowsTwoTone, + } from '@material-ui/icons/LaptopWindowsTwoTone'; + declare export { default as LastPage } from '@material-ui/icons/LastPage'; + declare export { + default as LastPageOutlined, + } from '@material-ui/icons/LastPageOutlined'; + declare export { + default as LastPageRounded, + } from '@material-ui/icons/LastPageRounded'; + declare export { + default as LastPageSharp, + } from '@material-ui/icons/LastPageSharp'; + declare export { + default as LastPageTwoTone, + } from '@material-ui/icons/LastPageTwoTone'; + declare export { default as Launch } from '@material-ui/icons/Launch'; + declare export { + default as LaunchOutlined, + } from '@material-ui/icons/LaunchOutlined'; + declare export { + default as LaunchRounded, + } from '@material-ui/icons/LaunchRounded'; + declare export { + default as LaunchSharp, + } from '@material-ui/icons/LaunchSharp'; + declare export { + default as LaunchTwoTone, + } from '@material-ui/icons/LaunchTwoTone'; + declare export { + default as LayersClear, + } from '@material-ui/icons/LayersClear'; + declare export { + default as LayersClearOutlined, + } from '@material-ui/icons/LayersClearOutlined'; + declare export { + default as LayersClearRounded, + } from '@material-ui/icons/LayersClearRounded'; + declare export { + default as LayersClearSharp, + } from '@material-ui/icons/LayersClearSharp'; + declare export { + default as LayersClearTwoTone, + } from '@material-ui/icons/LayersClearTwoTone'; + declare export { default as Layers } from '@material-ui/icons/Layers'; + declare export { + default as LayersOutlined, + } from '@material-ui/icons/LayersOutlined'; + declare export { + default as LayersRounded, + } from '@material-ui/icons/LayersRounded'; + declare export { + default as LayersSharp, + } from '@material-ui/icons/LayersSharp'; + declare export { + default as LayersTwoTone, + } from '@material-ui/icons/LayersTwoTone'; + declare export { default as LeakAdd } from '@material-ui/icons/LeakAdd'; + declare export { + default as LeakAddOutlined, + } from '@material-ui/icons/LeakAddOutlined'; + declare export { + default as LeakAddRounded, + } from '@material-ui/icons/LeakAddRounded'; + declare export { + default as LeakAddSharp, + } from '@material-ui/icons/LeakAddSharp'; + declare export { + default as LeakAddTwoTone, + } from '@material-ui/icons/LeakAddTwoTone'; + declare export { default as LeakRemove } from '@material-ui/icons/LeakRemove'; + declare export { + default as LeakRemoveOutlined, + } from '@material-ui/icons/LeakRemoveOutlined'; + declare export { + default as LeakRemoveRounded, + } from '@material-ui/icons/LeakRemoveRounded'; + declare export { + default as LeakRemoveSharp, + } from '@material-ui/icons/LeakRemoveSharp'; + declare export { + default as LeakRemoveTwoTone, + } from '@material-ui/icons/LeakRemoveTwoTone'; + declare export { default as Lens } from '@material-ui/icons/Lens'; + declare export { + default as LensOutlined, + } from '@material-ui/icons/LensOutlined'; + declare export { + default as LensRounded, + } from '@material-ui/icons/LensRounded'; + declare export { default as LensSharp } from '@material-ui/icons/LensSharp'; + declare export { + default as LensTwoTone, + } from '@material-ui/icons/LensTwoTone'; + declare export { default as LibraryAdd } from '@material-ui/icons/LibraryAdd'; + declare export { + default as LibraryAddOutlined, + } from '@material-ui/icons/LibraryAddOutlined'; + declare export { + default as LibraryAddRounded, + } from '@material-ui/icons/LibraryAddRounded'; + declare export { + default as LibraryAddSharp, + } from '@material-ui/icons/LibraryAddSharp'; + declare export { + default as LibraryAddTwoTone, + } from '@material-ui/icons/LibraryAddTwoTone'; + declare export { + default as LibraryBooks, + } from '@material-ui/icons/LibraryBooks'; + declare export { + default as LibraryBooksOutlined, + } from '@material-ui/icons/LibraryBooksOutlined'; + declare export { + default as LibraryBooksRounded, + } from '@material-ui/icons/LibraryBooksRounded'; + declare export { + default as LibraryBooksSharp, + } from '@material-ui/icons/LibraryBooksSharp'; + declare export { + default as LibraryBooksTwoTone, + } from '@material-ui/icons/LibraryBooksTwoTone'; + declare export { + default as LibraryMusic, + } from '@material-ui/icons/LibraryMusic'; + declare export { + default as LibraryMusicOutlined, + } from '@material-ui/icons/LibraryMusicOutlined'; + declare export { + default as LibraryMusicRounded, + } from '@material-ui/icons/LibraryMusicRounded'; + declare export { + default as LibraryMusicSharp, + } from '@material-ui/icons/LibraryMusicSharp'; + declare export { + default as LibraryMusicTwoTone, + } from '@material-ui/icons/LibraryMusicTwoTone'; + declare export { + default as LinearScale, + } from '@material-ui/icons/LinearScale'; + declare export { + default as LinearScaleOutlined, + } from '@material-ui/icons/LinearScaleOutlined'; + declare export { + default as LinearScaleRounded, + } from '@material-ui/icons/LinearScaleRounded'; + declare export { + default as LinearScaleSharp, + } from '@material-ui/icons/LinearScaleSharp'; + declare export { + default as LinearScaleTwoTone, + } from '@material-ui/icons/LinearScaleTwoTone'; + declare export { default as LineStyle } from '@material-ui/icons/LineStyle'; + declare export { + default as LineStyleOutlined, + } from '@material-ui/icons/LineStyleOutlined'; + declare export { + default as LineStyleRounded, + } from '@material-ui/icons/LineStyleRounded'; + declare export { + default as LineStyleSharp, + } from '@material-ui/icons/LineStyleSharp'; + declare export { + default as LineStyleTwoTone, + } from '@material-ui/icons/LineStyleTwoTone'; + declare export { default as LineWeight } from '@material-ui/icons/LineWeight'; + declare export { + default as LineWeightOutlined, + } from '@material-ui/icons/LineWeightOutlined'; + declare export { + default as LineWeightRounded, + } from '@material-ui/icons/LineWeightRounded'; + declare export { + default as LineWeightSharp, + } from '@material-ui/icons/LineWeightSharp'; + declare export { + default as LineWeightTwoTone, + } from '@material-ui/icons/LineWeightTwoTone'; + declare export { + default as LinkedCamera, + } from '@material-ui/icons/LinkedCamera'; + declare export { + default as LinkedCameraOutlined, + } from '@material-ui/icons/LinkedCameraOutlined'; + declare export { + default as LinkedCameraRounded, + } from '@material-ui/icons/LinkedCameraRounded'; + declare export { + default as LinkedCameraSharp, + } from '@material-ui/icons/LinkedCameraSharp'; + declare export { + default as LinkedCameraTwoTone, + } from '@material-ui/icons/LinkedCameraTwoTone'; + declare export { default as Link } from '@material-ui/icons/Link'; + declare export { default as LinkOff } from '@material-ui/icons/LinkOff'; + declare export { + default as LinkOffOutlined, + } from '@material-ui/icons/LinkOffOutlined'; + declare export { + default as LinkOffRounded, + } from '@material-ui/icons/LinkOffRounded'; + declare export { + default as LinkOffSharp, + } from '@material-ui/icons/LinkOffSharp'; + declare export { + default as LinkOffTwoTone, + } from '@material-ui/icons/LinkOffTwoTone'; + declare export { + default as LinkOutlined, + } from '@material-ui/icons/LinkOutlined'; + declare export { + default as LinkRounded, + } from '@material-ui/icons/LinkRounded'; + declare export { default as LinkSharp } from '@material-ui/icons/LinkSharp'; + declare export { + default as LinkTwoTone, + } from '@material-ui/icons/LinkTwoTone'; + declare export { default as ListAlt } from '@material-ui/icons/ListAlt'; + declare export { + default as ListAltOutlined, + } from '@material-ui/icons/ListAltOutlined'; + declare export { + default as ListAltRounded, + } from '@material-ui/icons/ListAltRounded'; + declare export { + default as ListAltSharp, + } from '@material-ui/icons/ListAltSharp'; + declare export { + default as ListAltTwoTone, + } from '@material-ui/icons/ListAltTwoTone'; + declare export { default as List } from '@material-ui/icons/List'; + declare export { + default as ListOutlined, + } from '@material-ui/icons/ListOutlined'; + declare export { + default as ListRounded, + } from '@material-ui/icons/ListRounded'; + declare export { default as ListSharp } from '@material-ui/icons/ListSharp'; + declare export { + default as ListTwoTone, + } from '@material-ui/icons/ListTwoTone'; + declare export { default as LiveHelp } from '@material-ui/icons/LiveHelp'; + declare export { + default as LiveHelpOutlined, + } from '@material-ui/icons/LiveHelpOutlined'; + declare export { + default as LiveHelpRounded, + } from '@material-ui/icons/LiveHelpRounded'; + declare export { + default as LiveHelpSharp, + } from '@material-ui/icons/LiveHelpSharp'; + declare export { + default as LiveHelpTwoTone, + } from '@material-ui/icons/LiveHelpTwoTone'; + declare export { default as LiveTv } from '@material-ui/icons/LiveTv'; + declare export { + default as LiveTvOutlined, + } from '@material-ui/icons/LiveTvOutlined'; + declare export { + default as LiveTvRounded, + } from '@material-ui/icons/LiveTvRounded'; + declare export { + default as LiveTvSharp, + } from '@material-ui/icons/LiveTvSharp'; + declare export { + default as LiveTvTwoTone, + } from '@material-ui/icons/LiveTvTwoTone'; + declare export { + default as LocalActivity, + } from '@material-ui/icons/LocalActivity'; + declare export { + default as LocalActivityOutlined, + } from '@material-ui/icons/LocalActivityOutlined'; + declare export { + default as LocalActivityRounded, + } from '@material-ui/icons/LocalActivityRounded'; + declare export { + default as LocalActivitySharp, + } from '@material-ui/icons/LocalActivitySharp'; + declare export { + default as LocalActivityTwoTone, + } from '@material-ui/icons/LocalActivityTwoTone'; + declare export { + default as LocalAirport, + } from '@material-ui/icons/LocalAirport'; + declare export { + default as LocalAirportOutlined, + } from '@material-ui/icons/LocalAirportOutlined'; + declare export { + default as LocalAirportRounded, + } from '@material-ui/icons/LocalAirportRounded'; + declare export { + default as LocalAirportSharp, + } from '@material-ui/icons/LocalAirportSharp'; + declare export { + default as LocalAirportTwoTone, + } from '@material-ui/icons/LocalAirportTwoTone'; + declare export { default as LocalAtm } from '@material-ui/icons/LocalAtm'; + declare export { + default as LocalAtmOutlined, + } from '@material-ui/icons/LocalAtmOutlined'; + declare export { + default as LocalAtmRounded, + } from '@material-ui/icons/LocalAtmRounded'; + declare export { + default as LocalAtmSharp, + } from '@material-ui/icons/LocalAtmSharp'; + declare export { + default as LocalAtmTwoTone, + } from '@material-ui/icons/LocalAtmTwoTone'; + declare export { default as LocalBar } from '@material-ui/icons/LocalBar'; + declare export { + default as LocalBarOutlined, + } from '@material-ui/icons/LocalBarOutlined'; + declare export { + default as LocalBarRounded, + } from '@material-ui/icons/LocalBarRounded'; + declare export { + default as LocalBarSharp, + } from '@material-ui/icons/LocalBarSharp'; + declare export { + default as LocalBarTwoTone, + } from '@material-ui/icons/LocalBarTwoTone'; + declare export { default as LocalCafe } from '@material-ui/icons/LocalCafe'; + declare export { + default as LocalCafeOutlined, + } from '@material-ui/icons/LocalCafeOutlined'; + declare export { + default as LocalCafeRounded, + } from '@material-ui/icons/LocalCafeRounded'; + declare export { + default as LocalCafeSharp, + } from '@material-ui/icons/LocalCafeSharp'; + declare export { + default as LocalCafeTwoTone, + } from '@material-ui/icons/LocalCafeTwoTone'; + declare export { + default as LocalCarWash, + } from '@material-ui/icons/LocalCarWash'; + declare export { + default as LocalCarWashOutlined, + } from '@material-ui/icons/LocalCarWashOutlined'; + declare export { + default as LocalCarWashRounded, + } from '@material-ui/icons/LocalCarWashRounded'; + declare export { + default as LocalCarWashSharp, + } from '@material-ui/icons/LocalCarWashSharp'; + declare export { + default as LocalCarWashTwoTone, + } from '@material-ui/icons/LocalCarWashTwoTone'; + declare export { + default as LocalConvenienceStore, + } from '@material-ui/icons/LocalConvenienceStore'; + declare export { + default as LocalConvenienceStoreOutlined, + } from '@material-ui/icons/LocalConvenienceStoreOutlined'; + declare export { + default as LocalConvenienceStoreRounded, + } from '@material-ui/icons/LocalConvenienceStoreRounded'; + declare export { + default as LocalConvenienceStoreSharp, + } from '@material-ui/icons/LocalConvenienceStoreSharp'; + declare export { + default as LocalConvenienceStoreTwoTone, + } from '@material-ui/icons/LocalConvenienceStoreTwoTone'; + declare export { + default as LocalDining, + } from '@material-ui/icons/LocalDining'; + declare export { + default as LocalDiningOutlined, + } from '@material-ui/icons/LocalDiningOutlined'; + declare export { + default as LocalDiningRounded, + } from '@material-ui/icons/LocalDiningRounded'; + declare export { + default as LocalDiningSharp, + } from '@material-ui/icons/LocalDiningSharp'; + declare export { + default as LocalDiningTwoTone, + } from '@material-ui/icons/LocalDiningTwoTone'; + declare export { default as LocalDrink } from '@material-ui/icons/LocalDrink'; + declare export { + default as LocalDrinkOutlined, + } from '@material-ui/icons/LocalDrinkOutlined'; + declare export { + default as LocalDrinkRounded, + } from '@material-ui/icons/LocalDrinkRounded'; + declare export { + default as LocalDrinkSharp, + } from '@material-ui/icons/LocalDrinkSharp'; + declare export { + default as LocalDrinkTwoTone, + } from '@material-ui/icons/LocalDrinkTwoTone'; + declare export { + default as LocalFlorist, + } from '@material-ui/icons/LocalFlorist'; + declare export { + default as LocalFloristOutlined, + } from '@material-ui/icons/LocalFloristOutlined'; + declare export { + default as LocalFloristRounded, + } from '@material-ui/icons/LocalFloristRounded'; + declare export { + default as LocalFloristSharp, + } from '@material-ui/icons/LocalFloristSharp'; + declare export { + default as LocalFloristTwoTone, + } from '@material-ui/icons/LocalFloristTwoTone'; + declare export { + default as LocalGasStation, + } from '@material-ui/icons/LocalGasStation'; + declare export { + default as LocalGasStationOutlined, + } from '@material-ui/icons/LocalGasStationOutlined'; + declare export { + default as LocalGasStationRounded, + } from '@material-ui/icons/LocalGasStationRounded'; + declare export { + default as LocalGasStationSharp, + } from '@material-ui/icons/LocalGasStationSharp'; + declare export { + default as LocalGasStationTwoTone, + } from '@material-ui/icons/LocalGasStationTwoTone'; + declare export { + default as LocalGroceryStore, + } from '@material-ui/icons/LocalGroceryStore'; + declare export { + default as LocalGroceryStoreOutlined, + } from '@material-ui/icons/LocalGroceryStoreOutlined'; + declare export { + default as LocalGroceryStoreRounded, + } from '@material-ui/icons/LocalGroceryStoreRounded'; + declare export { + default as LocalGroceryStoreSharp, + } from '@material-ui/icons/LocalGroceryStoreSharp'; + declare export { + default as LocalGroceryStoreTwoTone, + } from '@material-ui/icons/LocalGroceryStoreTwoTone'; + declare export { + default as LocalHospital, + } from '@material-ui/icons/LocalHospital'; + declare export { + default as LocalHospitalOutlined, + } from '@material-ui/icons/LocalHospitalOutlined'; + declare export { + default as LocalHospitalRounded, + } from '@material-ui/icons/LocalHospitalRounded'; + declare export { + default as LocalHospitalSharp, + } from '@material-ui/icons/LocalHospitalSharp'; + declare export { + default as LocalHospitalTwoTone, + } from '@material-ui/icons/LocalHospitalTwoTone'; + declare export { default as LocalHotel } from '@material-ui/icons/LocalHotel'; + declare export { + default as LocalHotelOutlined, + } from '@material-ui/icons/LocalHotelOutlined'; + declare export { + default as LocalHotelRounded, + } from '@material-ui/icons/LocalHotelRounded'; + declare export { + default as LocalHotelSharp, + } from '@material-ui/icons/LocalHotelSharp'; + declare export { + default as LocalHotelTwoTone, + } from '@material-ui/icons/LocalHotelTwoTone'; + declare export { + default as LocalLaundryService, + } from '@material-ui/icons/LocalLaundryService'; + declare export { + default as LocalLaundryServiceOutlined, + } from '@material-ui/icons/LocalLaundryServiceOutlined'; + declare export { + default as LocalLaundryServiceRounded, + } from '@material-ui/icons/LocalLaundryServiceRounded'; + declare export { + default as LocalLaundryServiceSharp, + } from '@material-ui/icons/LocalLaundryServiceSharp'; + declare export { + default as LocalLaundryServiceTwoTone, + } from '@material-ui/icons/LocalLaundryServiceTwoTone'; + declare export { + default as LocalLibrary, + } from '@material-ui/icons/LocalLibrary'; + declare export { + default as LocalLibraryOutlined, + } from '@material-ui/icons/LocalLibraryOutlined'; + declare export { + default as LocalLibraryRounded, + } from '@material-ui/icons/LocalLibraryRounded'; + declare export { + default as LocalLibrarySharp, + } from '@material-ui/icons/LocalLibrarySharp'; + declare export { + default as LocalLibraryTwoTone, + } from '@material-ui/icons/LocalLibraryTwoTone'; + declare export { default as LocalMall } from '@material-ui/icons/LocalMall'; + declare export { + default as LocalMallOutlined, + } from '@material-ui/icons/LocalMallOutlined'; + declare export { + default as LocalMallRounded, + } from '@material-ui/icons/LocalMallRounded'; + declare export { + default as LocalMallSharp, + } from '@material-ui/icons/LocalMallSharp'; + declare export { + default as LocalMallTwoTone, + } from '@material-ui/icons/LocalMallTwoTone'; + declare export { + default as LocalMovies, + } from '@material-ui/icons/LocalMovies'; + declare export { + default as LocalMoviesOutlined, + } from '@material-ui/icons/LocalMoviesOutlined'; + declare export { + default as LocalMoviesRounded, + } from '@material-ui/icons/LocalMoviesRounded'; + declare export { + default as LocalMoviesSharp, + } from '@material-ui/icons/LocalMoviesSharp'; + declare export { + default as LocalMoviesTwoTone, + } from '@material-ui/icons/LocalMoviesTwoTone'; + declare export { default as LocalOffer } from '@material-ui/icons/LocalOffer'; + declare export { + default as LocalOfferOutlined, + } from '@material-ui/icons/LocalOfferOutlined'; + declare export { + default as LocalOfferRounded, + } from '@material-ui/icons/LocalOfferRounded'; + declare export { + default as LocalOfferSharp, + } from '@material-ui/icons/LocalOfferSharp'; + declare export { + default as LocalOfferTwoTone, + } from '@material-ui/icons/LocalOfferTwoTone'; + declare export { + default as LocalParking, + } from '@material-ui/icons/LocalParking'; + declare export { + default as LocalParkingOutlined, + } from '@material-ui/icons/LocalParkingOutlined'; + declare export { + default as LocalParkingRounded, + } from '@material-ui/icons/LocalParkingRounded'; + declare export { + default as LocalParkingSharp, + } from '@material-ui/icons/LocalParkingSharp'; + declare export { + default as LocalParkingTwoTone, + } from '@material-ui/icons/LocalParkingTwoTone'; + declare export { + default as LocalPharmacy, + } from '@material-ui/icons/LocalPharmacy'; + declare export { + default as LocalPharmacyOutlined, + } from '@material-ui/icons/LocalPharmacyOutlined'; + declare export { + default as LocalPharmacyRounded, + } from '@material-ui/icons/LocalPharmacyRounded'; + declare export { + default as LocalPharmacySharp, + } from '@material-ui/icons/LocalPharmacySharp'; + declare export { + default as LocalPharmacyTwoTone, + } from '@material-ui/icons/LocalPharmacyTwoTone'; + declare export { default as LocalPhone } from '@material-ui/icons/LocalPhone'; + declare export { + default as LocalPhoneOutlined, + } from '@material-ui/icons/LocalPhoneOutlined'; + declare export { + default as LocalPhoneRounded, + } from '@material-ui/icons/LocalPhoneRounded'; + declare export { + default as LocalPhoneSharp, + } from '@material-ui/icons/LocalPhoneSharp'; + declare export { + default as LocalPhoneTwoTone, + } from '@material-ui/icons/LocalPhoneTwoTone'; + declare export { default as LocalPizza } from '@material-ui/icons/LocalPizza'; + declare export { + default as LocalPizzaOutlined, + } from '@material-ui/icons/LocalPizzaOutlined'; + declare export { + default as LocalPizzaRounded, + } from '@material-ui/icons/LocalPizzaRounded'; + declare export { + default as LocalPizzaSharp, + } from '@material-ui/icons/LocalPizzaSharp'; + declare export { + default as LocalPizzaTwoTone, + } from '@material-ui/icons/LocalPizzaTwoTone'; + declare export { default as LocalPlay } from '@material-ui/icons/LocalPlay'; + declare export { + default as LocalPlayOutlined, + } from '@material-ui/icons/LocalPlayOutlined'; + declare export { + default as LocalPlayRounded, + } from '@material-ui/icons/LocalPlayRounded'; + declare export { + default as LocalPlaySharp, + } from '@material-ui/icons/LocalPlaySharp'; + declare export { + default as LocalPlayTwoTone, + } from '@material-ui/icons/LocalPlayTwoTone'; + declare export { + default as LocalPostOffice, + } from '@material-ui/icons/LocalPostOffice'; + declare export { + default as LocalPostOfficeOutlined, + } from '@material-ui/icons/LocalPostOfficeOutlined'; + declare export { + default as LocalPostOfficeRounded, + } from '@material-ui/icons/LocalPostOfficeRounded'; + declare export { + default as LocalPostOfficeSharp, + } from '@material-ui/icons/LocalPostOfficeSharp'; + declare export { + default as LocalPostOfficeTwoTone, + } from '@material-ui/icons/LocalPostOfficeTwoTone'; + declare export { + default as LocalPrintshop, + } from '@material-ui/icons/LocalPrintshop'; + declare export { + default as LocalPrintshopOutlined, + } from '@material-ui/icons/LocalPrintshopOutlined'; + declare export { + default as LocalPrintshopRounded, + } from '@material-ui/icons/LocalPrintshopRounded'; + declare export { + default as LocalPrintshopSharp, + } from '@material-ui/icons/LocalPrintshopSharp'; + declare export { + default as LocalPrintshopTwoTone, + } from '@material-ui/icons/LocalPrintshopTwoTone'; + declare export { default as LocalSee } from '@material-ui/icons/LocalSee'; + declare export { + default as LocalSeeOutlined, + } from '@material-ui/icons/LocalSeeOutlined'; + declare export { + default as LocalSeeRounded, + } from '@material-ui/icons/LocalSeeRounded'; + declare export { + default as LocalSeeSharp, + } from '@material-ui/icons/LocalSeeSharp'; + declare export { + default as LocalSeeTwoTone, + } from '@material-ui/icons/LocalSeeTwoTone'; + declare export { + default as LocalShipping, + } from '@material-ui/icons/LocalShipping'; + declare export { + default as LocalShippingOutlined, + } from '@material-ui/icons/LocalShippingOutlined'; + declare export { + default as LocalShippingRounded, + } from '@material-ui/icons/LocalShippingRounded'; + declare export { + default as LocalShippingSharp, + } from '@material-ui/icons/LocalShippingSharp'; + declare export { + default as LocalShippingTwoTone, + } from '@material-ui/icons/LocalShippingTwoTone'; + declare export { default as LocalTaxi } from '@material-ui/icons/LocalTaxi'; + declare export { + default as LocalTaxiOutlined, + } from '@material-ui/icons/LocalTaxiOutlined'; + declare export { + default as LocalTaxiRounded, + } from '@material-ui/icons/LocalTaxiRounded'; + declare export { + default as LocalTaxiSharp, + } from '@material-ui/icons/LocalTaxiSharp'; + declare export { + default as LocalTaxiTwoTone, + } from '@material-ui/icons/LocalTaxiTwoTone'; + declare export { + default as LocationCity, + } from '@material-ui/icons/LocationCity'; + declare export { + default as LocationCityOutlined, + } from '@material-ui/icons/LocationCityOutlined'; + declare export { + default as LocationCityRounded, + } from '@material-ui/icons/LocationCityRounded'; + declare export { + default as LocationCitySharp, + } from '@material-ui/icons/LocationCitySharp'; + declare export { + default as LocationCityTwoTone, + } from '@material-ui/icons/LocationCityTwoTone'; + declare export { + default as LocationDisabled, + } from '@material-ui/icons/LocationDisabled'; + declare export { + default as LocationDisabledOutlined, + } from '@material-ui/icons/LocationDisabledOutlined'; + declare export { + default as LocationDisabledRounded, + } from '@material-ui/icons/LocationDisabledRounded'; + declare export { + default as LocationDisabledSharp, + } from '@material-ui/icons/LocationDisabledSharp'; + declare export { + default as LocationDisabledTwoTone, + } from '@material-ui/icons/LocationDisabledTwoTone'; + declare export { + default as LocationOff, + } from '@material-ui/icons/LocationOff'; + declare export { + default as LocationOffOutlined, + } from '@material-ui/icons/LocationOffOutlined'; + declare export { + default as LocationOffRounded, + } from '@material-ui/icons/LocationOffRounded'; + declare export { + default as LocationOffSharp, + } from '@material-ui/icons/LocationOffSharp'; + declare export { + default as LocationOffTwoTone, + } from '@material-ui/icons/LocationOffTwoTone'; + declare export { default as LocationOn } from '@material-ui/icons/LocationOn'; + declare export { + default as LocationOnOutlined, + } from '@material-ui/icons/LocationOnOutlined'; + declare export { + default as LocationOnRounded, + } from '@material-ui/icons/LocationOnRounded'; + declare export { + default as LocationOnSharp, + } from '@material-ui/icons/LocationOnSharp'; + declare export { + default as LocationOnTwoTone, + } from '@material-ui/icons/LocationOnTwoTone'; + declare export { + default as LocationSearching, + } from '@material-ui/icons/LocationSearching'; + declare export { + default as LocationSearchingOutlined, + } from '@material-ui/icons/LocationSearchingOutlined'; + declare export { + default as LocationSearchingRounded, + } from '@material-ui/icons/LocationSearchingRounded'; + declare export { + default as LocationSearchingSharp, + } from '@material-ui/icons/LocationSearchingSharp'; + declare export { + default as LocationSearchingTwoTone, + } from '@material-ui/icons/LocationSearchingTwoTone'; + declare export { default as Lock } from '@material-ui/icons/Lock'; + declare export { default as LockOpen } from '@material-ui/icons/LockOpen'; + declare export { + default as LockOpenOutlined, + } from '@material-ui/icons/LockOpenOutlined'; + declare export { + default as LockOpenRounded, + } from '@material-ui/icons/LockOpenRounded'; + declare export { + default as LockOpenSharp, + } from '@material-ui/icons/LockOpenSharp'; + declare export { + default as LockOpenTwoTone, + } from '@material-ui/icons/LockOpenTwoTone'; + declare export { + default as LockOutlined, + } from '@material-ui/icons/LockOutlined'; + declare export { + default as LockRounded, + } from '@material-ui/icons/LockRounded'; + declare export { default as LockSharp } from '@material-ui/icons/LockSharp'; + declare export { + default as LockTwoTone, + } from '@material-ui/icons/LockTwoTone'; + declare export { default as Looks3 } from '@material-ui/icons/Looks3'; + declare export { + default as Looks3Outlined, + } from '@material-ui/icons/Looks3Outlined'; + declare export { + default as Looks3Rounded, + } from '@material-ui/icons/Looks3Rounded'; + declare export { + default as Looks3Sharp, + } from '@material-ui/icons/Looks3Sharp'; + declare export { + default as Looks3TwoTone, + } from '@material-ui/icons/Looks3TwoTone'; + declare export { default as Looks4 } from '@material-ui/icons/Looks4'; + declare export { + default as Looks4Outlined, + } from '@material-ui/icons/Looks4Outlined'; + declare export { + default as Looks4Rounded, + } from '@material-ui/icons/Looks4Rounded'; + declare export { + default as Looks4Sharp, + } from '@material-ui/icons/Looks4Sharp'; + declare export { + default as Looks4TwoTone, + } from '@material-ui/icons/Looks4TwoTone'; + declare export { default as Looks5 } from '@material-ui/icons/Looks5'; + declare export { + default as Looks5Outlined, + } from '@material-ui/icons/Looks5Outlined'; + declare export { + default as Looks5Rounded, + } from '@material-ui/icons/Looks5Rounded'; + declare export { + default as Looks5Sharp, + } from '@material-ui/icons/Looks5Sharp'; + declare export { + default as Looks5TwoTone, + } from '@material-ui/icons/Looks5TwoTone'; + declare export { default as Looks6 } from '@material-ui/icons/Looks6'; + declare export { + default as Looks6Outlined, + } from '@material-ui/icons/Looks6Outlined'; + declare export { + default as Looks6Rounded, + } from '@material-ui/icons/Looks6Rounded'; + declare export { + default as Looks6Sharp, + } from '@material-ui/icons/Looks6Sharp'; + declare export { + default as Looks6TwoTone, + } from '@material-ui/icons/Looks6TwoTone'; + declare export { default as Looks } from '@material-ui/icons/Looks'; + declare export { default as LooksOne } from '@material-ui/icons/LooksOne'; + declare export { + default as LooksOneOutlined, + } from '@material-ui/icons/LooksOneOutlined'; + declare export { + default as LooksOneRounded, + } from '@material-ui/icons/LooksOneRounded'; + declare export { + default as LooksOneSharp, + } from '@material-ui/icons/LooksOneSharp'; + declare export { + default as LooksOneTwoTone, + } from '@material-ui/icons/LooksOneTwoTone'; + declare export { + default as LooksOutlined, + } from '@material-ui/icons/LooksOutlined'; + declare export { + default as LooksRounded, + } from '@material-ui/icons/LooksRounded'; + declare export { default as LooksSharp } from '@material-ui/icons/LooksSharp'; + declare export { default as LooksTwo } from '@material-ui/icons/LooksTwo'; + declare export { + default as LooksTwoOutlined, + } from '@material-ui/icons/LooksTwoOutlined'; + declare export { + default as LooksTwoRounded, + } from '@material-ui/icons/LooksTwoRounded'; + declare export { + default as LooksTwoSharp, + } from '@material-ui/icons/LooksTwoSharp'; + declare export { + default as LooksTwoTone, + } from '@material-ui/icons/LooksTwoTone'; + declare export { + default as LooksTwoTwoTone, + } from '@material-ui/icons/LooksTwoTwoTone'; + declare export { default as Loop } from '@material-ui/icons/Loop'; + declare export { + default as LoopOutlined, + } from '@material-ui/icons/LoopOutlined'; + declare export { + default as LoopRounded, + } from '@material-ui/icons/LoopRounded'; + declare export { default as LoopSharp } from '@material-ui/icons/LoopSharp'; + declare export { + default as LoopTwoTone, + } from '@material-ui/icons/LoopTwoTone'; + declare export { default as Loupe } from '@material-ui/icons/Loupe'; + declare export { + default as LoupeOutlined, + } from '@material-ui/icons/LoupeOutlined'; + declare export { + default as LoupeRounded, + } from '@material-ui/icons/LoupeRounded'; + declare export { default as LoupeSharp } from '@material-ui/icons/LoupeSharp'; + declare export { + default as LoupeTwoTone, + } from '@material-ui/icons/LoupeTwoTone'; + declare export { + default as LowPriority, + } from '@material-ui/icons/LowPriority'; + declare export { + default as LowPriorityOutlined, + } from '@material-ui/icons/LowPriorityOutlined'; + declare export { + default as LowPriorityRounded, + } from '@material-ui/icons/LowPriorityRounded'; + declare export { + default as LowPrioritySharp, + } from '@material-ui/icons/LowPrioritySharp'; + declare export { + default as LowPriorityTwoTone, + } from '@material-ui/icons/LowPriorityTwoTone'; + declare export { default as Loyalty } from '@material-ui/icons/Loyalty'; + declare export { + default as LoyaltyOutlined, + } from '@material-ui/icons/LoyaltyOutlined'; + declare export { + default as LoyaltyRounded, + } from '@material-ui/icons/LoyaltyRounded'; + declare export { + default as LoyaltySharp, + } from '@material-ui/icons/LoyaltySharp'; + declare export { + default as LoyaltyTwoTone, + } from '@material-ui/icons/LoyaltyTwoTone'; + declare export { default as Mail } from '@material-ui/icons/Mail'; + declare export { + default as MailOutlined, + } from '@material-ui/icons/MailOutlined'; + declare export { + default as MailOutline, + } from '@material-ui/icons/MailOutline'; + declare export { + default as MailOutlineOutlined, + } from '@material-ui/icons/MailOutlineOutlined'; + declare export { + default as MailOutlineRounded, + } from '@material-ui/icons/MailOutlineRounded'; + declare export { + default as MailOutlineSharp, + } from '@material-ui/icons/MailOutlineSharp'; + declare export { + default as MailOutlineTwoTone, + } from '@material-ui/icons/MailOutlineTwoTone'; + declare export { + default as MailRounded, + } from '@material-ui/icons/MailRounded'; + declare export { default as MailSharp } from '@material-ui/icons/MailSharp'; + declare export { + default as MailTwoTone, + } from '@material-ui/icons/MailTwoTone'; + declare export { default as Map } from '@material-ui/icons/Map'; + declare export { + default as MapOutlined, + } from '@material-ui/icons/MapOutlined'; + declare export { default as MapRounded } from '@material-ui/icons/MapRounded'; + declare export { default as MapSharp } from '@material-ui/icons/MapSharp'; + declare export { default as MapTwoTone } from '@material-ui/icons/MapTwoTone'; + declare export { default as Markunread } from '@material-ui/icons/Markunread'; + declare export { + default as MarkunreadMailbox, + } from '@material-ui/icons/MarkunreadMailbox'; + declare export { + default as MarkunreadMailboxOutlined, + } from '@material-ui/icons/MarkunreadMailboxOutlined'; + declare export { + default as MarkunreadMailboxRounded, + } from '@material-ui/icons/MarkunreadMailboxRounded'; + declare export { + default as MarkunreadMailboxSharp, + } from '@material-ui/icons/MarkunreadMailboxSharp'; + declare export { + default as MarkunreadMailboxTwoTone, + } from '@material-ui/icons/MarkunreadMailboxTwoTone'; + declare export { + default as MarkunreadOutlined, + } from '@material-ui/icons/MarkunreadOutlined'; + declare export { + default as MarkunreadRounded, + } from '@material-ui/icons/MarkunreadRounded'; + declare export { + default as MarkunreadSharp, + } from '@material-ui/icons/MarkunreadSharp'; + declare export { + default as MarkunreadTwoTone, + } from '@material-ui/icons/MarkunreadTwoTone'; + declare export { default as Maximize } from '@material-ui/icons/Maximize'; + declare export { + default as MaximizeOutlined, + } from '@material-ui/icons/MaximizeOutlined'; + declare export { + default as MaximizeRounded, + } from '@material-ui/icons/MaximizeRounded'; + declare export { + default as MaximizeSharp, + } from '@material-ui/icons/MaximizeSharp'; + declare export { + default as MaximizeTwoTone, + } from '@material-ui/icons/MaximizeTwoTone'; + declare export { + default as MeetingRoom, + } from '@material-ui/icons/MeetingRoom'; + declare export { + default as MeetingRoomOutlined, + } from '@material-ui/icons/MeetingRoomOutlined'; + declare export { + default as MeetingRoomRounded, + } from '@material-ui/icons/MeetingRoomRounded'; + declare export { + default as MeetingRoomSharp, + } from '@material-ui/icons/MeetingRoomSharp'; + declare export { + default as MeetingRoomTwoTone, + } from '@material-ui/icons/MeetingRoomTwoTone'; + declare export { default as Memory } from '@material-ui/icons/Memory'; + declare export { + default as MemoryOutlined, + } from '@material-ui/icons/MemoryOutlined'; + declare export { + default as MemoryRounded, + } from '@material-ui/icons/MemoryRounded'; + declare export { + default as MemorySharp, + } from '@material-ui/icons/MemorySharp'; + declare export { + default as MemoryTwoTone, + } from '@material-ui/icons/MemoryTwoTone'; + declare export { default as Menu } from '@material-ui/icons/Menu'; + declare export { + default as MenuOutlined, + } from '@material-ui/icons/MenuOutlined'; + declare export { + default as MenuRounded, + } from '@material-ui/icons/MenuRounded'; + declare export { default as MenuSharp } from '@material-ui/icons/MenuSharp'; + declare export { + default as MenuTwoTone, + } from '@material-ui/icons/MenuTwoTone'; + declare export { default as MergeType } from '@material-ui/icons/MergeType'; + declare export { + default as MergeTypeOutlined, + } from '@material-ui/icons/MergeTypeOutlined'; + declare export { + default as MergeTypeRounded, + } from '@material-ui/icons/MergeTypeRounded'; + declare export { + default as MergeTypeSharp, + } from '@material-ui/icons/MergeTypeSharp'; + declare export { + default as MergeTypeTwoTone, + } from '@material-ui/icons/MergeTypeTwoTone'; + declare export { default as Message } from '@material-ui/icons/Message'; + declare export { + default as MessageOutlined, + } from '@material-ui/icons/MessageOutlined'; + declare export { + default as MessageRounded, + } from '@material-ui/icons/MessageRounded'; + declare export { + default as MessageSharp, + } from '@material-ui/icons/MessageSharp'; + declare export { + default as MessageTwoTone, + } from '@material-ui/icons/MessageTwoTone'; + declare export { default as Mic } from '@material-ui/icons/Mic'; + declare export { default as MicNone } from '@material-ui/icons/MicNone'; + declare export { + default as MicNoneOutlined, + } from '@material-ui/icons/MicNoneOutlined'; + declare export { + default as MicNoneRounded, + } from '@material-ui/icons/MicNoneRounded'; + declare export { + default as MicNoneSharp, + } from '@material-ui/icons/MicNoneSharp'; + declare export { + default as MicNoneTwoTone, + } from '@material-ui/icons/MicNoneTwoTone'; + declare export { default as MicOff } from '@material-ui/icons/MicOff'; + declare export { + default as MicOffOutlined, + } from '@material-ui/icons/MicOffOutlined'; + declare export { + default as MicOffRounded, + } from '@material-ui/icons/MicOffRounded'; + declare export { + default as MicOffSharp, + } from '@material-ui/icons/MicOffSharp'; + declare export { + default as MicOffTwoTone, + } from '@material-ui/icons/MicOffTwoTone'; + declare export { + default as MicOutlined, + } from '@material-ui/icons/MicOutlined'; + declare export { default as MicRounded } from '@material-ui/icons/MicRounded'; + declare export { default as MicSharp } from '@material-ui/icons/MicSharp'; + declare export { default as MicTwoTone } from '@material-ui/icons/MicTwoTone'; + declare export { default as Minimize } from '@material-ui/icons/Minimize'; + declare export { + default as MinimizeOutlined, + } from '@material-ui/icons/MinimizeOutlined'; + declare export { + default as MinimizeRounded, + } from '@material-ui/icons/MinimizeRounded'; + declare export { + default as MinimizeSharp, + } from '@material-ui/icons/MinimizeSharp'; + declare export { + default as MinimizeTwoTone, + } from '@material-ui/icons/MinimizeTwoTone'; + declare export { + default as MissedVideoCall, + } from '@material-ui/icons/MissedVideoCall'; + declare export { + default as MissedVideoCallOutlined, + } from '@material-ui/icons/MissedVideoCallOutlined'; + declare export { + default as MissedVideoCallRounded, + } from '@material-ui/icons/MissedVideoCallRounded'; + declare export { + default as MissedVideoCallSharp, + } from '@material-ui/icons/MissedVideoCallSharp'; + declare export { + default as MissedVideoCallTwoTone, + } from '@material-ui/icons/MissedVideoCallTwoTone'; + declare export { default as Mms } from '@material-ui/icons/Mms'; + declare export { + default as MmsOutlined, + } from '@material-ui/icons/MmsOutlined'; + declare export { default as MmsRounded } from '@material-ui/icons/MmsRounded'; + declare export { default as MmsSharp } from '@material-ui/icons/MmsSharp'; + declare export { default as MmsTwoTone } from '@material-ui/icons/MmsTwoTone'; + declare export { + default as MobileFriendly, + } from '@material-ui/icons/MobileFriendly'; + declare export { + default as MobileFriendlyOutlined, + } from '@material-ui/icons/MobileFriendlyOutlined'; + declare export { + default as MobileFriendlyRounded, + } from '@material-ui/icons/MobileFriendlyRounded'; + declare export { + default as MobileFriendlySharp, + } from '@material-ui/icons/MobileFriendlySharp'; + declare export { + default as MobileFriendlyTwoTone, + } from '@material-ui/icons/MobileFriendlyTwoTone'; + declare export { default as MobileOff } from '@material-ui/icons/MobileOff'; + declare export { + default as MobileOffOutlined, + } from '@material-ui/icons/MobileOffOutlined'; + declare export { + default as MobileOffRounded, + } from '@material-ui/icons/MobileOffRounded'; + declare export { + default as MobileOffSharp, + } from '@material-ui/icons/MobileOffSharp'; + declare export { + default as MobileOffTwoTone, + } from '@material-ui/icons/MobileOffTwoTone'; + declare export { + default as MobileScreenShare, + } from '@material-ui/icons/MobileScreenShare'; + declare export { + default as MobileScreenShareOutlined, + } from '@material-ui/icons/MobileScreenShareOutlined'; + declare export { + default as MobileScreenShareRounded, + } from '@material-ui/icons/MobileScreenShareRounded'; + declare export { + default as MobileScreenShareSharp, + } from '@material-ui/icons/MobileScreenShareSharp'; + declare export { + default as MobileScreenShareTwoTone, + } from '@material-ui/icons/MobileScreenShareTwoTone'; + declare export { + default as ModeComment, + } from '@material-ui/icons/ModeComment'; + declare export { + default as ModeCommentOutlined, + } from '@material-ui/icons/ModeCommentOutlined'; + declare export { + default as ModeCommentRounded, + } from '@material-ui/icons/ModeCommentRounded'; + declare export { + default as ModeCommentSharp, + } from '@material-ui/icons/ModeCommentSharp'; + declare export { + default as ModeCommentTwoTone, + } from '@material-ui/icons/ModeCommentTwoTone'; + declare export { + default as MonetizationOn, + } from '@material-ui/icons/MonetizationOn'; + declare export { + default as MonetizationOnOutlined, + } from '@material-ui/icons/MonetizationOnOutlined'; + declare export { + default as MonetizationOnRounded, + } from '@material-ui/icons/MonetizationOnRounded'; + declare export { + default as MonetizationOnSharp, + } from '@material-ui/icons/MonetizationOnSharp'; + declare export { + default as MonetizationOnTwoTone, + } from '@material-ui/icons/MonetizationOnTwoTone'; + declare export { default as Money } from '@material-ui/icons/Money'; + declare export { default as MoneyOff } from '@material-ui/icons/MoneyOff'; + declare export { + default as MoneyOffOutlined, + } from '@material-ui/icons/MoneyOffOutlined'; + declare export { + default as MoneyOffRounded, + } from '@material-ui/icons/MoneyOffRounded'; + declare export { + default as MoneyOffSharp, + } from '@material-ui/icons/MoneyOffSharp'; + declare export { + default as MoneyOffTwoTone, + } from '@material-ui/icons/MoneyOffTwoTone'; + declare export { + default as MoneyOutlined, + } from '@material-ui/icons/MoneyOutlined'; + declare export { + default as MoneyRounded, + } from '@material-ui/icons/MoneyRounded'; + declare export { default as MoneySharp } from '@material-ui/icons/MoneySharp'; + declare export { + default as MoneyTwoTone, + } from '@material-ui/icons/MoneyTwoTone'; + declare export { + default as MonochromePhotos, + } from '@material-ui/icons/MonochromePhotos'; + declare export { + default as MonochromePhotosOutlined, + } from '@material-ui/icons/MonochromePhotosOutlined'; + declare export { + default as MonochromePhotosRounded, + } from '@material-ui/icons/MonochromePhotosRounded'; + declare export { + default as MonochromePhotosSharp, + } from '@material-ui/icons/MonochromePhotosSharp'; + declare export { + default as MonochromePhotosTwoTone, + } from '@material-ui/icons/MonochromePhotosTwoTone'; + declare export { default as MoodBad } from '@material-ui/icons/MoodBad'; + declare export { + default as MoodBadOutlined, + } from '@material-ui/icons/MoodBadOutlined'; + declare export { + default as MoodBadRounded, + } from '@material-ui/icons/MoodBadRounded'; + declare export { + default as MoodBadSharp, + } from '@material-ui/icons/MoodBadSharp'; + declare export { + default as MoodBadTwoTone, + } from '@material-ui/icons/MoodBadTwoTone'; + declare export { default as Mood } from '@material-ui/icons/Mood'; + declare export { + default as MoodOutlined, + } from '@material-ui/icons/MoodOutlined'; + declare export { + default as MoodRounded, + } from '@material-ui/icons/MoodRounded'; + declare export { default as MoodSharp } from '@material-ui/icons/MoodSharp'; + declare export { + default as MoodTwoTone, + } from '@material-ui/icons/MoodTwoTone'; + declare export { default as MoreHoriz } from '@material-ui/icons/MoreHoriz'; + declare export { + default as MoreHorizOutlined, + } from '@material-ui/icons/MoreHorizOutlined'; + declare export { + default as MoreHorizRounded, + } from '@material-ui/icons/MoreHorizRounded'; + declare export { + default as MoreHorizSharp, + } from '@material-ui/icons/MoreHorizSharp'; + declare export { + default as MoreHorizTwoTone, + } from '@material-ui/icons/MoreHorizTwoTone'; + declare export { default as More } from '@material-ui/icons/More'; + declare export { + default as MoreOutlined, + } from '@material-ui/icons/MoreOutlined'; + declare export { + default as MoreRounded, + } from '@material-ui/icons/MoreRounded'; + declare export { default as MoreSharp } from '@material-ui/icons/MoreSharp'; + declare export { + default as MoreTwoTone, + } from '@material-ui/icons/MoreTwoTone'; + declare export { default as MoreVert } from '@material-ui/icons/MoreVert'; + declare export { + default as MoreVertOutlined, + } from '@material-ui/icons/MoreVertOutlined'; + declare export { + default as MoreVertRounded, + } from '@material-ui/icons/MoreVertRounded'; + declare export { + default as MoreVertSharp, + } from '@material-ui/icons/MoreVertSharp'; + declare export { + default as MoreVertTwoTone, + } from '@material-ui/icons/MoreVertTwoTone'; + declare export { default as Motorcycle } from '@material-ui/icons/Motorcycle'; + declare export { + default as MotorcycleOutlined, + } from '@material-ui/icons/MotorcycleOutlined'; + declare export { + default as MotorcycleRounded, + } from '@material-ui/icons/MotorcycleRounded'; + declare export { + default as MotorcycleSharp, + } from '@material-ui/icons/MotorcycleSharp'; + declare export { + default as MotorcycleTwoTone, + } from '@material-ui/icons/MotorcycleTwoTone'; + declare export { default as Mouse } from '@material-ui/icons/Mouse'; + declare export { + default as MouseOutlined, + } from '@material-ui/icons/MouseOutlined'; + declare export { + default as MouseRounded, + } from '@material-ui/icons/MouseRounded'; + declare export { default as MouseSharp } from '@material-ui/icons/MouseSharp'; + declare export { + default as MouseTwoTone, + } from '@material-ui/icons/MouseTwoTone'; + declare export { + default as MoveToInbox, + } from '@material-ui/icons/MoveToInbox'; + declare export { + default as MoveToInboxOutlined, + } from '@material-ui/icons/MoveToInboxOutlined'; + declare export { + default as MoveToInboxRounded, + } from '@material-ui/icons/MoveToInboxRounded'; + declare export { + default as MoveToInboxSharp, + } from '@material-ui/icons/MoveToInboxSharp'; + declare export { + default as MoveToInboxTwoTone, + } from '@material-ui/icons/MoveToInboxTwoTone'; + declare export { + default as MovieCreation, + } from '@material-ui/icons/MovieCreation'; + declare export { + default as MovieCreationOutlined, + } from '@material-ui/icons/MovieCreationOutlined'; + declare export { + default as MovieCreationRounded, + } from '@material-ui/icons/MovieCreationRounded'; + declare export { + default as MovieCreationSharp, + } from '@material-ui/icons/MovieCreationSharp'; + declare export { + default as MovieCreationTwoTone, + } from '@material-ui/icons/MovieCreationTwoTone'; + declare export { + default as MovieFilter, + } from '@material-ui/icons/MovieFilter'; + declare export { + default as MovieFilterOutlined, + } from '@material-ui/icons/MovieFilterOutlined'; + declare export { + default as MovieFilterRounded, + } from '@material-ui/icons/MovieFilterRounded'; + declare export { + default as MovieFilterSharp, + } from '@material-ui/icons/MovieFilterSharp'; + declare export { + default as MovieFilterTwoTone, + } from '@material-ui/icons/MovieFilterTwoTone'; + declare export { default as Movie } from '@material-ui/icons/Movie'; + declare export { + default as MovieOutlined, + } from '@material-ui/icons/MovieOutlined'; + declare export { + default as MovieRounded, + } from '@material-ui/icons/MovieRounded'; + declare export { default as MovieSharp } from '@material-ui/icons/MovieSharp'; + declare export { + default as MovieTwoTone, + } from '@material-ui/icons/MovieTwoTone'; + declare export { + default as MultilineChart, + } from '@material-ui/icons/MultilineChart'; + declare export { + default as MultilineChartOutlined, + } from '@material-ui/icons/MultilineChartOutlined'; + declare export { + default as MultilineChartRounded, + } from '@material-ui/icons/MultilineChartRounded'; + declare export { + default as MultilineChartSharp, + } from '@material-ui/icons/MultilineChartSharp'; + declare export { + default as MultilineChartTwoTone, + } from '@material-ui/icons/MultilineChartTwoTone'; + declare export { default as MusicNote } from '@material-ui/icons/MusicNote'; + declare export { + default as MusicNoteOutlined, + } from '@material-ui/icons/MusicNoteOutlined'; + declare export { + default as MusicNoteRounded, + } from '@material-ui/icons/MusicNoteRounded'; + declare export { + default as MusicNoteSharp, + } from '@material-ui/icons/MusicNoteSharp'; + declare export { + default as MusicNoteTwoTone, + } from '@material-ui/icons/MusicNoteTwoTone'; + declare export { default as MusicOff } from '@material-ui/icons/MusicOff'; + declare export { + default as MusicOffOutlined, + } from '@material-ui/icons/MusicOffOutlined'; + declare export { + default as MusicOffRounded, + } from '@material-ui/icons/MusicOffRounded'; + declare export { + default as MusicOffSharp, + } from '@material-ui/icons/MusicOffSharp'; + declare export { + default as MusicOffTwoTone, + } from '@material-ui/icons/MusicOffTwoTone'; + declare export { default as MusicVideo } from '@material-ui/icons/MusicVideo'; + declare export { + default as MusicVideoOutlined, + } from '@material-ui/icons/MusicVideoOutlined'; + declare export { + default as MusicVideoRounded, + } from '@material-ui/icons/MusicVideoRounded'; + declare export { + default as MusicVideoSharp, + } from '@material-ui/icons/MusicVideoSharp'; + declare export { + default as MusicVideoTwoTone, + } from '@material-ui/icons/MusicVideoTwoTone'; + declare export { default as MyLocation } from '@material-ui/icons/MyLocation'; + declare export { + default as MyLocationOutlined, + } from '@material-ui/icons/MyLocationOutlined'; + declare export { + default as MyLocationRounded, + } from '@material-ui/icons/MyLocationRounded'; + declare export { + default as MyLocationSharp, + } from '@material-ui/icons/MyLocationSharp'; + declare export { + default as MyLocationTwoTone, + } from '@material-ui/icons/MyLocationTwoTone'; + declare export { default as Nature } from '@material-ui/icons/Nature'; + declare export { + default as NatureOutlined, + } from '@material-ui/icons/NatureOutlined'; + declare export { + default as NaturePeople, + } from '@material-ui/icons/NaturePeople'; + declare export { + default as NaturePeopleOutlined, + } from '@material-ui/icons/NaturePeopleOutlined'; + declare export { + default as NaturePeopleRounded, + } from '@material-ui/icons/NaturePeopleRounded'; + declare export { + default as NaturePeopleSharp, + } from '@material-ui/icons/NaturePeopleSharp'; + declare export { + default as NaturePeopleTwoTone, + } from '@material-ui/icons/NaturePeopleTwoTone'; + declare export { + default as NatureRounded, + } from '@material-ui/icons/NatureRounded'; + declare export { + default as NatureSharp, + } from '@material-ui/icons/NatureSharp'; + declare export { + default as NatureTwoTone, + } from '@material-ui/icons/NatureTwoTone'; + declare export { + default as NavigateBefore, + } from '@material-ui/icons/NavigateBefore'; + declare export { + default as NavigateBeforeOutlined, + } from '@material-ui/icons/NavigateBeforeOutlined'; + declare export { + default as NavigateBeforeRounded, + } from '@material-ui/icons/NavigateBeforeRounded'; + declare export { + default as NavigateBeforeSharp, + } from '@material-ui/icons/NavigateBeforeSharp'; + declare export { + default as NavigateBeforeTwoTone, + } from '@material-ui/icons/NavigateBeforeTwoTone'; + declare export { + default as NavigateNext, + } from '@material-ui/icons/NavigateNext'; + declare export { + default as NavigateNextOutlined, + } from '@material-ui/icons/NavigateNextOutlined'; + declare export { + default as NavigateNextRounded, + } from '@material-ui/icons/NavigateNextRounded'; + declare export { + default as NavigateNextSharp, + } from '@material-ui/icons/NavigateNextSharp'; + declare export { + default as NavigateNextTwoTone, + } from '@material-ui/icons/NavigateNextTwoTone'; + declare export { default as Navigation } from '@material-ui/icons/Navigation'; + declare export { + default as NavigationOutlined, + } from '@material-ui/icons/NavigationOutlined'; + declare export { + default as NavigationRounded, + } from '@material-ui/icons/NavigationRounded'; + declare export { + default as NavigationSharp, + } from '@material-ui/icons/NavigationSharp'; + declare export { + default as NavigationTwoTone, + } from '@material-ui/icons/NavigationTwoTone'; + declare export { default as NearMe } from '@material-ui/icons/NearMe'; + declare export { + default as NearMeOutlined, + } from '@material-ui/icons/NearMeOutlined'; + declare export { + default as NearMeRounded, + } from '@material-ui/icons/NearMeRounded'; + declare export { + default as NearMeSharp, + } from '@material-ui/icons/NearMeSharp'; + declare export { + default as NearMeTwoTone, + } from '@material-ui/icons/NearMeTwoTone'; + declare export { + default as NetworkCell, + } from '@material-ui/icons/NetworkCell'; + declare export { + default as NetworkCellOutlined, + } from '@material-ui/icons/NetworkCellOutlined'; + declare export { + default as NetworkCellRounded, + } from '@material-ui/icons/NetworkCellRounded'; + declare export { + default as NetworkCellSharp, + } from '@material-ui/icons/NetworkCellSharp'; + declare export { + default as NetworkCellTwoTone, + } from '@material-ui/icons/NetworkCellTwoTone'; + declare export { + default as NetworkCheck, + } from '@material-ui/icons/NetworkCheck'; + declare export { + default as NetworkCheckOutlined, + } from '@material-ui/icons/NetworkCheckOutlined'; + declare export { + default as NetworkCheckRounded, + } from '@material-ui/icons/NetworkCheckRounded'; + declare export { + default as NetworkCheckSharp, + } from '@material-ui/icons/NetworkCheckSharp'; + declare export { + default as NetworkCheckTwoTone, + } from '@material-ui/icons/NetworkCheckTwoTone'; + declare export { + default as NetworkLocked, + } from '@material-ui/icons/NetworkLocked'; + declare export { + default as NetworkLockedOutlined, + } from '@material-ui/icons/NetworkLockedOutlined'; + declare export { + default as NetworkLockedRounded, + } from '@material-ui/icons/NetworkLockedRounded'; + declare export { + default as NetworkLockedSharp, + } from '@material-ui/icons/NetworkLockedSharp'; + declare export { + default as NetworkLockedTwoTone, + } from '@material-ui/icons/NetworkLockedTwoTone'; + declare export { + default as NetworkWifi, + } from '@material-ui/icons/NetworkWifi'; + declare export { + default as NetworkWifiOutlined, + } from '@material-ui/icons/NetworkWifiOutlined'; + declare export { + default as NetworkWifiRounded, + } from '@material-ui/icons/NetworkWifiRounded'; + declare export { + default as NetworkWifiSharp, + } from '@material-ui/icons/NetworkWifiSharp'; + declare export { + default as NetworkWifiTwoTone, + } from '@material-ui/icons/NetworkWifiTwoTone'; + declare export { + default as NewReleases, + } from '@material-ui/icons/NewReleases'; + declare export { + default as NewReleasesOutlined, + } from '@material-ui/icons/NewReleasesOutlined'; + declare export { + default as NewReleasesRounded, + } from '@material-ui/icons/NewReleasesRounded'; + declare export { + default as NewReleasesSharp, + } from '@material-ui/icons/NewReleasesSharp'; + declare export { + default as NewReleasesTwoTone, + } from '@material-ui/icons/NewReleasesTwoTone'; + declare export { default as NextWeek } from '@material-ui/icons/NextWeek'; + declare export { + default as NextWeekOutlined, + } from '@material-ui/icons/NextWeekOutlined'; + declare export { + default as NextWeekRounded, + } from '@material-ui/icons/NextWeekRounded'; + declare export { + default as NextWeekSharp, + } from '@material-ui/icons/NextWeekSharp'; + declare export { + default as NextWeekTwoTone, + } from '@material-ui/icons/NextWeekTwoTone'; + declare export { default as Nfc } from '@material-ui/icons/Nfc'; + declare export { + default as NfcOutlined, + } from '@material-ui/icons/NfcOutlined'; + declare export { default as NfcRounded } from '@material-ui/icons/NfcRounded'; + declare export { default as NfcSharp } from '@material-ui/icons/NfcSharp'; + declare export { default as NfcTwoTone } from '@material-ui/icons/NfcTwoTone'; + declare export { + default as NoEncryption, + } from '@material-ui/icons/NoEncryption'; + declare export { + default as NoEncryptionOutlined, + } from '@material-ui/icons/NoEncryptionOutlined'; + declare export { + default as NoEncryptionRounded, + } from '@material-ui/icons/NoEncryptionRounded'; + declare export { + default as NoEncryptionSharp, + } from '@material-ui/icons/NoEncryptionSharp'; + declare export { + default as NoEncryptionTwoTone, + } from '@material-ui/icons/NoEncryptionTwoTone'; + declare export { + default as NoMeetingRoom, + } from '@material-ui/icons/NoMeetingRoom'; + declare export { + default as NoMeetingRoomOutlined, + } from '@material-ui/icons/NoMeetingRoomOutlined'; + declare export { + default as NoMeetingRoomRounded, + } from '@material-ui/icons/NoMeetingRoomRounded'; + declare export { + default as NoMeetingRoomSharp, + } from '@material-ui/icons/NoMeetingRoomSharp'; + declare export { + default as NoMeetingRoomTwoTone, + } from '@material-ui/icons/NoMeetingRoomTwoTone'; + declare export { default as NoSim } from '@material-ui/icons/NoSim'; + declare export { + default as NoSimOutlined, + } from '@material-ui/icons/NoSimOutlined'; + declare export { + default as NoSimRounded, + } from '@material-ui/icons/NoSimRounded'; + declare export { default as NoSimSharp } from '@material-ui/icons/NoSimSharp'; + declare export { + default as NoSimTwoTone, + } from '@material-ui/icons/NoSimTwoTone'; + declare export { default as NoteAdd } from '@material-ui/icons/NoteAdd'; + declare export { + default as NoteAddOutlined, + } from '@material-ui/icons/NoteAddOutlined'; + declare export { + default as NoteAddRounded, + } from '@material-ui/icons/NoteAddRounded'; + declare export { + default as NoteAddSharp, + } from '@material-ui/icons/NoteAddSharp'; + declare export { + default as NoteAddTwoTone, + } from '@material-ui/icons/NoteAddTwoTone'; + declare export { default as Note } from '@material-ui/icons/Note'; + declare export { + default as NoteOutlined, + } from '@material-ui/icons/NoteOutlined'; + declare export { + default as NoteRounded, + } from '@material-ui/icons/NoteRounded'; + declare export { default as NoteSharp } from '@material-ui/icons/NoteSharp'; + declare export { default as Notes } from '@material-ui/icons/Notes'; + declare export { + default as NotesOutlined, + } from '@material-ui/icons/NotesOutlined'; + declare export { + default as NotesRounded, + } from '@material-ui/icons/NotesRounded'; + declare export { default as NotesSharp } from '@material-ui/icons/NotesSharp'; + declare export { + default as NotesTwoTone, + } from '@material-ui/icons/NotesTwoTone'; + declare export { + default as NoteTwoTone, + } from '@material-ui/icons/NoteTwoTone'; + declare export { + default as NotificationImportant, + } from '@material-ui/icons/NotificationImportant'; + declare export { + default as NotificationImportantOutlined, + } from '@material-ui/icons/NotificationImportantOutlined'; + declare export { + default as NotificationImportantRounded, + } from '@material-ui/icons/NotificationImportantRounded'; + declare export { + default as NotificationImportantSharp, + } from '@material-ui/icons/NotificationImportantSharp'; + declare export { + default as NotificationImportantTwoTone, + } from '@material-ui/icons/NotificationImportantTwoTone'; + declare export { + default as NotificationsActive, + } from '@material-ui/icons/NotificationsActive'; + declare export { + default as NotificationsActiveOutlined, + } from '@material-ui/icons/NotificationsActiveOutlined'; + declare export { + default as NotificationsActiveRounded, + } from '@material-ui/icons/NotificationsActiveRounded'; + declare export { + default as NotificationsActiveSharp, + } from '@material-ui/icons/NotificationsActiveSharp'; + declare export { + default as NotificationsActiveTwoTone, + } from '@material-ui/icons/NotificationsActiveTwoTone'; + declare export { + default as Notifications, + } from '@material-ui/icons/Notifications'; + declare export { + default as NotificationsNone, + } from '@material-ui/icons/NotificationsNone'; + declare export { + default as NotificationsNoneOutlined, + } from '@material-ui/icons/NotificationsNoneOutlined'; + declare export { + default as NotificationsNoneRounded, + } from '@material-ui/icons/NotificationsNoneRounded'; + declare export { + default as NotificationsNoneSharp, + } from '@material-ui/icons/NotificationsNoneSharp'; + declare export { + default as NotificationsNoneTwoTone, + } from '@material-ui/icons/NotificationsNoneTwoTone'; + declare export { + default as NotificationsOff, + } from '@material-ui/icons/NotificationsOff'; + declare export { + default as NotificationsOffOutlined, + } from '@material-ui/icons/NotificationsOffOutlined'; + declare export { + default as NotificationsOffRounded, + } from '@material-ui/icons/NotificationsOffRounded'; + declare export { + default as NotificationsOffSharp, + } from '@material-ui/icons/NotificationsOffSharp'; + declare export { + default as NotificationsOffTwoTone, + } from '@material-ui/icons/NotificationsOffTwoTone'; + declare export { + default as NotificationsOutlined, + } from '@material-ui/icons/NotificationsOutlined'; + declare export { + default as NotificationsPaused, + } from '@material-ui/icons/NotificationsPaused'; + declare export { + default as NotificationsPausedOutlined, + } from '@material-ui/icons/NotificationsPausedOutlined'; + declare export { + default as NotificationsPausedRounded, + } from '@material-ui/icons/NotificationsPausedRounded'; + declare export { + default as NotificationsPausedSharp, + } from '@material-ui/icons/NotificationsPausedSharp'; + declare export { + default as NotificationsPausedTwoTone, + } from '@material-ui/icons/NotificationsPausedTwoTone'; + declare export { + default as NotificationsRounded, + } from '@material-ui/icons/NotificationsRounded'; + declare export { + default as NotificationsSharp, + } from '@material-ui/icons/NotificationsSharp'; + declare export { + default as NotificationsTwoTone, + } from '@material-ui/icons/NotificationsTwoTone'; + declare export { + default as NotInterested, + } from '@material-ui/icons/NotInterested'; + declare export { + default as NotInterestedOutlined, + } from '@material-ui/icons/NotInterestedOutlined'; + declare export { + default as NotInterestedRounded, + } from '@material-ui/icons/NotInterestedRounded'; + declare export { + default as NotInterestedSharp, + } from '@material-ui/icons/NotInterestedSharp'; + declare export { + default as NotInterestedTwoTone, + } from '@material-ui/icons/NotInterestedTwoTone'; + declare export { + default as NotListedLocation, + } from '@material-ui/icons/NotListedLocation'; + declare export { + default as NotListedLocationOutlined, + } from '@material-ui/icons/NotListedLocationOutlined'; + declare export { + default as NotListedLocationRounded, + } from '@material-ui/icons/NotListedLocationRounded'; + declare export { + default as NotListedLocationSharp, + } from '@material-ui/icons/NotListedLocationSharp'; + declare export { + default as NotListedLocationTwoTone, + } from '@material-ui/icons/NotListedLocationTwoTone'; + declare export { + default as OfflineBolt, + } from '@material-ui/icons/OfflineBolt'; + declare export { + default as OfflineBoltOutlined, + } from '@material-ui/icons/OfflineBoltOutlined'; + declare export { + default as OfflineBoltRounded, + } from '@material-ui/icons/OfflineBoltRounded'; + declare export { + default as OfflineBoltSharp, + } from '@material-ui/icons/OfflineBoltSharp'; + declare export { + default as OfflineBoltTwoTone, + } from '@material-ui/icons/OfflineBoltTwoTone'; + declare export { default as OfflinePin } from '@material-ui/icons/OfflinePin'; + declare export { + default as OfflinePinOutlined, + } from '@material-ui/icons/OfflinePinOutlined'; + declare export { + default as OfflinePinRounded, + } from '@material-ui/icons/OfflinePinRounded'; + declare export { + default as OfflinePinSharp, + } from '@material-ui/icons/OfflinePinSharp'; + declare export { + default as OfflinePinTwoTone, + } from '@material-ui/icons/OfflinePinTwoTone'; + declare export { + default as OndemandVideo, + } from '@material-ui/icons/OndemandVideo'; + declare export { + default as OndemandVideoOutlined, + } from '@material-ui/icons/OndemandVideoOutlined'; + declare export { + default as OndemandVideoRounded, + } from '@material-ui/icons/OndemandVideoRounded'; + declare export { + default as OndemandVideoSharp, + } from '@material-ui/icons/OndemandVideoSharp'; + declare export { + default as OndemandVideoTwoTone, + } from '@material-ui/icons/OndemandVideoTwoTone'; + declare export { default as Opacity } from '@material-ui/icons/Opacity'; + declare export { + default as OpacityOutlined, + } from '@material-ui/icons/OpacityOutlined'; + declare export { + default as OpacityRounded, + } from '@material-ui/icons/OpacityRounded'; + declare export { + default as OpacitySharp, + } from '@material-ui/icons/OpacitySharp'; + declare export { + default as OpacityTwoTone, + } from '@material-ui/icons/OpacityTwoTone'; + declare export { + default as OpenInBrowser, + } from '@material-ui/icons/OpenInBrowser'; + declare export { + default as OpenInBrowserOutlined, + } from '@material-ui/icons/OpenInBrowserOutlined'; + declare export { + default as OpenInBrowserRounded, + } from '@material-ui/icons/OpenInBrowserRounded'; + declare export { + default as OpenInBrowserSharp, + } from '@material-ui/icons/OpenInBrowserSharp'; + declare export { + default as OpenInBrowserTwoTone, + } from '@material-ui/icons/OpenInBrowserTwoTone'; + declare export { default as OpenInNew } from '@material-ui/icons/OpenInNew'; + declare export { + default as OpenInNewOutlined, + } from '@material-ui/icons/OpenInNewOutlined'; + declare export { + default as OpenInNewRounded, + } from '@material-ui/icons/OpenInNewRounded'; + declare export { + default as OpenInNewSharp, + } from '@material-ui/icons/OpenInNewSharp'; + declare export { + default as OpenInNewTwoTone, + } from '@material-ui/icons/OpenInNewTwoTone'; + declare export { default as OpenWith } from '@material-ui/icons/OpenWith'; + declare export { + default as OpenWithOutlined, + } from '@material-ui/icons/OpenWithOutlined'; + declare export { + default as OpenWithRounded, + } from '@material-ui/icons/OpenWithRounded'; + declare export { + default as OpenWithSharp, + } from '@material-ui/icons/OpenWithSharp'; + declare export { + default as OpenWithTwoTone, + } from '@material-ui/icons/OpenWithTwoTone'; + declare export { + default as OutlinedFlag, + } from '@material-ui/icons/OutlinedFlag'; + declare export { + default as OutlinedFlagOutlined, + } from '@material-ui/icons/OutlinedFlagOutlined'; + declare export { + default as OutlinedFlagRounded, + } from '@material-ui/icons/OutlinedFlagRounded'; + declare export { + default as OutlinedFlagSharp, + } from '@material-ui/icons/OutlinedFlagSharp'; + declare export { + default as OutlinedFlagTwoTone, + } from '@material-ui/icons/OutlinedFlagTwoTone'; + declare export { default as Pages } from '@material-ui/icons/Pages'; + declare export { + default as PagesOutlined, + } from '@material-ui/icons/PagesOutlined'; + declare export { + default as PagesRounded, + } from '@material-ui/icons/PagesRounded'; + declare export { default as PagesSharp } from '@material-ui/icons/PagesSharp'; + declare export { + default as PagesTwoTone, + } from '@material-ui/icons/PagesTwoTone'; + declare export { default as Pageview } from '@material-ui/icons/Pageview'; + declare export { + default as PageviewOutlined, + } from '@material-ui/icons/PageviewOutlined'; + declare export { + default as PageviewRounded, + } from '@material-ui/icons/PageviewRounded'; + declare export { + default as PageviewSharp, + } from '@material-ui/icons/PageviewSharp'; + declare export { + default as PageviewTwoTone, + } from '@material-ui/icons/PageviewTwoTone'; + declare export { default as Palette } from '@material-ui/icons/Palette'; + declare export { + default as PaletteOutlined, + } from '@material-ui/icons/PaletteOutlined'; + declare export { + default as PaletteRounded, + } from '@material-ui/icons/PaletteRounded'; + declare export { + default as PaletteSharp, + } from '@material-ui/icons/PaletteSharp'; + declare export { + default as PaletteTwoTone, + } from '@material-ui/icons/PaletteTwoTone'; + declare export { + default as PanoramaFishEye, + } from '@material-ui/icons/PanoramaFishEye'; + declare export { + default as PanoramaFishEyeOutlined, + } from '@material-ui/icons/PanoramaFishEyeOutlined'; + declare export { + default as PanoramaFishEyeRounded, + } from '@material-ui/icons/PanoramaFishEyeRounded'; + declare export { + default as PanoramaFishEyeSharp, + } from '@material-ui/icons/PanoramaFishEyeSharp'; + declare export { + default as PanoramaFishEyeTwoTone, + } from '@material-ui/icons/PanoramaFishEyeTwoTone'; + declare export { + default as PanoramaHorizontal, + } from '@material-ui/icons/PanoramaHorizontal'; + declare export { + default as PanoramaHorizontalOutlined, + } from '@material-ui/icons/PanoramaHorizontalOutlined'; + declare export { + default as PanoramaHorizontalRounded, + } from '@material-ui/icons/PanoramaHorizontalRounded'; + declare export { + default as PanoramaHorizontalSharp, + } from '@material-ui/icons/PanoramaHorizontalSharp'; + declare export { + default as PanoramaHorizontalTwoTone, + } from '@material-ui/icons/PanoramaHorizontalTwoTone'; + declare export { default as Panorama } from '@material-ui/icons/Panorama'; + declare export { + default as PanoramaOutlined, + } from '@material-ui/icons/PanoramaOutlined'; + declare export { + default as PanoramaRounded, + } from '@material-ui/icons/PanoramaRounded'; + declare export { + default as PanoramaSharp, + } from '@material-ui/icons/PanoramaSharp'; + declare export { + default as PanoramaTwoTone, + } from '@material-ui/icons/PanoramaTwoTone'; + declare export { + default as PanoramaVertical, + } from '@material-ui/icons/PanoramaVertical'; + declare export { + default as PanoramaVerticalOutlined, + } from '@material-ui/icons/PanoramaVerticalOutlined'; + declare export { + default as PanoramaVerticalRounded, + } from '@material-ui/icons/PanoramaVerticalRounded'; + declare export { + default as PanoramaVerticalSharp, + } from '@material-ui/icons/PanoramaVerticalSharp'; + declare export { + default as PanoramaVerticalTwoTone, + } from '@material-ui/icons/PanoramaVerticalTwoTone'; + declare export { + default as PanoramaWideAngle, + } from '@material-ui/icons/PanoramaWideAngle'; + declare export { + default as PanoramaWideAngleOutlined, + } from '@material-ui/icons/PanoramaWideAngleOutlined'; + declare export { + default as PanoramaWideAngleRounded, + } from '@material-ui/icons/PanoramaWideAngleRounded'; + declare export { + default as PanoramaWideAngleSharp, + } from '@material-ui/icons/PanoramaWideAngleSharp'; + declare export { + default as PanoramaWideAngleTwoTone, + } from '@material-ui/icons/PanoramaWideAngleTwoTone'; + declare export { default as PanTool } from '@material-ui/icons/PanTool'; + declare export { + default as PanToolOutlined, + } from '@material-ui/icons/PanToolOutlined'; + declare export { + default as PanToolRounded, + } from '@material-ui/icons/PanToolRounded'; + declare export { + default as PanToolSharp, + } from '@material-ui/icons/PanToolSharp'; + declare export { + default as PanToolTwoTone, + } from '@material-ui/icons/PanToolTwoTone'; + declare export { default as PartyMode } from '@material-ui/icons/PartyMode'; + declare export { + default as PartyModeOutlined, + } from '@material-ui/icons/PartyModeOutlined'; + declare export { + default as PartyModeRounded, + } from '@material-ui/icons/PartyModeRounded'; + declare export { + default as PartyModeSharp, + } from '@material-ui/icons/PartyModeSharp'; + declare export { + default as PartyModeTwoTone, + } from '@material-ui/icons/PartyModeTwoTone'; + declare export { + default as PauseCircleFilled, + } from '@material-ui/icons/PauseCircleFilled'; + declare export { + default as PauseCircleFilledOutlined, + } from '@material-ui/icons/PauseCircleFilledOutlined'; + declare export { + default as PauseCircleFilledRounded, + } from '@material-ui/icons/PauseCircleFilledRounded'; + declare export { + default as PauseCircleFilledSharp, + } from '@material-ui/icons/PauseCircleFilledSharp'; + declare export { + default as PauseCircleFilledTwoTone, + } from '@material-ui/icons/PauseCircleFilledTwoTone'; + declare export { + default as PauseCircleOutline, + } from '@material-ui/icons/PauseCircleOutline'; + declare export { + default as PauseCircleOutlineOutlined, + } from '@material-ui/icons/PauseCircleOutlineOutlined'; + declare export { + default as PauseCircleOutlineRounded, + } from '@material-ui/icons/PauseCircleOutlineRounded'; + declare export { + default as PauseCircleOutlineSharp, + } from '@material-ui/icons/PauseCircleOutlineSharp'; + declare export { + default as PauseCircleOutlineTwoTone, + } from '@material-ui/icons/PauseCircleOutlineTwoTone'; + declare export { default as Pause } from '@material-ui/icons/Pause'; + declare export { + default as PauseOutlined, + } from '@material-ui/icons/PauseOutlined'; + declare export { + default as PausePresentation, + } from '@material-ui/icons/PausePresentation'; + declare export { + default as PausePresentationOutlined, + } from '@material-ui/icons/PausePresentationOutlined'; + declare export { + default as PausePresentationRounded, + } from '@material-ui/icons/PausePresentationRounded'; + declare export { + default as PausePresentationSharp, + } from '@material-ui/icons/PausePresentationSharp'; + declare export { + default as PausePresentationTwoTone, + } from '@material-ui/icons/PausePresentationTwoTone'; + declare export { + default as PauseRounded, + } from '@material-ui/icons/PauseRounded'; + declare export { default as PauseSharp } from '@material-ui/icons/PauseSharp'; + declare export { + default as PauseTwoTone, + } from '@material-ui/icons/PauseTwoTone'; + declare export { default as Payment } from '@material-ui/icons/Payment'; + declare export { + default as PaymentOutlined, + } from '@material-ui/icons/PaymentOutlined'; + declare export { + default as PaymentRounded, + } from '@material-ui/icons/PaymentRounded'; + declare export { + default as PaymentSharp, + } from '@material-ui/icons/PaymentSharp'; + declare export { + default as PaymentTwoTone, + } from '@material-ui/icons/PaymentTwoTone'; + declare export { default as People } from '@material-ui/icons/People'; + declare export { + default as PeopleOutlined, + } from '@material-ui/icons/PeopleOutlined'; + declare export { + default as PeopleOutline, + } from '@material-ui/icons/PeopleOutline'; + declare export { + default as PeopleOutlineOutlined, + } from '@material-ui/icons/PeopleOutlineOutlined'; + declare export { + default as PeopleOutlineRounded, + } from '@material-ui/icons/PeopleOutlineRounded'; + declare export { + default as PeopleOutlineSharp, + } from '@material-ui/icons/PeopleOutlineSharp'; + declare export { + default as PeopleOutlineTwoTone, + } from '@material-ui/icons/PeopleOutlineTwoTone'; + declare export { + default as PeopleRounded, + } from '@material-ui/icons/PeopleRounded'; + declare export { + default as PeopleSharp, + } from '@material-ui/icons/PeopleSharp'; + declare export { + default as PeopleTwoTone, + } from '@material-ui/icons/PeopleTwoTone'; + declare export { + default as PermCameraMic, + } from '@material-ui/icons/PermCameraMic'; + declare export { + default as PermCameraMicOutlined, + } from '@material-ui/icons/PermCameraMicOutlined'; + declare export { + default as PermCameraMicRounded, + } from '@material-ui/icons/PermCameraMicRounded'; + declare export { + default as PermCameraMicSharp, + } from '@material-ui/icons/PermCameraMicSharp'; + declare export { + default as PermCameraMicTwoTone, + } from '@material-ui/icons/PermCameraMicTwoTone'; + declare export { + default as PermContactCalendar, + } from '@material-ui/icons/PermContactCalendar'; + declare export { + default as PermContactCalendarOutlined, + } from '@material-ui/icons/PermContactCalendarOutlined'; + declare export { + default as PermContactCalendarRounded, + } from '@material-ui/icons/PermContactCalendarRounded'; + declare export { + default as PermContactCalendarSharp, + } from '@material-ui/icons/PermContactCalendarSharp'; + declare export { + default as PermContactCalendarTwoTone, + } from '@material-ui/icons/PermContactCalendarTwoTone'; + declare export { + default as PermDataSetting, + } from '@material-ui/icons/PermDataSetting'; + declare export { + default as PermDataSettingOutlined, + } from '@material-ui/icons/PermDataSettingOutlined'; + declare export { + default as PermDataSettingRounded, + } from '@material-ui/icons/PermDataSettingRounded'; + declare export { + default as PermDataSettingSharp, + } from '@material-ui/icons/PermDataSettingSharp'; + declare export { + default as PermDataSettingTwoTone, + } from '@material-ui/icons/PermDataSettingTwoTone'; + declare export { + default as PermDeviceInformation, + } from '@material-ui/icons/PermDeviceInformation'; + declare export { + default as PermDeviceInformationOutlined, + } from '@material-ui/icons/PermDeviceInformationOutlined'; + declare export { + default as PermDeviceInformationRounded, + } from '@material-ui/icons/PermDeviceInformationRounded'; + declare export { + default as PermDeviceInformationSharp, + } from '@material-ui/icons/PermDeviceInformationSharp'; + declare export { + default as PermDeviceInformationTwoTone, + } from '@material-ui/icons/PermDeviceInformationTwoTone'; + declare export { + default as PermIdentity, + } from '@material-ui/icons/PermIdentity'; + declare export { + default as PermIdentityOutlined, + } from '@material-ui/icons/PermIdentityOutlined'; + declare export { + default as PermIdentityRounded, + } from '@material-ui/icons/PermIdentityRounded'; + declare export { + default as PermIdentitySharp, + } from '@material-ui/icons/PermIdentitySharp'; + declare export { + default as PermIdentityTwoTone, + } from '@material-ui/icons/PermIdentityTwoTone'; + declare export { default as PermMedia } from '@material-ui/icons/PermMedia'; + declare export { + default as PermMediaOutlined, + } from '@material-ui/icons/PermMediaOutlined'; + declare export { + default as PermMediaRounded, + } from '@material-ui/icons/PermMediaRounded'; + declare export { + default as PermMediaSharp, + } from '@material-ui/icons/PermMediaSharp'; + declare export { + default as PermMediaTwoTone, + } from '@material-ui/icons/PermMediaTwoTone'; + declare export { + default as PermPhoneMsg, + } from '@material-ui/icons/PermPhoneMsg'; + declare export { + default as PermPhoneMsgOutlined, + } from '@material-ui/icons/PermPhoneMsgOutlined'; + declare export { + default as PermPhoneMsgRounded, + } from '@material-ui/icons/PermPhoneMsgRounded'; + declare export { + default as PermPhoneMsgSharp, + } from '@material-ui/icons/PermPhoneMsgSharp'; + declare export { + default as PermPhoneMsgTwoTone, + } from '@material-ui/icons/PermPhoneMsgTwoTone'; + declare export { + default as PermScanWifi, + } from '@material-ui/icons/PermScanWifi'; + declare export { + default as PermScanWifiOutlined, + } from '@material-ui/icons/PermScanWifiOutlined'; + declare export { + default as PermScanWifiRounded, + } from '@material-ui/icons/PermScanWifiRounded'; + declare export { + default as PermScanWifiSharp, + } from '@material-ui/icons/PermScanWifiSharp'; + declare export { + default as PermScanWifiTwoTone, + } from '@material-ui/icons/PermScanWifiTwoTone'; + declare export { + default as PersonAddDisabled, + } from '@material-ui/icons/PersonAddDisabled'; + declare export { + default as PersonAddDisabledOutlined, + } from '@material-ui/icons/PersonAddDisabledOutlined'; + declare export { + default as PersonAddDisabledRounded, + } from '@material-ui/icons/PersonAddDisabledRounded'; + declare export { + default as PersonAddDisabledSharp, + } from '@material-ui/icons/PersonAddDisabledSharp'; + declare export { + default as PersonAddDisabledTwoTone, + } from '@material-ui/icons/PersonAddDisabledTwoTone'; + declare export { default as PersonAdd } from '@material-ui/icons/PersonAdd'; + declare export { + default as PersonAddOutlined, + } from '@material-ui/icons/PersonAddOutlined'; + declare export { + default as PersonAddRounded, + } from '@material-ui/icons/PersonAddRounded'; + declare export { + default as PersonAddSharp, + } from '@material-ui/icons/PersonAddSharp'; + declare export { + default as PersonAddTwoTone, + } from '@material-ui/icons/PersonAddTwoTone'; + declare export { + default as PersonalVideo, + } from '@material-ui/icons/PersonalVideo'; + declare export { + default as PersonalVideoOutlined, + } from '@material-ui/icons/PersonalVideoOutlined'; + declare export { + default as PersonalVideoRounded, + } from '@material-ui/icons/PersonalVideoRounded'; + declare export { + default as PersonalVideoSharp, + } from '@material-ui/icons/PersonalVideoSharp'; + declare export { + default as PersonalVideoTwoTone, + } from '@material-ui/icons/PersonalVideoTwoTone'; + declare export { default as Person } from '@material-ui/icons/Person'; + declare export { + default as PersonOutlined, + } from '@material-ui/icons/PersonOutlined'; + declare export { + default as PersonOutline, + } from '@material-ui/icons/PersonOutline'; + declare export { + default as PersonOutlineOutlined, + } from '@material-ui/icons/PersonOutlineOutlined'; + declare export { + default as PersonOutlineRounded, + } from '@material-ui/icons/PersonOutlineRounded'; + declare export { + default as PersonOutlineSharp, + } from '@material-ui/icons/PersonOutlineSharp'; + declare export { + default as PersonOutlineTwoTone, + } from '@material-ui/icons/PersonOutlineTwoTone'; + declare export { + default as PersonPinCircle, + } from '@material-ui/icons/PersonPinCircle'; + declare export { + default as PersonPinCircleOutlined, + } from '@material-ui/icons/PersonPinCircleOutlined'; + declare export { + default as PersonPinCircleRounded, + } from '@material-ui/icons/PersonPinCircleRounded'; + declare export { + default as PersonPinCircleSharp, + } from '@material-ui/icons/PersonPinCircleSharp'; + declare export { + default as PersonPinCircleTwoTone, + } from '@material-ui/icons/PersonPinCircleTwoTone'; + declare export { default as PersonPin } from '@material-ui/icons/PersonPin'; + declare export { + default as PersonPinOutlined, + } from '@material-ui/icons/PersonPinOutlined'; + declare export { + default as PersonPinRounded, + } from '@material-ui/icons/PersonPinRounded'; + declare export { + default as PersonPinSharp, + } from '@material-ui/icons/PersonPinSharp'; + declare export { + default as PersonPinTwoTone, + } from '@material-ui/icons/PersonPinTwoTone'; + declare export { + default as PersonRounded, + } from '@material-ui/icons/PersonRounded'; + declare export { + default as PersonSharp, + } from '@material-ui/icons/PersonSharp'; + declare export { + default as PersonTwoTone, + } from '@material-ui/icons/PersonTwoTone'; + declare export { default as Pets } from '@material-ui/icons/Pets'; + declare export { + default as PetsOutlined, + } from '@material-ui/icons/PetsOutlined'; + declare export { + default as PetsRounded, + } from '@material-ui/icons/PetsRounded'; + declare export { default as PetsSharp } from '@material-ui/icons/PetsSharp'; + declare export { + default as PetsTwoTone, + } from '@material-ui/icons/PetsTwoTone'; + declare export { + default as PhoneAndroid, + } from '@material-ui/icons/PhoneAndroid'; + declare export { + default as PhoneAndroidOutlined, + } from '@material-ui/icons/PhoneAndroidOutlined'; + declare export { + default as PhoneAndroidRounded, + } from '@material-ui/icons/PhoneAndroidRounded'; + declare export { + default as PhoneAndroidSharp, + } from '@material-ui/icons/PhoneAndroidSharp'; + declare export { + default as PhoneAndroidTwoTone, + } from '@material-ui/icons/PhoneAndroidTwoTone'; + declare export { + default as PhoneBluetoothSpeaker, + } from '@material-ui/icons/PhoneBluetoothSpeaker'; + declare export { + default as PhoneBluetoothSpeakerOutlined, + } from '@material-ui/icons/PhoneBluetoothSpeakerOutlined'; + declare export { + default as PhoneBluetoothSpeakerRounded, + } from '@material-ui/icons/PhoneBluetoothSpeakerRounded'; + declare export { + default as PhoneBluetoothSpeakerSharp, + } from '@material-ui/icons/PhoneBluetoothSpeakerSharp'; + declare export { + default as PhoneBluetoothSpeakerTwoTone, + } from '@material-ui/icons/PhoneBluetoothSpeakerTwoTone'; + declare export { + default as PhoneCallback, + } from '@material-ui/icons/PhoneCallback'; + declare export { + default as PhoneCallbackOutlined, + } from '@material-ui/icons/PhoneCallbackOutlined'; + declare export { + default as PhoneCallbackRounded, + } from '@material-ui/icons/PhoneCallbackRounded'; + declare export { + default as PhoneCallbackSharp, + } from '@material-ui/icons/PhoneCallbackSharp'; + declare export { + default as PhoneCallbackTwoTone, + } from '@material-ui/icons/PhoneCallbackTwoTone'; + declare export { + default as PhoneForwarded, + } from '@material-ui/icons/PhoneForwarded'; + declare export { + default as PhoneForwardedOutlined, + } from '@material-ui/icons/PhoneForwardedOutlined'; + declare export { + default as PhoneForwardedRounded, + } from '@material-ui/icons/PhoneForwardedRounded'; + declare export { + default as PhoneForwardedSharp, + } from '@material-ui/icons/PhoneForwardedSharp'; + declare export { + default as PhoneForwardedTwoTone, + } from '@material-ui/icons/PhoneForwardedTwoTone'; + declare export { + default as PhoneInTalk, + } from '@material-ui/icons/PhoneInTalk'; + declare export { + default as PhoneInTalkOutlined, + } from '@material-ui/icons/PhoneInTalkOutlined'; + declare export { + default as PhoneInTalkRounded, + } from '@material-ui/icons/PhoneInTalkRounded'; + declare export { + default as PhoneInTalkSharp, + } from '@material-ui/icons/PhoneInTalkSharp'; + declare export { + default as PhoneInTalkTwoTone, + } from '@material-ui/icons/PhoneInTalkTwoTone'; + declare export { + default as PhoneIphone, + } from '@material-ui/icons/PhoneIphone'; + declare export { + default as PhoneIphoneOutlined, + } from '@material-ui/icons/PhoneIphoneOutlined'; + declare export { + default as PhoneIphoneRounded, + } from '@material-ui/icons/PhoneIphoneRounded'; + declare export { + default as PhoneIphoneSharp, + } from '@material-ui/icons/PhoneIphoneSharp'; + declare export { + default as PhoneIphoneTwoTone, + } from '@material-ui/icons/PhoneIphoneTwoTone'; + declare export { default as Phone } from '@material-ui/icons/Phone'; + declare export { + default as PhonelinkErase, + } from '@material-ui/icons/PhonelinkErase'; + declare export { + default as PhonelinkEraseOutlined, + } from '@material-ui/icons/PhonelinkEraseOutlined'; + declare export { + default as PhonelinkEraseRounded, + } from '@material-ui/icons/PhonelinkEraseRounded'; + declare export { + default as PhonelinkEraseSharp, + } from '@material-ui/icons/PhonelinkEraseSharp'; + declare export { + default as PhonelinkEraseTwoTone, + } from '@material-ui/icons/PhonelinkEraseTwoTone'; + declare export { default as Phonelink } from '@material-ui/icons/Phonelink'; + declare export { + default as PhonelinkLock, + } from '@material-ui/icons/PhonelinkLock'; + declare export { + default as PhonelinkLockOutlined, + } from '@material-ui/icons/PhonelinkLockOutlined'; + declare export { + default as PhonelinkLockRounded, + } from '@material-ui/icons/PhonelinkLockRounded'; + declare export { + default as PhonelinkLockSharp, + } from '@material-ui/icons/PhonelinkLockSharp'; + declare export { + default as PhonelinkLockTwoTone, + } from '@material-ui/icons/PhonelinkLockTwoTone'; + declare export { + default as PhonelinkOff, + } from '@material-ui/icons/PhonelinkOff'; + declare export { + default as PhonelinkOffOutlined, + } from '@material-ui/icons/PhonelinkOffOutlined'; + declare export { + default as PhonelinkOffRounded, + } from '@material-ui/icons/PhonelinkOffRounded'; + declare export { + default as PhonelinkOffSharp, + } from '@material-ui/icons/PhonelinkOffSharp'; + declare export { + default as PhonelinkOffTwoTone, + } from '@material-ui/icons/PhonelinkOffTwoTone'; + declare export { + default as PhonelinkOutlined, + } from '@material-ui/icons/PhonelinkOutlined'; + declare export { + default as PhonelinkRing, + } from '@material-ui/icons/PhonelinkRing'; + declare export { + default as PhonelinkRingOutlined, + } from '@material-ui/icons/PhonelinkRingOutlined'; + declare export { + default as PhonelinkRingRounded, + } from '@material-ui/icons/PhonelinkRingRounded'; + declare export { + default as PhonelinkRingSharp, + } from '@material-ui/icons/PhonelinkRingSharp'; + declare export { + default as PhonelinkRingTwoTone, + } from '@material-ui/icons/PhonelinkRingTwoTone'; + declare export { + default as PhonelinkRounded, + } from '@material-ui/icons/PhonelinkRounded'; + declare export { + default as PhonelinkSetup, + } from '@material-ui/icons/PhonelinkSetup'; + declare export { + default as PhonelinkSetupOutlined, + } from '@material-ui/icons/PhonelinkSetupOutlined'; + declare export { + default as PhonelinkSetupRounded, + } from '@material-ui/icons/PhonelinkSetupRounded'; + declare export { + default as PhonelinkSetupSharp, + } from '@material-ui/icons/PhonelinkSetupSharp'; + declare export { + default as PhonelinkSetupTwoTone, + } from '@material-ui/icons/PhonelinkSetupTwoTone'; + declare export { + default as PhonelinkSharp, + } from '@material-ui/icons/PhonelinkSharp'; + declare export { + default as PhonelinkTwoTone, + } from '@material-ui/icons/PhonelinkTwoTone'; + declare export { + default as PhoneLocked, + } from '@material-ui/icons/PhoneLocked'; + declare export { + default as PhoneLockedOutlined, + } from '@material-ui/icons/PhoneLockedOutlined'; + declare export { + default as PhoneLockedRounded, + } from '@material-ui/icons/PhoneLockedRounded'; + declare export { + default as PhoneLockedSharp, + } from '@material-ui/icons/PhoneLockedSharp'; + declare export { + default as PhoneLockedTwoTone, + } from '@material-ui/icons/PhoneLockedTwoTone'; + declare export { + default as PhoneMissed, + } from '@material-ui/icons/PhoneMissed'; + declare export { + default as PhoneMissedOutlined, + } from '@material-ui/icons/PhoneMissedOutlined'; + declare export { + default as PhoneMissedRounded, + } from '@material-ui/icons/PhoneMissedRounded'; + declare export { + default as PhoneMissedSharp, + } from '@material-ui/icons/PhoneMissedSharp'; + declare export { + default as PhoneMissedTwoTone, + } from '@material-ui/icons/PhoneMissedTwoTone'; + declare export { + default as PhoneOutlined, + } from '@material-ui/icons/PhoneOutlined'; + declare export { + default as PhonePaused, + } from '@material-ui/icons/PhonePaused'; + declare export { + default as PhonePausedOutlined, + } from '@material-ui/icons/PhonePausedOutlined'; + declare export { + default as PhonePausedRounded, + } from '@material-ui/icons/PhonePausedRounded'; + declare export { + default as PhonePausedSharp, + } from '@material-ui/icons/PhonePausedSharp'; + declare export { + default as PhonePausedTwoTone, + } from '@material-ui/icons/PhonePausedTwoTone'; + declare export { + default as PhoneRounded, + } from '@material-ui/icons/PhoneRounded'; + declare export { default as PhoneSharp } from '@material-ui/icons/PhoneSharp'; + declare export { + default as PhoneTwoTone, + } from '@material-ui/icons/PhoneTwoTone'; + declare export { default as PhotoAlbum } from '@material-ui/icons/PhotoAlbum'; + declare export { + default as PhotoAlbumOutlined, + } from '@material-ui/icons/PhotoAlbumOutlined'; + declare export { + default as PhotoAlbumRounded, + } from '@material-ui/icons/PhotoAlbumRounded'; + declare export { + default as PhotoAlbumSharp, + } from '@material-ui/icons/PhotoAlbumSharp'; + declare export { + default as PhotoAlbumTwoTone, + } from '@material-ui/icons/PhotoAlbumTwoTone'; + declare export { + default as PhotoCamera, + } from '@material-ui/icons/PhotoCamera'; + declare export { + default as PhotoCameraOutlined, + } from '@material-ui/icons/PhotoCameraOutlined'; + declare export { + default as PhotoCameraRounded, + } from '@material-ui/icons/PhotoCameraRounded'; + declare export { + default as PhotoCameraSharp, + } from '@material-ui/icons/PhotoCameraSharp'; + declare export { + default as PhotoCameraTwoTone, + } from '@material-ui/icons/PhotoCameraTwoTone'; + declare export { + default as PhotoFilter, + } from '@material-ui/icons/PhotoFilter'; + declare export { + default as PhotoFilterOutlined, + } from '@material-ui/icons/PhotoFilterOutlined'; + declare export { + default as PhotoFilterRounded, + } from '@material-ui/icons/PhotoFilterRounded'; + declare export { + default as PhotoFilterSharp, + } from '@material-ui/icons/PhotoFilterSharp'; + declare export { + default as PhotoFilterTwoTone, + } from '@material-ui/icons/PhotoFilterTwoTone'; + declare export { default as Photo } from '@material-ui/icons/Photo'; + declare export { + default as PhotoLibrary, + } from '@material-ui/icons/PhotoLibrary'; + declare export { + default as PhotoLibraryOutlined, + } from '@material-ui/icons/PhotoLibraryOutlined'; + declare export { + default as PhotoLibraryRounded, + } from '@material-ui/icons/PhotoLibraryRounded'; + declare export { + default as PhotoLibrarySharp, + } from '@material-ui/icons/PhotoLibrarySharp'; + declare export { + default as PhotoLibraryTwoTone, + } from '@material-ui/icons/PhotoLibraryTwoTone'; + declare export { + default as PhotoOutlined, + } from '@material-ui/icons/PhotoOutlined'; + declare export { + default as PhotoRounded, + } from '@material-ui/icons/PhotoRounded'; + declare export { default as PhotoSharp } from '@material-ui/icons/PhotoSharp'; + declare export { + default as PhotoSizeSelectActual, + } from '@material-ui/icons/PhotoSizeSelectActual'; + declare export { + default as PhotoSizeSelectActualOutlined, + } from '@material-ui/icons/PhotoSizeSelectActualOutlined'; + declare export { + default as PhotoSizeSelectActualRounded, + } from '@material-ui/icons/PhotoSizeSelectActualRounded'; + declare export { + default as PhotoSizeSelectActualSharp, + } from '@material-ui/icons/PhotoSizeSelectActualSharp'; + declare export { + default as PhotoSizeSelectActualTwoTone, + } from '@material-ui/icons/PhotoSizeSelectActualTwoTone'; + declare export { + default as PhotoSizeSelectLarge, + } from '@material-ui/icons/PhotoSizeSelectLarge'; + declare export { + default as PhotoSizeSelectLargeOutlined, + } from '@material-ui/icons/PhotoSizeSelectLargeOutlined'; + declare export { + default as PhotoSizeSelectLargeRounded, + } from '@material-ui/icons/PhotoSizeSelectLargeRounded'; + declare export { + default as PhotoSizeSelectLargeSharp, + } from '@material-ui/icons/PhotoSizeSelectLargeSharp'; + declare export { + default as PhotoSizeSelectLargeTwoTone, + } from '@material-ui/icons/PhotoSizeSelectLargeTwoTone'; + declare export { + default as PhotoSizeSelectSmall, + } from '@material-ui/icons/PhotoSizeSelectSmall'; + declare export { + default as PhotoSizeSelectSmallOutlined, + } from '@material-ui/icons/PhotoSizeSelectSmallOutlined'; + declare export { + default as PhotoSizeSelectSmallRounded, + } from '@material-ui/icons/PhotoSizeSelectSmallRounded'; + declare export { + default as PhotoSizeSelectSmallSharp, + } from '@material-ui/icons/PhotoSizeSelectSmallSharp'; + declare export { + default as PhotoSizeSelectSmallTwoTone, + } from '@material-ui/icons/PhotoSizeSelectSmallTwoTone'; + declare export { + default as PhotoTwoTone, + } from '@material-ui/icons/PhotoTwoTone'; + declare export { + default as PictureAsPdf, + } from '@material-ui/icons/PictureAsPdf'; + declare export { + default as PictureAsPdfOutlined, + } from '@material-ui/icons/PictureAsPdfOutlined'; + declare export { + default as PictureAsPdfRounded, + } from '@material-ui/icons/PictureAsPdfRounded'; + declare export { + default as PictureAsPdfSharp, + } from '@material-ui/icons/PictureAsPdfSharp'; + declare export { + default as PictureAsPdfTwoTone, + } from '@material-ui/icons/PictureAsPdfTwoTone'; + declare export { + default as PictureInPictureAlt, + } from '@material-ui/icons/PictureInPictureAlt'; + declare export { + default as PictureInPictureAltOutlined, + } from '@material-ui/icons/PictureInPictureAltOutlined'; + declare export { + default as PictureInPictureAltRounded, + } from '@material-ui/icons/PictureInPictureAltRounded'; + declare export { + default as PictureInPictureAltSharp, + } from '@material-ui/icons/PictureInPictureAltSharp'; + declare export { + default as PictureInPictureAltTwoTone, + } from '@material-ui/icons/PictureInPictureAltTwoTone'; + declare export { + default as PictureInPicture, + } from '@material-ui/icons/PictureInPicture'; + declare export { + default as PictureInPictureOutlined, + } from '@material-ui/icons/PictureInPictureOutlined'; + declare export { + default as PictureInPictureRounded, + } from '@material-ui/icons/PictureInPictureRounded'; + declare export { + default as PictureInPictureSharp, + } from '@material-ui/icons/PictureInPictureSharp'; + declare export { + default as PictureInPictureTwoTone, + } from '@material-ui/icons/PictureInPictureTwoTone'; + declare export { default as PieChart } from '@material-ui/icons/PieChart'; + declare export { + default as PieChartOutlined, + } from '@material-ui/icons/PieChartOutlined'; + declare export { + default as PieChartRounded, + } from '@material-ui/icons/PieChartRounded'; + declare export { + default as PieChartSharp, + } from '@material-ui/icons/PieChartSharp'; + declare export { + default as PieChartTwoTone, + } from '@material-ui/icons/PieChartTwoTone'; + declare export { default as PinDrop } from '@material-ui/icons/PinDrop'; + declare export { + default as PinDropOutlined, + } from '@material-ui/icons/PinDropOutlined'; + declare export { + default as PinDropRounded, + } from '@material-ui/icons/PinDropRounded'; + declare export { + default as PinDropSharp, + } from '@material-ui/icons/PinDropSharp'; + declare export { + default as PinDropTwoTone, + } from '@material-ui/icons/PinDropTwoTone'; + declare export { default as Place } from '@material-ui/icons/Place'; + declare export { + default as PlaceOutlined, + } from '@material-ui/icons/PlaceOutlined'; + declare export { + default as PlaceRounded, + } from '@material-ui/icons/PlaceRounded'; + declare export { default as PlaceSharp } from '@material-ui/icons/PlaceSharp'; + declare export { + default as PlaceTwoTone, + } from '@material-ui/icons/PlaceTwoTone'; + declare export { default as PlayArrow } from '@material-ui/icons/PlayArrow'; + declare export { + default as PlayArrowOutlined, + } from '@material-ui/icons/PlayArrowOutlined'; + declare export { + default as PlayArrowRounded, + } from '@material-ui/icons/PlayArrowRounded'; + declare export { + default as PlayArrowSharp, + } from '@material-ui/icons/PlayArrowSharp'; + declare export { + default as PlayArrowTwoTone, + } from '@material-ui/icons/PlayArrowTwoTone'; + declare export { + default as PlayCircleFilled, + } from '@material-ui/icons/PlayCircleFilled'; + declare export { + default as PlayCircleFilledOutlined, + } from '@material-ui/icons/PlayCircleFilledOutlined'; + declare export { + default as PlayCircleFilledRounded, + } from '@material-ui/icons/PlayCircleFilledRounded'; + declare export { + default as PlayCircleFilledSharp, + } from '@material-ui/icons/PlayCircleFilledSharp'; + declare export { + default as PlayCircleFilledTwoTone, + } from '@material-ui/icons/PlayCircleFilledTwoTone'; + declare export { + default as PlayCircleFilledWhite, + } from '@material-ui/icons/PlayCircleFilledWhite'; + declare export { + default as PlayCircleFilledWhiteOutlined, + } from '@material-ui/icons/PlayCircleFilledWhiteOutlined'; + declare export { + default as PlayCircleFilledWhiteRounded, + } from '@material-ui/icons/PlayCircleFilledWhiteRounded'; + declare export { + default as PlayCircleFilledWhiteSharp, + } from '@material-ui/icons/PlayCircleFilledWhiteSharp'; + declare export { + default as PlayCircleFilledWhiteTwoTone, + } from '@material-ui/icons/PlayCircleFilledWhiteTwoTone'; + declare export { + default as PlayCircleOutline, + } from '@material-ui/icons/PlayCircleOutline'; + declare export { + default as PlayCircleOutlineOutlined, + } from '@material-ui/icons/PlayCircleOutlineOutlined'; + declare export { + default as PlayCircleOutlineRounded, + } from '@material-ui/icons/PlayCircleOutlineRounded'; + declare export { + default as PlayCircleOutlineSharp, + } from '@material-ui/icons/PlayCircleOutlineSharp'; + declare export { + default as PlayCircleOutlineTwoTone, + } from '@material-ui/icons/PlayCircleOutlineTwoTone'; + declare export { + default as PlayForWork, + } from '@material-ui/icons/PlayForWork'; + declare export { + default as PlayForWorkOutlined, + } from '@material-ui/icons/PlayForWorkOutlined'; + declare export { + default as PlayForWorkRounded, + } from '@material-ui/icons/PlayForWorkRounded'; + declare export { + default as PlayForWorkSharp, + } from '@material-ui/icons/PlayForWorkSharp'; + declare export { + default as PlayForWorkTwoTone, + } from '@material-ui/icons/PlayForWorkTwoTone'; + declare export { + default as PlaylistAddCheck, + } from '@material-ui/icons/PlaylistAddCheck'; + declare export { + default as PlaylistAddCheckOutlined, + } from '@material-ui/icons/PlaylistAddCheckOutlined'; + declare export { + default as PlaylistAddCheckRounded, + } from '@material-ui/icons/PlaylistAddCheckRounded'; + declare export { + default as PlaylistAddCheckSharp, + } from '@material-ui/icons/PlaylistAddCheckSharp'; + declare export { + default as PlaylistAddCheckTwoTone, + } from '@material-ui/icons/PlaylistAddCheckTwoTone'; + declare export { + default as PlaylistAdd, + } from '@material-ui/icons/PlaylistAdd'; + declare export { + default as PlaylistAddOutlined, + } from '@material-ui/icons/PlaylistAddOutlined'; + declare export { + default as PlaylistAddRounded, + } from '@material-ui/icons/PlaylistAddRounded'; + declare export { + default as PlaylistAddSharp, + } from '@material-ui/icons/PlaylistAddSharp'; + declare export { + default as PlaylistAddTwoTone, + } from '@material-ui/icons/PlaylistAddTwoTone'; + declare export { + default as PlaylistPlay, + } from '@material-ui/icons/PlaylistPlay'; + declare export { + default as PlaylistPlayOutlined, + } from '@material-ui/icons/PlaylistPlayOutlined'; + declare export { + default as PlaylistPlayRounded, + } from '@material-ui/icons/PlaylistPlayRounded'; + declare export { + default as PlaylistPlaySharp, + } from '@material-ui/icons/PlaylistPlaySharp'; + declare export { + default as PlaylistPlayTwoTone, + } from '@material-ui/icons/PlaylistPlayTwoTone'; + declare export { default as PlusOne } from '@material-ui/icons/PlusOne'; + declare export { + default as PlusOneOutlined, + } from '@material-ui/icons/PlusOneOutlined'; + declare export { + default as PlusOneRounded, + } from '@material-ui/icons/PlusOneRounded'; + declare export { + default as PlusOneSharp, + } from '@material-ui/icons/PlusOneSharp'; + declare export { + default as PlusOneTwoTone, + } from '@material-ui/icons/PlusOneTwoTone'; + declare export { default as Poll } from '@material-ui/icons/Poll'; + declare export { + default as PollOutlined, + } from '@material-ui/icons/PollOutlined'; + declare export { + default as PollRounded, + } from '@material-ui/icons/PollRounded'; + declare export { default as PollSharp } from '@material-ui/icons/PollSharp'; + declare export { + default as PollTwoTone, + } from '@material-ui/icons/PollTwoTone'; + declare export { default as Polymer } from '@material-ui/icons/Polymer'; + declare export { + default as PolymerOutlined, + } from '@material-ui/icons/PolymerOutlined'; + declare export { + default as PolymerRounded, + } from '@material-ui/icons/PolymerRounded'; + declare export { + default as PolymerSharp, + } from '@material-ui/icons/PolymerSharp'; + declare export { + default as PolymerTwoTone, + } from '@material-ui/icons/PolymerTwoTone'; + declare export { default as Pool } from '@material-ui/icons/Pool'; + declare export { + default as PoolOutlined, + } from '@material-ui/icons/PoolOutlined'; + declare export { + default as PoolRounded, + } from '@material-ui/icons/PoolRounded'; + declare export { default as PoolSharp } from '@material-ui/icons/PoolSharp'; + declare export { + default as PoolTwoTone, + } from '@material-ui/icons/PoolTwoTone'; + declare export { + default as PortableWifiOff, + } from '@material-ui/icons/PortableWifiOff'; + declare export { + default as PortableWifiOffOutlined, + } from '@material-ui/icons/PortableWifiOffOutlined'; + declare export { + default as PortableWifiOffRounded, + } from '@material-ui/icons/PortableWifiOffRounded'; + declare export { + default as PortableWifiOffSharp, + } from '@material-ui/icons/PortableWifiOffSharp'; + declare export { + default as PortableWifiOffTwoTone, + } from '@material-ui/icons/PortableWifiOffTwoTone'; + declare export { default as Portrait } from '@material-ui/icons/Portrait'; + declare export { + default as PortraitOutlined, + } from '@material-ui/icons/PortraitOutlined'; + declare export { + default as PortraitRounded, + } from '@material-ui/icons/PortraitRounded'; + declare export { + default as PortraitSharp, + } from '@material-ui/icons/PortraitSharp'; + declare export { + default as PortraitTwoTone, + } from '@material-ui/icons/PortraitTwoTone'; + declare export { default as PowerInput } from '@material-ui/icons/PowerInput'; + declare export { + default as PowerInputOutlined, + } from '@material-ui/icons/PowerInputOutlined'; + declare export { + default as PowerInputRounded, + } from '@material-ui/icons/PowerInputRounded'; + declare export { + default as PowerInputSharp, + } from '@material-ui/icons/PowerInputSharp'; + declare export { + default as PowerInputTwoTone, + } from '@material-ui/icons/PowerInputTwoTone'; + declare export { default as Power } from '@material-ui/icons/Power'; + declare export { default as PowerOff } from '@material-ui/icons/PowerOff'; + declare export { + default as PowerOffOutlined, + } from '@material-ui/icons/PowerOffOutlined'; + declare export { + default as PowerOffRounded, + } from '@material-ui/icons/PowerOffRounded'; + declare export { + default as PowerOffSharp, + } from '@material-ui/icons/PowerOffSharp'; + declare export { + default as PowerOffTwoTone, + } from '@material-ui/icons/PowerOffTwoTone'; + declare export { + default as PowerOutlined, + } from '@material-ui/icons/PowerOutlined'; + declare export { + default as PowerRounded, + } from '@material-ui/icons/PowerRounded'; + declare export { + default as PowerSettingsNew, + } from '@material-ui/icons/PowerSettingsNew'; + declare export { + default as PowerSettingsNewOutlined, + } from '@material-ui/icons/PowerSettingsNewOutlined'; + declare export { + default as PowerSettingsNewRounded, + } from '@material-ui/icons/PowerSettingsNewRounded'; + declare export { + default as PowerSettingsNewSharp, + } from '@material-ui/icons/PowerSettingsNewSharp'; + declare export { + default as PowerSettingsNewTwoTone, + } from '@material-ui/icons/PowerSettingsNewTwoTone'; + declare export { default as PowerSharp } from '@material-ui/icons/PowerSharp'; + declare export { + default as PowerTwoTone, + } from '@material-ui/icons/PowerTwoTone'; + declare export { + default as PregnantWoman, + } from '@material-ui/icons/PregnantWoman'; + declare export { + default as PregnantWomanOutlined, + } from '@material-ui/icons/PregnantWomanOutlined'; + declare export { + default as PregnantWomanRounded, + } from '@material-ui/icons/PregnantWomanRounded'; + declare export { + default as PregnantWomanSharp, + } from '@material-ui/icons/PregnantWomanSharp'; + declare export { + default as PregnantWomanTwoTone, + } from '@material-ui/icons/PregnantWomanTwoTone'; + declare export { + default as PresentToAll, + } from '@material-ui/icons/PresentToAll'; + declare export { + default as PresentToAllOutlined, + } from '@material-ui/icons/PresentToAllOutlined'; + declare export { + default as PresentToAllRounded, + } from '@material-ui/icons/PresentToAllRounded'; + declare export { + default as PresentToAllSharp, + } from '@material-ui/icons/PresentToAllSharp'; + declare export { + default as PresentToAllTwoTone, + } from '@material-ui/icons/PresentToAllTwoTone'; + declare export { + default as PrintDisabled, + } from '@material-ui/icons/PrintDisabled'; + declare export { + default as PrintDisabledOutlined, + } from '@material-ui/icons/PrintDisabledOutlined'; + declare export { + default as PrintDisabledRounded, + } from '@material-ui/icons/PrintDisabledRounded'; + declare export { + default as PrintDisabledSharp, + } from '@material-ui/icons/PrintDisabledSharp'; + declare export { + default as PrintDisabledTwoTone, + } from '@material-ui/icons/PrintDisabledTwoTone'; + declare export { default as Print } from '@material-ui/icons/Print'; + declare export { + default as PrintOutlined, + } from '@material-ui/icons/PrintOutlined'; + declare export { + default as PrintRounded, + } from '@material-ui/icons/PrintRounded'; + declare export { default as PrintSharp } from '@material-ui/icons/PrintSharp'; + declare export { + default as PrintTwoTone, + } from '@material-ui/icons/PrintTwoTone'; + declare export { + default as PriorityHigh, + } from '@material-ui/icons/PriorityHigh'; + declare export { + default as PriorityHighOutlined, + } from '@material-ui/icons/PriorityHighOutlined'; + declare export { + default as PriorityHighRounded, + } from '@material-ui/icons/PriorityHighRounded'; + declare export { + default as PriorityHighSharp, + } from '@material-ui/icons/PriorityHighSharp'; + declare export { + default as PriorityHighTwoTone, + } from '@material-ui/icons/PriorityHighTwoTone'; + declare export { default as Public } from '@material-ui/icons/Public'; + declare export { + default as PublicOutlined, + } from '@material-ui/icons/PublicOutlined'; + declare export { + default as PublicRounded, + } from '@material-ui/icons/PublicRounded'; + declare export { + default as PublicSharp, + } from '@material-ui/icons/PublicSharp'; + declare export { + default as PublicTwoTone, + } from '@material-ui/icons/PublicTwoTone'; + declare export { default as Publish } from '@material-ui/icons/Publish'; + declare export { + default as PublishOutlined, + } from '@material-ui/icons/PublishOutlined'; + declare export { + default as PublishRounded, + } from '@material-ui/icons/PublishRounded'; + declare export { + default as PublishSharp, + } from '@material-ui/icons/PublishSharp'; + declare export { + default as PublishTwoTone, + } from '@material-ui/icons/PublishTwoTone'; + declare export { + default as QueryBuilder, + } from '@material-ui/icons/QueryBuilder'; + declare export { + default as QueryBuilderOutlined, + } from '@material-ui/icons/QueryBuilderOutlined'; + declare export { + default as QueryBuilderRounded, + } from '@material-ui/icons/QueryBuilderRounded'; + declare export { + default as QueryBuilderSharp, + } from '@material-ui/icons/QueryBuilderSharp'; + declare export { + default as QueryBuilderTwoTone, + } from '@material-ui/icons/QueryBuilderTwoTone'; + declare export { + default as QuestionAnswer, + } from '@material-ui/icons/QuestionAnswer'; + declare export { + default as QuestionAnswerOutlined, + } from '@material-ui/icons/QuestionAnswerOutlined'; + declare export { + default as QuestionAnswerRounded, + } from '@material-ui/icons/QuestionAnswerRounded'; + declare export { + default as QuestionAnswerSharp, + } from '@material-ui/icons/QuestionAnswerSharp'; + declare export { + default as QuestionAnswerTwoTone, + } from '@material-ui/icons/QuestionAnswerTwoTone'; + declare export { default as Queue } from '@material-ui/icons/Queue'; + declare export { default as QueueMusic } from '@material-ui/icons/QueueMusic'; + declare export { + default as QueueMusicOutlined, + } from '@material-ui/icons/QueueMusicOutlined'; + declare export { + default as QueueMusicRounded, + } from '@material-ui/icons/QueueMusicRounded'; + declare export { + default as QueueMusicSharp, + } from '@material-ui/icons/QueueMusicSharp'; + declare export { + default as QueueMusicTwoTone, + } from '@material-ui/icons/QueueMusicTwoTone'; + declare export { + default as QueueOutlined, + } from '@material-ui/icons/QueueOutlined'; + declare export { + default as QueuePlayNext, + } from '@material-ui/icons/QueuePlayNext'; + declare export { + default as QueuePlayNextOutlined, + } from '@material-ui/icons/QueuePlayNextOutlined'; + declare export { + default as QueuePlayNextRounded, + } from '@material-ui/icons/QueuePlayNextRounded'; + declare export { + default as QueuePlayNextSharp, + } from '@material-ui/icons/QueuePlayNextSharp'; + declare export { + default as QueuePlayNextTwoTone, + } from '@material-ui/icons/QueuePlayNextTwoTone'; + declare export { + default as QueueRounded, + } from '@material-ui/icons/QueueRounded'; + declare export { default as QueueSharp } from '@material-ui/icons/QueueSharp'; + declare export { + default as QueueTwoTone, + } from '@material-ui/icons/QueueTwoTone'; + declare export { + default as RadioButtonChecked, + } from '@material-ui/icons/RadioButtonChecked'; + declare export { + default as RadioButtonCheckedOutlined, + } from '@material-ui/icons/RadioButtonCheckedOutlined'; + declare export { + default as RadioButtonCheckedRounded, + } from '@material-ui/icons/RadioButtonCheckedRounded'; + declare export { + default as RadioButtonCheckedSharp, + } from '@material-ui/icons/RadioButtonCheckedSharp'; + declare export { + default as RadioButtonCheckedTwoTone, + } from '@material-ui/icons/RadioButtonCheckedTwoTone'; + declare export { + default as RadioButtonUnchecked, + } from '@material-ui/icons/RadioButtonUnchecked'; + declare export { + default as RadioButtonUncheckedOutlined, + } from '@material-ui/icons/RadioButtonUncheckedOutlined'; + declare export { + default as RadioButtonUncheckedRounded, + } from '@material-ui/icons/RadioButtonUncheckedRounded'; + declare export { + default as RadioButtonUncheckedSharp, + } from '@material-ui/icons/RadioButtonUncheckedSharp'; + declare export { + default as RadioButtonUncheckedTwoTone, + } from '@material-ui/icons/RadioButtonUncheckedTwoTone'; + declare export { default as Radio } from '@material-ui/icons/Radio'; + declare export { + default as RadioOutlined, + } from '@material-ui/icons/RadioOutlined'; + declare export { + default as RadioRounded, + } from '@material-ui/icons/RadioRounded'; + declare export { default as RadioSharp } from '@material-ui/icons/RadioSharp'; + declare export { + default as RadioTwoTone, + } from '@material-ui/icons/RadioTwoTone'; + declare export { default as RateReview } from '@material-ui/icons/RateReview'; + declare export { + default as RateReviewOutlined, + } from '@material-ui/icons/RateReviewOutlined'; + declare export { + default as RateReviewRounded, + } from '@material-ui/icons/RateReviewRounded'; + declare export { + default as RateReviewSharp, + } from '@material-ui/icons/RateReviewSharp'; + declare export { + default as RateReviewTwoTone, + } from '@material-ui/icons/RateReviewTwoTone'; + declare export { default as Receipt } from '@material-ui/icons/Receipt'; + declare export { + default as ReceiptOutlined, + } from '@material-ui/icons/ReceiptOutlined'; + declare export { + default as ReceiptRounded, + } from '@material-ui/icons/ReceiptRounded'; + declare export { + default as ReceiptSharp, + } from '@material-ui/icons/ReceiptSharp'; + declare export { + default as ReceiptTwoTone, + } from '@material-ui/icons/ReceiptTwoTone'; + declare export { + default as RecentActors, + } from '@material-ui/icons/RecentActors'; + declare export { + default as RecentActorsOutlined, + } from '@material-ui/icons/RecentActorsOutlined'; + declare export { + default as RecentActorsRounded, + } from '@material-ui/icons/RecentActorsRounded'; + declare export { + default as RecentActorsSharp, + } from '@material-ui/icons/RecentActorsSharp'; + declare export { + default as RecentActorsTwoTone, + } from '@material-ui/icons/RecentActorsTwoTone'; + declare export { + default as RecordVoiceOver, + } from '@material-ui/icons/RecordVoiceOver'; + declare export { + default as RecordVoiceOverOutlined, + } from '@material-ui/icons/RecordVoiceOverOutlined'; + declare export { + default as RecordVoiceOverRounded, + } from '@material-ui/icons/RecordVoiceOverRounded'; + declare export { + default as RecordVoiceOverSharp, + } from '@material-ui/icons/RecordVoiceOverSharp'; + declare export { + default as RecordVoiceOverTwoTone, + } from '@material-ui/icons/RecordVoiceOverTwoTone'; + declare export { default as Redeem } from '@material-ui/icons/Redeem'; + declare export { + default as RedeemOutlined, + } from '@material-ui/icons/RedeemOutlined'; + declare export { + default as RedeemRounded, + } from '@material-ui/icons/RedeemRounded'; + declare export { + default as RedeemSharp, + } from '@material-ui/icons/RedeemSharp'; + declare export { + default as RedeemTwoTone, + } from '@material-ui/icons/RedeemTwoTone'; + declare export { default as Redo } from '@material-ui/icons/Redo'; + declare export { + default as RedoOutlined, + } from '@material-ui/icons/RedoOutlined'; + declare export { + default as RedoRounded, + } from '@material-ui/icons/RedoRounded'; + declare export { default as RedoSharp } from '@material-ui/icons/RedoSharp'; + declare export { + default as RedoTwoTone, + } from '@material-ui/icons/RedoTwoTone'; + declare export { default as Refresh } from '@material-ui/icons/Refresh'; + declare export { + default as RefreshOutlined, + } from '@material-ui/icons/RefreshOutlined'; + declare export { + default as RefreshRounded, + } from '@material-ui/icons/RefreshRounded'; + declare export { + default as RefreshSharp, + } from '@material-ui/icons/RefreshSharp'; + declare export { + default as RefreshTwoTone, + } from '@material-ui/icons/RefreshTwoTone'; + declare export { + default as RemoveCircle, + } from '@material-ui/icons/RemoveCircle'; + declare export { + default as RemoveCircleOutlined, + } from '@material-ui/icons/RemoveCircleOutlined'; + declare export { + default as RemoveCircleOutline, + } from '@material-ui/icons/RemoveCircleOutline'; + declare export { + default as RemoveCircleOutlineOutlined, + } from '@material-ui/icons/RemoveCircleOutlineOutlined'; + declare export { + default as RemoveCircleOutlineRounded, + } from '@material-ui/icons/RemoveCircleOutlineRounded'; + declare export { + default as RemoveCircleOutlineSharp, + } from '@material-ui/icons/RemoveCircleOutlineSharp'; + declare export { + default as RemoveCircleOutlineTwoTone, + } from '@material-ui/icons/RemoveCircleOutlineTwoTone'; + declare export { + default as RemoveCircleRounded, + } from '@material-ui/icons/RemoveCircleRounded'; + declare export { + default as RemoveCircleSharp, + } from '@material-ui/icons/RemoveCircleSharp'; + declare export { + default as RemoveCircleTwoTone, + } from '@material-ui/icons/RemoveCircleTwoTone'; + declare export { + default as RemoveFromQueue, + } from '@material-ui/icons/RemoveFromQueue'; + declare export { + default as RemoveFromQueueOutlined, + } from '@material-ui/icons/RemoveFromQueueOutlined'; + declare export { + default as RemoveFromQueueRounded, + } from '@material-ui/icons/RemoveFromQueueRounded'; + declare export { + default as RemoveFromQueueSharp, + } from '@material-ui/icons/RemoveFromQueueSharp'; + declare export { + default as RemoveFromQueueTwoTone, + } from '@material-ui/icons/RemoveFromQueueTwoTone'; + declare export { default as Remove } from '@material-ui/icons/Remove'; + declare export { + default as RemoveOutlined, + } from '@material-ui/icons/RemoveOutlined'; + declare export { + default as RemoveRedEye, + } from '@material-ui/icons/RemoveRedEye'; + declare export { + default as RemoveRedEyeOutlined, + } from '@material-ui/icons/RemoveRedEyeOutlined'; + declare export { + default as RemoveRedEyeRounded, + } from '@material-ui/icons/RemoveRedEyeRounded'; + declare export { + default as RemoveRedEyeSharp, + } from '@material-ui/icons/RemoveRedEyeSharp'; + declare export { + default as RemoveRedEyeTwoTone, + } from '@material-ui/icons/RemoveRedEyeTwoTone'; + declare export { + default as RemoveRounded, + } from '@material-ui/icons/RemoveRounded'; + declare export { + default as RemoveSharp, + } from '@material-ui/icons/RemoveSharp'; + declare export { + default as RemoveShoppingCart, + } from '@material-ui/icons/RemoveShoppingCart'; + declare export { + default as RemoveShoppingCartOutlined, + } from '@material-ui/icons/RemoveShoppingCartOutlined'; + declare export { + default as RemoveShoppingCartRounded, + } from '@material-ui/icons/RemoveShoppingCartRounded'; + declare export { + default as RemoveShoppingCartSharp, + } from '@material-ui/icons/RemoveShoppingCartSharp'; + declare export { + default as RemoveShoppingCartTwoTone, + } from '@material-ui/icons/RemoveShoppingCartTwoTone'; + declare export { + default as RemoveTwoTone, + } from '@material-ui/icons/RemoveTwoTone'; + declare export { default as Reorder } from '@material-ui/icons/Reorder'; + declare export { + default as ReorderOutlined, + } from '@material-ui/icons/ReorderOutlined'; + declare export { + default as ReorderRounded, + } from '@material-ui/icons/ReorderRounded'; + declare export { + default as ReorderSharp, + } from '@material-ui/icons/ReorderSharp'; + declare export { + default as ReorderTwoTone, + } from '@material-ui/icons/ReorderTwoTone'; + declare export { default as Repeat } from '@material-ui/icons/Repeat'; + declare export { default as RepeatOne } from '@material-ui/icons/RepeatOne'; + declare export { + default as RepeatOneOutlined, + } from '@material-ui/icons/RepeatOneOutlined'; + declare export { + default as RepeatOneRounded, + } from '@material-ui/icons/RepeatOneRounded'; + declare export { + default as RepeatOneSharp, + } from '@material-ui/icons/RepeatOneSharp'; + declare export { + default as RepeatOneTwoTone, + } from '@material-ui/icons/RepeatOneTwoTone'; + declare export { + default as RepeatOutlined, + } from '@material-ui/icons/RepeatOutlined'; + declare export { + default as RepeatRounded, + } from '@material-ui/icons/RepeatRounded'; + declare export { + default as RepeatSharp, + } from '@material-ui/icons/RepeatSharp'; + declare export { + default as RepeatTwoTone, + } from '@material-ui/icons/RepeatTwoTone'; + declare export { default as Replay10 } from '@material-ui/icons/Replay10'; + declare export { + default as Replay10Outlined, + } from '@material-ui/icons/Replay10Outlined'; + declare export { + default as Replay10Rounded, + } from '@material-ui/icons/Replay10Rounded'; + declare export { + default as Replay10Sharp, + } from '@material-ui/icons/Replay10Sharp'; + declare export { + default as Replay10TwoTone, + } from '@material-ui/icons/Replay10TwoTone'; + declare export { default as Replay30 } from '@material-ui/icons/Replay30'; + declare export { + default as Replay30Outlined, + } from '@material-ui/icons/Replay30Outlined'; + declare export { + default as Replay30Rounded, + } from '@material-ui/icons/Replay30Rounded'; + declare export { + default as Replay30Sharp, + } from '@material-ui/icons/Replay30Sharp'; + declare export { + default as Replay30TwoTone, + } from '@material-ui/icons/Replay30TwoTone'; + declare export { default as Replay5 } from '@material-ui/icons/Replay5'; + declare export { + default as Replay5Outlined, + } from '@material-ui/icons/Replay5Outlined'; + declare export { + default as Replay5Rounded, + } from '@material-ui/icons/Replay5Rounded'; + declare export { + default as Replay5Sharp, + } from '@material-ui/icons/Replay5Sharp'; + declare export { + default as Replay5TwoTone, + } from '@material-ui/icons/Replay5TwoTone'; + declare export { default as Replay } from '@material-ui/icons/Replay'; + declare export { + default as ReplayOutlined, + } from '@material-ui/icons/ReplayOutlined'; + declare export { + default as ReplayRounded, + } from '@material-ui/icons/ReplayRounded'; + declare export { + default as ReplaySharp, + } from '@material-ui/icons/ReplaySharp'; + declare export { + default as ReplayTwoTone, + } from '@material-ui/icons/ReplayTwoTone'; + declare export { default as ReplyAll } from '@material-ui/icons/ReplyAll'; + declare export { + default as ReplyAllOutlined, + } from '@material-ui/icons/ReplyAllOutlined'; + declare export { + default as ReplyAllRounded, + } from '@material-ui/icons/ReplyAllRounded'; + declare export { + default as ReplyAllSharp, + } from '@material-ui/icons/ReplyAllSharp'; + declare export { + default as ReplyAllTwoTone, + } from '@material-ui/icons/ReplyAllTwoTone'; + declare export { default as Reply } from '@material-ui/icons/Reply'; + declare export { + default as ReplyOutlined, + } from '@material-ui/icons/ReplyOutlined'; + declare export { + default as ReplyRounded, + } from '@material-ui/icons/ReplyRounded'; + declare export { default as ReplySharp } from '@material-ui/icons/ReplySharp'; + declare export { + default as ReplyTwoTone, + } from '@material-ui/icons/ReplyTwoTone'; + declare export { default as Report } from '@material-ui/icons/Report'; + declare export { default as ReportOff } from '@material-ui/icons/ReportOff'; + declare export { + default as ReportOffOutlined, + } from '@material-ui/icons/ReportOffOutlined'; + declare export { + default as ReportOffRounded, + } from '@material-ui/icons/ReportOffRounded'; + declare export { + default as ReportOffSharp, + } from '@material-ui/icons/ReportOffSharp'; + declare export { + default as ReportOffTwoTone, + } from '@material-ui/icons/ReportOffTwoTone'; + declare export { + default as ReportOutlined, + } from '@material-ui/icons/ReportOutlined'; + declare export { + default as ReportProblem, + } from '@material-ui/icons/ReportProblem'; + declare export { + default as ReportProblemOutlined, + } from '@material-ui/icons/ReportProblemOutlined'; + declare export { + default as ReportProblemRounded, + } from '@material-ui/icons/ReportProblemRounded'; + declare export { + default as ReportProblemSharp, + } from '@material-ui/icons/ReportProblemSharp'; + declare export { + default as ReportProblemTwoTone, + } from '@material-ui/icons/ReportProblemTwoTone'; + declare export { + default as ReportRounded, + } from '@material-ui/icons/ReportRounded'; + declare export { + default as ReportSharp, + } from '@material-ui/icons/ReportSharp'; + declare export { + default as ReportTwoTone, + } from '@material-ui/icons/ReportTwoTone'; + declare export { default as Restaurant } from '@material-ui/icons/Restaurant'; + declare export { + default as RestaurantMenu, + } from '@material-ui/icons/RestaurantMenu'; + declare export { + default as RestaurantMenuOutlined, + } from '@material-ui/icons/RestaurantMenuOutlined'; + declare export { + default as RestaurantMenuRounded, + } from '@material-ui/icons/RestaurantMenuRounded'; + declare export { + default as RestaurantMenuSharp, + } from '@material-ui/icons/RestaurantMenuSharp'; + declare export { + default as RestaurantMenuTwoTone, + } from '@material-ui/icons/RestaurantMenuTwoTone'; + declare export { + default as RestaurantOutlined, + } from '@material-ui/icons/RestaurantOutlined'; + declare export { + default as RestaurantRounded, + } from '@material-ui/icons/RestaurantRounded'; + declare export { + default as RestaurantSharp, + } from '@material-ui/icons/RestaurantSharp'; + declare export { + default as RestaurantTwoTone, + } from '@material-ui/icons/RestaurantTwoTone'; + declare export { + default as RestoreFromTrash, + } from '@material-ui/icons/RestoreFromTrash'; + declare export { + default as RestoreFromTrashOutlined, + } from '@material-ui/icons/RestoreFromTrashOutlined'; + declare export { + default as RestoreFromTrashRounded, + } from '@material-ui/icons/RestoreFromTrashRounded'; + declare export { + default as RestoreFromTrashSharp, + } from '@material-ui/icons/RestoreFromTrashSharp'; + declare export { + default as RestoreFromTrashTwoTone, + } from '@material-ui/icons/RestoreFromTrashTwoTone'; + declare export { default as Restore } from '@material-ui/icons/Restore'; + declare export { + default as RestoreOutlined, + } from '@material-ui/icons/RestoreOutlined'; + declare export { + default as RestorePage, + } from '@material-ui/icons/RestorePage'; + declare export { + default as RestorePageOutlined, + } from '@material-ui/icons/RestorePageOutlined'; + declare export { + default as RestorePageRounded, + } from '@material-ui/icons/RestorePageRounded'; + declare export { + default as RestorePageSharp, + } from '@material-ui/icons/RestorePageSharp'; + declare export { + default as RestorePageTwoTone, + } from '@material-ui/icons/RestorePageTwoTone'; + declare export { + default as RestoreRounded, + } from '@material-ui/icons/RestoreRounded'; + declare export { + default as RestoreSharp, + } from '@material-ui/icons/RestoreSharp'; + declare export { + default as RestoreTwoTone, + } from '@material-ui/icons/RestoreTwoTone'; + declare export { default as RingVolume } from '@material-ui/icons/RingVolume'; + declare export { + default as RingVolumeOutlined, + } from '@material-ui/icons/RingVolumeOutlined'; + declare export { + default as RingVolumeRounded, + } from '@material-ui/icons/RingVolumeRounded'; + declare export { + default as RingVolumeSharp, + } from '@material-ui/icons/RingVolumeSharp'; + declare export { + default as RingVolumeTwoTone, + } from '@material-ui/icons/RingVolumeTwoTone'; + declare export { default as Room } from '@material-ui/icons/Room'; + declare export { + default as RoomOutlined, + } from '@material-ui/icons/RoomOutlined'; + declare export { + default as RoomRounded, + } from '@material-ui/icons/RoomRounded'; + declare export { + default as RoomService, + } from '@material-ui/icons/RoomService'; + declare export { + default as RoomServiceOutlined, + } from '@material-ui/icons/RoomServiceOutlined'; + declare export { + default as RoomServiceRounded, + } from '@material-ui/icons/RoomServiceRounded'; + declare export { + default as RoomServiceSharp, + } from '@material-ui/icons/RoomServiceSharp'; + declare export { + default as RoomServiceTwoTone, + } from '@material-ui/icons/RoomServiceTwoTone'; + declare export { default as RoomSharp } from '@material-ui/icons/RoomSharp'; + declare export { + default as RoomTwoTone, + } from '@material-ui/icons/RoomTwoTone'; + declare export { + default as Rotate90DegreesCcw, + } from '@material-ui/icons/Rotate90DegreesCcw'; + declare export { + default as Rotate90DegreesCcwOutlined, + } from '@material-ui/icons/Rotate90DegreesCcwOutlined'; + declare export { + default as Rotate90DegreesCcwRounded, + } from '@material-ui/icons/Rotate90DegreesCcwRounded'; + declare export { + default as Rotate90DegreesCcwSharp, + } from '@material-ui/icons/Rotate90DegreesCcwSharp'; + declare export { + default as Rotate90DegreesCcwTwoTone, + } from '@material-ui/icons/Rotate90DegreesCcwTwoTone'; + declare export { default as RotateLeft } from '@material-ui/icons/RotateLeft'; + declare export { + default as RotateLeftOutlined, + } from '@material-ui/icons/RotateLeftOutlined'; + declare export { + default as RotateLeftRounded, + } from '@material-ui/icons/RotateLeftRounded'; + declare export { + default as RotateLeftSharp, + } from '@material-ui/icons/RotateLeftSharp'; + declare export { + default as RotateLeftTwoTone, + } from '@material-ui/icons/RotateLeftTwoTone'; + declare export { + default as RotateRight, + } from '@material-ui/icons/RotateRight'; + declare export { + default as RotateRightOutlined, + } from '@material-ui/icons/RotateRightOutlined'; + declare export { + default as RotateRightRounded, + } from '@material-ui/icons/RotateRightRounded'; + declare export { + default as RotateRightSharp, + } from '@material-ui/icons/RotateRightSharp'; + declare export { + default as RotateRightTwoTone, + } from '@material-ui/icons/RotateRightTwoTone'; + declare export { + default as RoundedCorner, + } from '@material-ui/icons/RoundedCorner'; + declare export { + default as RoundedCornerOutlined, + } from '@material-ui/icons/RoundedCornerOutlined'; + declare export { + default as RoundedCornerRounded, + } from '@material-ui/icons/RoundedCornerRounded'; + declare export { + default as RoundedCornerSharp, + } from '@material-ui/icons/RoundedCornerSharp'; + declare export { + default as RoundedCornerTwoTone, + } from '@material-ui/icons/RoundedCornerTwoTone'; + declare export { default as Router } from '@material-ui/icons/Router'; + declare export { + default as RouterOutlined, + } from '@material-ui/icons/RouterOutlined'; + declare export { + default as RouterRounded, + } from '@material-ui/icons/RouterRounded'; + declare export { + default as RouterSharp, + } from '@material-ui/icons/RouterSharp'; + declare export { + default as RouterTwoTone, + } from '@material-ui/icons/RouterTwoTone'; + declare export { default as Rowing } from '@material-ui/icons/Rowing'; + declare export { + default as RowingOutlined, + } from '@material-ui/icons/RowingOutlined'; + declare export { + default as RowingRounded, + } from '@material-ui/icons/RowingRounded'; + declare export { + default as RowingSharp, + } from '@material-ui/icons/RowingSharp'; + declare export { + default as RowingTwoTone, + } from '@material-ui/icons/RowingTwoTone'; + declare export { default as RssFeed } from '@material-ui/icons/RssFeed'; + declare export { + default as RssFeedOutlined, + } from '@material-ui/icons/RssFeedOutlined'; + declare export { + default as RssFeedRounded, + } from '@material-ui/icons/RssFeedRounded'; + declare export { + default as RssFeedSharp, + } from '@material-ui/icons/RssFeedSharp'; + declare export { + default as RssFeedTwoTone, + } from '@material-ui/icons/RssFeedTwoTone'; + declare export { default as RvHookup } from '@material-ui/icons/RvHookup'; + declare export { + default as RvHookupOutlined, + } from '@material-ui/icons/RvHookupOutlined'; + declare export { + default as RvHookupRounded, + } from '@material-ui/icons/RvHookupRounded'; + declare export { + default as RvHookupSharp, + } from '@material-ui/icons/RvHookupSharp'; + declare export { + default as RvHookupTwoTone, + } from '@material-ui/icons/RvHookupTwoTone'; + declare export { default as Satellite } from '@material-ui/icons/Satellite'; + declare export { + default as SatelliteOutlined, + } from '@material-ui/icons/SatelliteOutlined'; + declare export { + default as SatelliteRounded, + } from '@material-ui/icons/SatelliteRounded'; + declare export { + default as SatelliteSharp, + } from '@material-ui/icons/SatelliteSharp'; + declare export { + default as SatelliteTwoTone, + } from '@material-ui/icons/SatelliteTwoTone'; + declare export { default as SaveAlt } from '@material-ui/icons/SaveAlt'; + declare export { + default as SaveAltOutlined, + } from '@material-ui/icons/SaveAltOutlined'; + declare export { + default as SaveAltRounded, + } from '@material-ui/icons/SaveAltRounded'; + declare export { + default as SaveAltSharp, + } from '@material-ui/icons/SaveAltSharp'; + declare export { + default as SaveAltTwoTone, + } from '@material-ui/icons/SaveAltTwoTone'; + declare export { default as Save } from '@material-ui/icons/Save'; + declare export { + default as SaveOutlined, + } from '@material-ui/icons/SaveOutlined'; + declare export { + default as SaveRounded, + } from '@material-ui/icons/SaveRounded'; + declare export { default as SaveSharp } from '@material-ui/icons/SaveSharp'; + declare export { + default as SaveTwoTone, + } from '@material-ui/icons/SaveTwoTone'; + declare export { default as Scanner } from '@material-ui/icons/Scanner'; + declare export { + default as ScannerOutlined, + } from '@material-ui/icons/ScannerOutlined'; + declare export { + default as ScannerRounded, + } from '@material-ui/icons/ScannerRounded'; + declare export { + default as ScannerSharp, + } from '@material-ui/icons/ScannerSharp'; + declare export { + default as ScannerTwoTone, + } from '@material-ui/icons/ScannerTwoTone'; + declare export { + default as ScatterPlot, + } from '@material-ui/icons/ScatterPlot'; + declare export { + default as ScatterPlotOutlined, + } from '@material-ui/icons/ScatterPlotOutlined'; + declare export { + default as ScatterPlotRounded, + } from '@material-ui/icons/ScatterPlotRounded'; + declare export { + default as ScatterPlotSharp, + } from '@material-ui/icons/ScatterPlotSharp'; + declare export { + default as ScatterPlotTwoTone, + } from '@material-ui/icons/ScatterPlotTwoTone'; + declare export { default as Schedule } from '@material-ui/icons/Schedule'; + declare export { + default as ScheduleOutlined, + } from '@material-ui/icons/ScheduleOutlined'; + declare export { + default as ScheduleRounded, + } from '@material-ui/icons/ScheduleRounded'; + declare export { + default as ScheduleSharp, + } from '@material-ui/icons/ScheduleSharp'; + declare export { + default as ScheduleTwoTone, + } from '@material-ui/icons/ScheduleTwoTone'; + declare export { default as School } from '@material-ui/icons/School'; + declare export { + default as SchoolOutlined, + } from '@material-ui/icons/SchoolOutlined'; + declare export { + default as SchoolRounded, + } from '@material-ui/icons/SchoolRounded'; + declare export { + default as SchoolSharp, + } from '@material-ui/icons/SchoolSharp'; + declare export { + default as SchoolTwoTone, + } from '@material-ui/icons/SchoolTwoTone'; + declare export { default as Score } from '@material-ui/icons/Score'; + declare export { + default as ScoreOutlined, + } from '@material-ui/icons/ScoreOutlined'; + declare export { + default as ScoreRounded, + } from '@material-ui/icons/ScoreRounded'; + declare export { default as ScoreSharp } from '@material-ui/icons/ScoreSharp'; + declare export { + default as ScoreTwoTone, + } from '@material-ui/icons/ScoreTwoTone'; + declare export { + default as ScreenLockLandscape, + } from '@material-ui/icons/ScreenLockLandscape'; + declare export { + default as ScreenLockLandscapeOutlined, + } from '@material-ui/icons/ScreenLockLandscapeOutlined'; + declare export { + default as ScreenLockLandscapeRounded, + } from '@material-ui/icons/ScreenLockLandscapeRounded'; + declare export { + default as ScreenLockLandscapeSharp, + } from '@material-ui/icons/ScreenLockLandscapeSharp'; + declare export { + default as ScreenLockLandscapeTwoTone, + } from '@material-ui/icons/ScreenLockLandscapeTwoTone'; + declare export { + default as ScreenLockPortrait, + } from '@material-ui/icons/ScreenLockPortrait'; + declare export { + default as ScreenLockPortraitOutlined, + } from '@material-ui/icons/ScreenLockPortraitOutlined'; + declare export { + default as ScreenLockPortraitRounded, + } from '@material-ui/icons/ScreenLockPortraitRounded'; + declare export { + default as ScreenLockPortraitSharp, + } from '@material-ui/icons/ScreenLockPortraitSharp'; + declare export { + default as ScreenLockPortraitTwoTone, + } from '@material-ui/icons/ScreenLockPortraitTwoTone'; + declare export { + default as ScreenLockRotation, + } from '@material-ui/icons/ScreenLockRotation'; + declare export { + default as ScreenLockRotationOutlined, + } from '@material-ui/icons/ScreenLockRotationOutlined'; + declare export { + default as ScreenLockRotationRounded, + } from '@material-ui/icons/ScreenLockRotationRounded'; + declare export { + default as ScreenLockRotationSharp, + } from '@material-ui/icons/ScreenLockRotationSharp'; + declare export { + default as ScreenLockRotationTwoTone, + } from '@material-ui/icons/ScreenLockRotationTwoTone'; + declare export { + default as ScreenRotation, + } from '@material-ui/icons/ScreenRotation'; + declare export { + default as ScreenRotationOutlined, + } from '@material-ui/icons/ScreenRotationOutlined'; + declare export { + default as ScreenRotationRounded, + } from '@material-ui/icons/ScreenRotationRounded'; + declare export { + default as ScreenRotationSharp, + } from '@material-ui/icons/ScreenRotationSharp'; + declare export { + default as ScreenRotationTwoTone, + } from '@material-ui/icons/ScreenRotationTwoTone'; + declare export { + default as ScreenShare, + } from '@material-ui/icons/ScreenShare'; + declare export { + default as ScreenShareOutlined, + } from '@material-ui/icons/ScreenShareOutlined'; + declare export { + default as ScreenShareRounded, + } from '@material-ui/icons/ScreenShareRounded'; + declare export { + default as ScreenShareSharp, + } from '@material-ui/icons/ScreenShareSharp'; + declare export { + default as ScreenShareTwoTone, + } from '@material-ui/icons/ScreenShareTwoTone'; + declare export { default as SdCard } from '@material-ui/icons/SdCard'; + declare export { + default as SdCardOutlined, + } from '@material-ui/icons/SdCardOutlined'; + declare export { + default as SdCardRounded, + } from '@material-ui/icons/SdCardRounded'; + declare export { + default as SdCardSharp, + } from '@material-ui/icons/SdCardSharp'; + declare export { + default as SdCardTwoTone, + } from '@material-ui/icons/SdCardTwoTone'; + declare export { default as SdStorage } from '@material-ui/icons/SdStorage'; + declare export { + default as SdStorageOutlined, + } from '@material-ui/icons/SdStorageOutlined'; + declare export { + default as SdStorageRounded, + } from '@material-ui/icons/SdStorageRounded'; + declare export { + default as SdStorageSharp, + } from '@material-ui/icons/SdStorageSharp'; + declare export { + default as SdStorageTwoTone, + } from '@material-ui/icons/SdStorageTwoTone'; + declare export { default as Search } from '@material-ui/icons/Search'; + declare export { + default as SearchOutlined, + } from '@material-ui/icons/SearchOutlined'; + declare export { + default as SearchRounded, + } from '@material-ui/icons/SearchRounded'; + declare export { + default as SearchSharp, + } from '@material-ui/icons/SearchSharp'; + declare export { + default as SearchTwoTone, + } from '@material-ui/icons/SearchTwoTone'; + declare export { default as Security } from '@material-ui/icons/Security'; + declare export { + default as SecurityOutlined, + } from '@material-ui/icons/SecurityOutlined'; + declare export { + default as SecurityRounded, + } from '@material-ui/icons/SecurityRounded'; + declare export { + default as SecuritySharp, + } from '@material-ui/icons/SecuritySharp'; + declare export { + default as SecurityTwoTone, + } from '@material-ui/icons/SecurityTwoTone'; + declare export { default as SelectAll } from '@material-ui/icons/SelectAll'; + declare export { + default as SelectAllOutlined, + } from '@material-ui/icons/SelectAllOutlined'; + declare export { + default as SelectAllRounded, + } from '@material-ui/icons/SelectAllRounded'; + declare export { + default as SelectAllSharp, + } from '@material-ui/icons/SelectAllSharp'; + declare export { + default as SelectAllTwoTone, + } from '@material-ui/icons/SelectAllTwoTone'; + declare export { default as Send } from '@material-ui/icons/Send'; + declare export { + default as SendOutlined, + } from '@material-ui/icons/SendOutlined'; + declare export { + default as SendRounded, + } from '@material-ui/icons/SendRounded'; + declare export { default as SendSharp } from '@material-ui/icons/SendSharp'; + declare export { + default as SendTwoTone, + } from '@material-ui/icons/SendTwoTone'; + declare export { + default as SentimentDissatisfied, + } from '@material-ui/icons/SentimentDissatisfied'; + declare export { + default as SentimentDissatisfiedOutlined, + } from '@material-ui/icons/SentimentDissatisfiedOutlined'; + declare export { + default as SentimentDissatisfiedRounded, + } from '@material-ui/icons/SentimentDissatisfiedRounded'; + declare export { + default as SentimentDissatisfiedSharp, + } from '@material-ui/icons/SentimentDissatisfiedSharp'; + declare export { + default as SentimentDissatisfiedTwoTone, + } from '@material-ui/icons/SentimentDissatisfiedTwoTone'; + declare export { + default as SentimentSatisfiedAlt, + } from '@material-ui/icons/SentimentSatisfiedAlt'; + declare export { + default as SentimentSatisfiedAltOutlined, + } from '@material-ui/icons/SentimentSatisfiedAltOutlined'; + declare export { + default as SentimentSatisfiedAltRounded, + } from '@material-ui/icons/SentimentSatisfiedAltRounded'; + declare export { + default as SentimentSatisfiedAltSharp, + } from '@material-ui/icons/SentimentSatisfiedAltSharp'; + declare export { + default as SentimentSatisfiedAltTwoTone, + } from '@material-ui/icons/SentimentSatisfiedAltTwoTone'; + declare export { + default as SentimentSatisfied, + } from '@material-ui/icons/SentimentSatisfied'; + declare export { + default as SentimentSatisfiedOutlined, + } from '@material-ui/icons/SentimentSatisfiedOutlined'; + declare export { + default as SentimentSatisfiedRounded, + } from '@material-ui/icons/SentimentSatisfiedRounded'; + declare export { + default as SentimentSatisfiedSharp, + } from '@material-ui/icons/SentimentSatisfiedSharp'; + declare export { + default as SentimentSatisfiedTwoTone, + } from '@material-ui/icons/SentimentSatisfiedTwoTone'; + declare export { + default as SentimentVeryDissatisfied, + } from '@material-ui/icons/SentimentVeryDissatisfied'; + declare export { + default as SentimentVeryDissatisfiedOutlined, + } from '@material-ui/icons/SentimentVeryDissatisfiedOutlined'; + declare export { + default as SentimentVeryDissatisfiedRounded, + } from '@material-ui/icons/SentimentVeryDissatisfiedRounded'; + declare export { + default as SentimentVeryDissatisfiedSharp, + } from '@material-ui/icons/SentimentVeryDissatisfiedSharp'; + declare export { + default as SentimentVeryDissatisfiedTwoTone, + } from '@material-ui/icons/SentimentVeryDissatisfiedTwoTone'; + declare export { + default as SentimentVerySatisfied, + } from '@material-ui/icons/SentimentVerySatisfied'; + declare export { + default as SentimentVerySatisfiedOutlined, + } from '@material-ui/icons/SentimentVerySatisfiedOutlined'; + declare export { + default as SentimentVerySatisfiedRounded, + } from '@material-ui/icons/SentimentVerySatisfiedRounded'; + declare export { + default as SentimentVerySatisfiedSharp, + } from '@material-ui/icons/SentimentVerySatisfiedSharp'; + declare export { + default as SentimentVerySatisfiedTwoTone, + } from '@material-ui/icons/SentimentVerySatisfiedTwoTone'; + declare export { + default as SettingsApplications, + } from '@material-ui/icons/SettingsApplications'; + declare export { + default as SettingsApplicationsOutlined, + } from '@material-ui/icons/SettingsApplicationsOutlined'; + declare export { + default as SettingsApplicationsRounded, + } from '@material-ui/icons/SettingsApplicationsRounded'; + declare export { + default as SettingsApplicationsSharp, + } from '@material-ui/icons/SettingsApplicationsSharp'; + declare export { + default as SettingsApplicationsTwoTone, + } from '@material-ui/icons/SettingsApplicationsTwoTone'; + declare export { + default as SettingsBackupRestore, + } from '@material-ui/icons/SettingsBackupRestore'; + declare export { + default as SettingsBackupRestoreOutlined, + } from '@material-ui/icons/SettingsBackupRestoreOutlined'; + declare export { + default as SettingsBackupRestoreRounded, + } from '@material-ui/icons/SettingsBackupRestoreRounded'; + declare export { + default as SettingsBackupRestoreSharp, + } from '@material-ui/icons/SettingsBackupRestoreSharp'; + declare export { + default as SettingsBackupRestoreTwoTone, + } from '@material-ui/icons/SettingsBackupRestoreTwoTone'; + declare export { + default as SettingsBluetooth, + } from '@material-ui/icons/SettingsBluetooth'; + declare export { + default as SettingsBluetoothOutlined, + } from '@material-ui/icons/SettingsBluetoothOutlined'; + declare export { + default as SettingsBluetoothRounded, + } from '@material-ui/icons/SettingsBluetoothRounded'; + declare export { + default as SettingsBluetoothSharp, + } from '@material-ui/icons/SettingsBluetoothSharp'; + declare export { + default as SettingsBluetoothTwoTone, + } from '@material-ui/icons/SettingsBluetoothTwoTone'; + declare export { + default as SettingsBrightness, + } from '@material-ui/icons/SettingsBrightness'; + declare export { + default as SettingsBrightnessOutlined, + } from '@material-ui/icons/SettingsBrightnessOutlined'; + declare export { + default as SettingsBrightnessRounded, + } from '@material-ui/icons/SettingsBrightnessRounded'; + declare export { + default as SettingsBrightnessSharp, + } from '@material-ui/icons/SettingsBrightnessSharp'; + declare export { + default as SettingsBrightnessTwoTone, + } from '@material-ui/icons/SettingsBrightnessTwoTone'; + declare export { + default as SettingsCell, + } from '@material-ui/icons/SettingsCell'; + declare export { + default as SettingsCellOutlined, + } from '@material-ui/icons/SettingsCellOutlined'; + declare export { + default as SettingsCellRounded, + } from '@material-ui/icons/SettingsCellRounded'; + declare export { + default as SettingsCellSharp, + } from '@material-ui/icons/SettingsCellSharp'; + declare export { + default as SettingsCellTwoTone, + } from '@material-ui/icons/SettingsCellTwoTone'; + declare export { + default as SettingsEthernet, + } from '@material-ui/icons/SettingsEthernet'; + declare export { + default as SettingsEthernetOutlined, + } from '@material-ui/icons/SettingsEthernetOutlined'; + declare export { + default as SettingsEthernetRounded, + } from '@material-ui/icons/SettingsEthernetRounded'; + declare export { + default as SettingsEthernetSharp, + } from '@material-ui/icons/SettingsEthernetSharp'; + declare export { + default as SettingsEthernetTwoTone, + } from '@material-ui/icons/SettingsEthernetTwoTone'; + declare export { + default as SettingsInputAntenna, + } from '@material-ui/icons/SettingsInputAntenna'; + declare export { + default as SettingsInputAntennaOutlined, + } from '@material-ui/icons/SettingsInputAntennaOutlined'; + declare export { + default as SettingsInputAntennaRounded, + } from '@material-ui/icons/SettingsInputAntennaRounded'; + declare export { + default as SettingsInputAntennaSharp, + } from '@material-ui/icons/SettingsInputAntennaSharp'; + declare export { + default as SettingsInputAntennaTwoTone, + } from '@material-ui/icons/SettingsInputAntennaTwoTone'; + declare export { + default as SettingsInputComponent, + } from '@material-ui/icons/SettingsInputComponent'; + declare export { + default as SettingsInputComponentOutlined, + } from '@material-ui/icons/SettingsInputComponentOutlined'; + declare export { + default as SettingsInputComponentRounded, + } from '@material-ui/icons/SettingsInputComponentRounded'; + declare export { + default as SettingsInputComponentSharp, + } from '@material-ui/icons/SettingsInputComponentSharp'; + declare export { + default as SettingsInputComponentTwoTone, + } from '@material-ui/icons/SettingsInputComponentTwoTone'; + declare export { + default as SettingsInputComposite, + } from '@material-ui/icons/SettingsInputComposite'; + declare export { + default as SettingsInputCompositeOutlined, + } from '@material-ui/icons/SettingsInputCompositeOutlined'; + declare export { + default as SettingsInputCompositeRounded, + } from '@material-ui/icons/SettingsInputCompositeRounded'; + declare export { + default as SettingsInputCompositeSharp, + } from '@material-ui/icons/SettingsInputCompositeSharp'; + declare export { + default as SettingsInputCompositeTwoTone, + } from '@material-ui/icons/SettingsInputCompositeTwoTone'; + declare export { + default as SettingsInputHdmi, + } from '@material-ui/icons/SettingsInputHdmi'; + declare export { + default as SettingsInputHdmiOutlined, + } from '@material-ui/icons/SettingsInputHdmiOutlined'; + declare export { + default as SettingsInputHdmiRounded, + } from '@material-ui/icons/SettingsInputHdmiRounded'; + declare export { + default as SettingsInputHdmiSharp, + } from '@material-ui/icons/SettingsInputHdmiSharp'; + declare export { + default as SettingsInputHdmiTwoTone, + } from '@material-ui/icons/SettingsInputHdmiTwoTone'; + declare export { + default as SettingsInputSvideo, + } from '@material-ui/icons/SettingsInputSvideo'; + declare export { + default as SettingsInputSvideoOutlined, + } from '@material-ui/icons/SettingsInputSvideoOutlined'; + declare export { + default as SettingsInputSvideoRounded, + } from '@material-ui/icons/SettingsInputSvideoRounded'; + declare export { + default as SettingsInputSvideoSharp, + } from '@material-ui/icons/SettingsInputSvideoSharp'; + declare export { + default as SettingsInputSvideoTwoTone, + } from '@material-ui/icons/SettingsInputSvideoTwoTone'; + declare export { default as Settings } from '@material-ui/icons/Settings'; + declare export { + default as SettingsOutlined, + } from '@material-ui/icons/SettingsOutlined'; + declare export { + default as SettingsOverscan, + } from '@material-ui/icons/SettingsOverscan'; + declare export { + default as SettingsOverscanOutlined, + } from '@material-ui/icons/SettingsOverscanOutlined'; + declare export { + default as SettingsOverscanRounded, + } from '@material-ui/icons/SettingsOverscanRounded'; + declare export { + default as SettingsOverscanSharp, + } from '@material-ui/icons/SettingsOverscanSharp'; + declare export { + default as SettingsOverscanTwoTone, + } from '@material-ui/icons/SettingsOverscanTwoTone'; + declare export { + default as SettingsPhone, + } from '@material-ui/icons/SettingsPhone'; + declare export { + default as SettingsPhoneOutlined, + } from '@material-ui/icons/SettingsPhoneOutlined'; + declare export { + default as SettingsPhoneRounded, + } from '@material-ui/icons/SettingsPhoneRounded'; + declare export { + default as SettingsPhoneSharp, + } from '@material-ui/icons/SettingsPhoneSharp'; + declare export { + default as SettingsPhoneTwoTone, + } from '@material-ui/icons/SettingsPhoneTwoTone'; + declare export { + default as SettingsPower, + } from '@material-ui/icons/SettingsPower'; + declare export { + default as SettingsPowerOutlined, + } from '@material-ui/icons/SettingsPowerOutlined'; + declare export { + default as SettingsPowerRounded, + } from '@material-ui/icons/SettingsPowerRounded'; + declare export { + default as SettingsPowerSharp, + } from '@material-ui/icons/SettingsPowerSharp'; + declare export { + default as SettingsPowerTwoTone, + } from '@material-ui/icons/SettingsPowerTwoTone'; + declare export { + default as SettingsRemote, + } from '@material-ui/icons/SettingsRemote'; + declare export { + default as SettingsRemoteOutlined, + } from '@material-ui/icons/SettingsRemoteOutlined'; + declare export { + default as SettingsRemoteRounded, + } from '@material-ui/icons/SettingsRemoteRounded'; + declare export { + default as SettingsRemoteSharp, + } from '@material-ui/icons/SettingsRemoteSharp'; + declare export { + default as SettingsRemoteTwoTone, + } from '@material-ui/icons/SettingsRemoteTwoTone'; + declare export { + default as SettingsRounded, + } from '@material-ui/icons/SettingsRounded'; + declare export { + default as SettingsSharp, + } from '@material-ui/icons/SettingsSharp'; + declare export { + default as SettingsSystemDaydream, + } from '@material-ui/icons/SettingsSystemDaydream'; + declare export { + default as SettingsSystemDaydreamOutlined, + } from '@material-ui/icons/SettingsSystemDaydreamOutlined'; + declare export { + default as SettingsSystemDaydreamRounded, + } from '@material-ui/icons/SettingsSystemDaydreamRounded'; + declare export { + default as SettingsSystemDaydreamSharp, + } from '@material-ui/icons/SettingsSystemDaydreamSharp'; + declare export { + default as SettingsSystemDaydreamTwoTone, + } from '@material-ui/icons/SettingsSystemDaydreamTwoTone'; + declare export { + default as SettingsTwoTone, + } from '@material-ui/icons/SettingsTwoTone'; + declare export { + default as SettingsVoice, + } from '@material-ui/icons/SettingsVoice'; + declare export { + default as SettingsVoiceOutlined, + } from '@material-ui/icons/SettingsVoiceOutlined'; + declare export { + default as SettingsVoiceRounded, + } from '@material-ui/icons/SettingsVoiceRounded'; + declare export { + default as SettingsVoiceSharp, + } from '@material-ui/icons/SettingsVoiceSharp'; + declare export { + default as SettingsVoiceTwoTone, + } from '@material-ui/icons/SettingsVoiceTwoTone'; + declare export { default as Share } from '@material-ui/icons/Share'; + declare export { + default as ShareOutlined, + } from '@material-ui/icons/ShareOutlined'; + declare export { + default as ShareRounded, + } from '@material-ui/icons/ShareRounded'; + declare export { default as ShareSharp } from '@material-ui/icons/ShareSharp'; + declare export { + default as ShareTwoTone, + } from '@material-ui/icons/ShareTwoTone'; + declare export { default as Shop } from '@material-ui/icons/Shop'; + declare export { + default as ShopOutlined, + } from '@material-ui/icons/ShopOutlined'; + declare export { + default as ShoppingBasket, + } from '@material-ui/icons/ShoppingBasket'; + declare export { + default as ShoppingBasketOutlined, + } from '@material-ui/icons/ShoppingBasketOutlined'; + declare export { + default as ShoppingBasketRounded, + } from '@material-ui/icons/ShoppingBasketRounded'; + declare export { + default as ShoppingBasketSharp, + } from '@material-ui/icons/ShoppingBasketSharp'; + declare export { + default as ShoppingBasketTwoTone, + } from '@material-ui/icons/ShoppingBasketTwoTone'; + declare export { + default as ShoppingCart, + } from '@material-ui/icons/ShoppingCart'; + declare export { + default as ShoppingCartOutlined, + } from '@material-ui/icons/ShoppingCartOutlined'; + declare export { + default as ShoppingCartRounded, + } from '@material-ui/icons/ShoppingCartRounded'; + declare export { + default as ShoppingCartSharp, + } from '@material-ui/icons/ShoppingCartSharp'; + declare export { + default as ShoppingCartTwoTone, + } from '@material-ui/icons/ShoppingCartTwoTone'; + declare export { + default as ShopRounded, + } from '@material-ui/icons/ShopRounded'; + declare export { default as ShopSharp } from '@material-ui/icons/ShopSharp'; + declare export { default as ShopTwo } from '@material-ui/icons/ShopTwo'; + declare export { + default as ShopTwoOutlined, + } from '@material-ui/icons/ShopTwoOutlined'; + declare export { + default as ShopTwoRounded, + } from '@material-ui/icons/ShopTwoRounded'; + declare export { + default as ShopTwoSharp, + } from '@material-ui/icons/ShopTwoSharp'; + declare export { + default as ShopTwoTone, + } from '@material-ui/icons/ShopTwoTone'; + declare export { + default as ShopTwoTwoTone, + } from '@material-ui/icons/ShopTwoTwoTone'; + declare export { default as ShortText } from '@material-ui/icons/ShortText'; + declare export { + default as ShortTextOutlined, + } from '@material-ui/icons/ShortTextOutlined'; + declare export { + default as ShortTextRounded, + } from '@material-ui/icons/ShortTextRounded'; + declare export { + default as ShortTextSharp, + } from '@material-ui/icons/ShortTextSharp'; + declare export { + default as ShortTextTwoTone, + } from '@material-ui/icons/ShortTextTwoTone'; + declare export { default as ShowChart } from '@material-ui/icons/ShowChart'; + declare export { + default as ShowChartOutlined, + } from '@material-ui/icons/ShowChartOutlined'; + declare export { + default as ShowChartRounded, + } from '@material-ui/icons/ShowChartRounded'; + declare export { + default as ShowChartSharp, + } from '@material-ui/icons/ShowChartSharp'; + declare export { + default as ShowChartTwoTone, + } from '@material-ui/icons/ShowChartTwoTone'; + declare export { default as Shuffle } from '@material-ui/icons/Shuffle'; + declare export { + default as ShuffleOutlined, + } from '@material-ui/icons/ShuffleOutlined'; + declare export { + default as ShuffleRounded, + } from '@material-ui/icons/ShuffleRounded'; + declare export { + default as ShuffleSharp, + } from '@material-ui/icons/ShuffleSharp'; + declare export { + default as ShuffleTwoTone, + } from '@material-ui/icons/ShuffleTwoTone'; + declare export { + default as ShutterSpeed, + } from '@material-ui/icons/ShutterSpeed'; + declare export { + default as ShutterSpeedOutlined, + } from '@material-ui/icons/ShutterSpeedOutlined'; + declare export { + default as ShutterSpeedRounded, + } from '@material-ui/icons/ShutterSpeedRounded'; + declare export { + default as ShutterSpeedSharp, + } from '@material-ui/icons/ShutterSpeedSharp'; + declare export { + default as ShutterSpeedTwoTone, + } from '@material-ui/icons/ShutterSpeedTwoTone'; + declare export { + default as SignalCellular0Bar, + } from '@material-ui/icons/SignalCellular0Bar'; + declare export { + default as SignalCellular0BarOutlined, + } from '@material-ui/icons/SignalCellular0BarOutlined'; + declare export { + default as SignalCellular0BarRounded, + } from '@material-ui/icons/SignalCellular0BarRounded'; + declare export { + default as SignalCellular0BarSharp, + } from '@material-ui/icons/SignalCellular0BarSharp'; + declare export { + default as SignalCellular0BarTwoTone, + } from '@material-ui/icons/SignalCellular0BarTwoTone'; + declare export { + default as SignalCellular1Bar, + } from '@material-ui/icons/SignalCellular1Bar'; + declare export { + default as SignalCellular1BarOutlined, + } from '@material-ui/icons/SignalCellular1BarOutlined'; + declare export { + default as SignalCellular1BarRounded, + } from '@material-ui/icons/SignalCellular1BarRounded'; + declare export { + default as SignalCellular1BarSharp, + } from '@material-ui/icons/SignalCellular1BarSharp'; + declare export { + default as SignalCellular1BarTwoTone, + } from '@material-ui/icons/SignalCellular1BarTwoTone'; + declare export { + default as SignalCellular2Bar, + } from '@material-ui/icons/SignalCellular2Bar'; + declare export { + default as SignalCellular2BarOutlined, + } from '@material-ui/icons/SignalCellular2BarOutlined'; + declare export { + default as SignalCellular2BarRounded, + } from '@material-ui/icons/SignalCellular2BarRounded'; + declare export { + default as SignalCellular2BarSharp, + } from '@material-ui/icons/SignalCellular2BarSharp'; + declare export { + default as SignalCellular2BarTwoTone, + } from '@material-ui/icons/SignalCellular2BarTwoTone'; + declare export { + default as SignalCellular3Bar, + } from '@material-ui/icons/SignalCellular3Bar'; + declare export { + default as SignalCellular3BarOutlined, + } from '@material-ui/icons/SignalCellular3BarOutlined'; + declare export { + default as SignalCellular3BarRounded, + } from '@material-ui/icons/SignalCellular3BarRounded'; + declare export { + default as SignalCellular3BarSharp, + } from '@material-ui/icons/SignalCellular3BarSharp'; + declare export { + default as SignalCellular3BarTwoTone, + } from '@material-ui/icons/SignalCellular3BarTwoTone'; + declare export { + default as SignalCellular4Bar, + } from '@material-ui/icons/SignalCellular4Bar'; + declare export { + default as SignalCellular4BarOutlined, + } from '@material-ui/icons/SignalCellular4BarOutlined'; + declare export { + default as SignalCellular4BarRounded, + } from '@material-ui/icons/SignalCellular4BarRounded'; + declare export { + default as SignalCellular4BarSharp, + } from '@material-ui/icons/SignalCellular4BarSharp'; + declare export { + default as SignalCellular4BarTwoTone, + } from '@material-ui/icons/SignalCellular4BarTwoTone'; + declare export { + default as SignalCellularAlt, + } from '@material-ui/icons/SignalCellularAlt'; + declare export { + default as SignalCellularAltOutlined, + } from '@material-ui/icons/SignalCellularAltOutlined'; + declare export { + default as SignalCellularAltRounded, + } from '@material-ui/icons/SignalCellularAltRounded'; + declare export { + default as SignalCellularAltSharp, + } from '@material-ui/icons/SignalCellularAltSharp'; + declare export { + default as SignalCellularAltTwoTone, + } from '@material-ui/icons/SignalCellularAltTwoTone'; + declare export { + default as SignalCellularConnectedNoInternet0Bar, + } from '@material-ui/icons/SignalCellularConnectedNoInternet0Bar'; + declare export { + default as SignalCellularConnectedNoInternet0BarOutlined, + } from '@material-ui/icons/SignalCellularConnectedNoInternet0BarOutlined'; + declare export { + default as SignalCellularConnectedNoInternet0BarRounded, + } from '@material-ui/icons/SignalCellularConnectedNoInternet0BarRounded'; + declare export { + default as SignalCellularConnectedNoInternet0BarSharp, + } from '@material-ui/icons/SignalCellularConnectedNoInternet0BarSharp'; + declare export { + default as SignalCellularConnectedNoInternet0BarTwoTone, + } from '@material-ui/icons/SignalCellularConnectedNoInternet0BarTwoTone'; + declare export { + default as SignalCellularConnectedNoInternet1Bar, + } from '@material-ui/icons/SignalCellularConnectedNoInternet1Bar'; + declare export { + default as SignalCellularConnectedNoInternet1BarOutlined, + } from '@material-ui/icons/SignalCellularConnectedNoInternet1BarOutlined'; + declare export { + default as SignalCellularConnectedNoInternet1BarRounded, + } from '@material-ui/icons/SignalCellularConnectedNoInternet1BarRounded'; + declare export { + default as SignalCellularConnectedNoInternet1BarSharp, + } from '@material-ui/icons/SignalCellularConnectedNoInternet1BarSharp'; + declare export { + default as SignalCellularConnectedNoInternet1BarTwoTone, + } from '@material-ui/icons/SignalCellularConnectedNoInternet1BarTwoTone'; + declare export { + default as SignalCellularConnectedNoInternet2Bar, + } from '@material-ui/icons/SignalCellularConnectedNoInternet2Bar'; + declare export { + default as SignalCellularConnectedNoInternet2BarOutlined, + } from '@material-ui/icons/SignalCellularConnectedNoInternet2BarOutlined'; + declare export { + default as SignalCellularConnectedNoInternet2BarRounded, + } from '@material-ui/icons/SignalCellularConnectedNoInternet2BarRounded'; + declare export { + default as SignalCellularConnectedNoInternet2BarSharp, + } from '@material-ui/icons/SignalCellularConnectedNoInternet2BarSharp'; + declare export { + default as SignalCellularConnectedNoInternet2BarTwoTone, + } from '@material-ui/icons/SignalCellularConnectedNoInternet2BarTwoTone'; + declare export { + default as SignalCellularConnectedNoInternet3Bar, + } from '@material-ui/icons/SignalCellularConnectedNoInternet3Bar'; + declare export { + default as SignalCellularConnectedNoInternet3BarOutlined, + } from '@material-ui/icons/SignalCellularConnectedNoInternet3BarOutlined'; + declare export { + default as SignalCellularConnectedNoInternet3BarRounded, + } from '@material-ui/icons/SignalCellularConnectedNoInternet3BarRounded'; + declare export { + default as SignalCellularConnectedNoInternet3BarSharp, + } from '@material-ui/icons/SignalCellularConnectedNoInternet3BarSharp'; + declare export { + default as SignalCellularConnectedNoInternet3BarTwoTone, + } from '@material-ui/icons/SignalCellularConnectedNoInternet3BarTwoTone'; + declare export { + default as SignalCellularConnectedNoInternet4Bar, + } from '@material-ui/icons/SignalCellularConnectedNoInternet4Bar'; + declare export { + default as SignalCellularConnectedNoInternet4BarOutlined, + } from '@material-ui/icons/SignalCellularConnectedNoInternet4BarOutlined'; + declare export { + default as SignalCellularConnectedNoInternet4BarRounded, + } from '@material-ui/icons/SignalCellularConnectedNoInternet4BarRounded'; + declare export { + default as SignalCellularConnectedNoInternet4BarSharp, + } from '@material-ui/icons/SignalCellularConnectedNoInternet4BarSharp'; + declare export { + default as SignalCellularConnectedNoInternet4BarTwoTone, + } from '@material-ui/icons/SignalCellularConnectedNoInternet4BarTwoTone'; + declare export { + default as SignalCellularNoSim, + } from '@material-ui/icons/SignalCellularNoSim'; + declare export { + default as SignalCellularNoSimOutlined, + } from '@material-ui/icons/SignalCellularNoSimOutlined'; + declare export { + default as SignalCellularNoSimRounded, + } from '@material-ui/icons/SignalCellularNoSimRounded'; + declare export { + default as SignalCellularNoSimSharp, + } from '@material-ui/icons/SignalCellularNoSimSharp'; + declare export { + default as SignalCellularNoSimTwoTone, + } from '@material-ui/icons/SignalCellularNoSimTwoTone'; + declare export { + default as SignalCellularNull, + } from '@material-ui/icons/SignalCellularNull'; + declare export { + default as SignalCellularNullOutlined, + } from '@material-ui/icons/SignalCellularNullOutlined'; + declare export { + default as SignalCellularNullRounded, + } from '@material-ui/icons/SignalCellularNullRounded'; + declare export { + default as SignalCellularNullSharp, + } from '@material-ui/icons/SignalCellularNullSharp'; + declare export { + default as SignalCellularNullTwoTone, + } from '@material-ui/icons/SignalCellularNullTwoTone'; + declare export { + default as SignalCellularOff, + } from '@material-ui/icons/SignalCellularOff'; + declare export { + default as SignalCellularOffOutlined, + } from '@material-ui/icons/SignalCellularOffOutlined'; + declare export { + default as SignalCellularOffRounded, + } from '@material-ui/icons/SignalCellularOffRounded'; + declare export { + default as SignalCellularOffSharp, + } from '@material-ui/icons/SignalCellularOffSharp'; + declare export { + default as SignalCellularOffTwoTone, + } from '@material-ui/icons/SignalCellularOffTwoTone'; + declare export { + default as SignalWifi0Bar, + } from '@material-ui/icons/SignalWifi0Bar'; + declare export { + default as SignalWifi0BarOutlined, + } from '@material-ui/icons/SignalWifi0BarOutlined'; + declare export { + default as SignalWifi0BarRounded, + } from '@material-ui/icons/SignalWifi0BarRounded'; + declare export { + default as SignalWifi0BarSharp, + } from '@material-ui/icons/SignalWifi0BarSharp'; + declare export { + default as SignalWifi0BarTwoTone, + } from '@material-ui/icons/SignalWifi0BarTwoTone'; + declare export { + default as SignalWifi1Bar, + } from '@material-ui/icons/SignalWifi1Bar'; + declare export { + default as SignalWifi1BarLock, + } from '@material-ui/icons/SignalWifi1BarLock'; + declare export { + default as SignalWifi1BarLockOutlined, + } from '@material-ui/icons/SignalWifi1BarLockOutlined'; + declare export { + default as SignalWifi1BarLockRounded, + } from '@material-ui/icons/SignalWifi1BarLockRounded'; + declare export { + default as SignalWifi1BarLockSharp, + } from '@material-ui/icons/SignalWifi1BarLockSharp'; + declare export { + default as SignalWifi1BarLockTwoTone, + } from '@material-ui/icons/SignalWifi1BarLockTwoTone'; + declare export { + default as SignalWifi1BarOutlined, + } from '@material-ui/icons/SignalWifi1BarOutlined'; + declare export { + default as SignalWifi1BarRounded, + } from '@material-ui/icons/SignalWifi1BarRounded'; + declare export { + default as SignalWifi1BarSharp, + } from '@material-ui/icons/SignalWifi1BarSharp'; + declare export { + default as SignalWifi1BarTwoTone, + } from '@material-ui/icons/SignalWifi1BarTwoTone'; + declare export { + default as SignalWifi2Bar, + } from '@material-ui/icons/SignalWifi2Bar'; + declare export { + default as SignalWifi2BarLock, + } from '@material-ui/icons/SignalWifi2BarLock'; + declare export { + default as SignalWifi2BarLockOutlined, + } from '@material-ui/icons/SignalWifi2BarLockOutlined'; + declare export { + default as SignalWifi2BarLockRounded, + } from '@material-ui/icons/SignalWifi2BarLockRounded'; + declare export { + default as SignalWifi2BarLockSharp, + } from '@material-ui/icons/SignalWifi2BarLockSharp'; + declare export { + default as SignalWifi2BarLockTwoTone, + } from '@material-ui/icons/SignalWifi2BarLockTwoTone'; + declare export { + default as SignalWifi2BarOutlined, + } from '@material-ui/icons/SignalWifi2BarOutlined'; + declare export { + default as SignalWifi2BarRounded, + } from '@material-ui/icons/SignalWifi2BarRounded'; + declare export { + default as SignalWifi2BarSharp, + } from '@material-ui/icons/SignalWifi2BarSharp'; + declare export { + default as SignalWifi2BarTwoTone, + } from '@material-ui/icons/SignalWifi2BarTwoTone'; + declare export { + default as SignalWifi3Bar, + } from '@material-ui/icons/SignalWifi3Bar'; + declare export { + default as SignalWifi3BarLock, + } from '@material-ui/icons/SignalWifi3BarLock'; + declare export { + default as SignalWifi3BarLockOutlined, + } from '@material-ui/icons/SignalWifi3BarLockOutlined'; + declare export { + default as SignalWifi3BarLockRounded, + } from '@material-ui/icons/SignalWifi3BarLockRounded'; + declare export { + default as SignalWifi3BarLockSharp, + } from '@material-ui/icons/SignalWifi3BarLockSharp'; + declare export { + default as SignalWifi3BarLockTwoTone, + } from '@material-ui/icons/SignalWifi3BarLockTwoTone'; + declare export { + default as SignalWifi3BarOutlined, + } from '@material-ui/icons/SignalWifi3BarOutlined'; + declare export { + default as SignalWifi3BarRounded, + } from '@material-ui/icons/SignalWifi3BarRounded'; + declare export { + default as SignalWifi3BarSharp, + } from '@material-ui/icons/SignalWifi3BarSharp'; + declare export { + default as SignalWifi3BarTwoTone, + } from '@material-ui/icons/SignalWifi3BarTwoTone'; + declare export { + default as SignalWifi4Bar, + } from '@material-ui/icons/SignalWifi4Bar'; + declare export { + default as SignalWifi4BarLock, + } from '@material-ui/icons/SignalWifi4BarLock'; + declare export { + default as SignalWifi4BarLockOutlined, + } from '@material-ui/icons/SignalWifi4BarLockOutlined'; + declare export { + default as SignalWifi4BarLockRounded, + } from '@material-ui/icons/SignalWifi4BarLockRounded'; + declare export { + default as SignalWifi4BarLockSharp, + } from '@material-ui/icons/SignalWifi4BarLockSharp'; + declare export { + default as SignalWifi4BarLockTwoTone, + } from '@material-ui/icons/SignalWifi4BarLockTwoTone'; + declare export { + default as SignalWifi4BarOutlined, + } from '@material-ui/icons/SignalWifi4BarOutlined'; + declare export { + default as SignalWifi4BarRounded, + } from '@material-ui/icons/SignalWifi4BarRounded'; + declare export { + default as SignalWifi4BarSharp, + } from '@material-ui/icons/SignalWifi4BarSharp'; + declare export { + default as SignalWifi4BarTwoTone, + } from '@material-ui/icons/SignalWifi4BarTwoTone'; + declare export { + default as SignalWifiOff, + } from '@material-ui/icons/SignalWifiOff'; + declare export { + default as SignalWifiOffOutlined, + } from '@material-ui/icons/SignalWifiOffOutlined'; + declare export { + default as SignalWifiOffRounded, + } from '@material-ui/icons/SignalWifiOffRounded'; + declare export { + default as SignalWifiOffSharp, + } from '@material-ui/icons/SignalWifiOffSharp'; + declare export { + default as SignalWifiOffTwoTone, + } from '@material-ui/icons/SignalWifiOffTwoTone'; + declare export { default as SimCard } from '@material-ui/icons/SimCard'; + declare export { + default as SimCardOutlined, + } from '@material-ui/icons/SimCardOutlined'; + declare export { + default as SimCardRounded, + } from '@material-ui/icons/SimCardRounded'; + declare export { + default as SimCardSharp, + } from '@material-ui/icons/SimCardSharp'; + declare export { + default as SimCardTwoTone, + } from '@material-ui/icons/SimCardTwoTone'; + declare export { default as SkipNext } from '@material-ui/icons/SkipNext'; + declare export { + default as SkipNextOutlined, + } from '@material-ui/icons/SkipNextOutlined'; + declare export { + default as SkipNextRounded, + } from '@material-ui/icons/SkipNextRounded'; + declare export { + default as SkipNextSharp, + } from '@material-ui/icons/SkipNextSharp'; + declare export { + default as SkipNextTwoTone, + } from '@material-ui/icons/SkipNextTwoTone'; + declare export { + default as SkipPrevious, + } from '@material-ui/icons/SkipPrevious'; + declare export { + default as SkipPreviousOutlined, + } from '@material-ui/icons/SkipPreviousOutlined'; + declare export { + default as SkipPreviousRounded, + } from '@material-ui/icons/SkipPreviousRounded'; + declare export { + default as SkipPreviousSharp, + } from '@material-ui/icons/SkipPreviousSharp'; + declare export { + default as SkipPreviousTwoTone, + } from '@material-ui/icons/SkipPreviousTwoTone'; + declare export { default as Slideshow } from '@material-ui/icons/Slideshow'; + declare export { + default as SlideshowOutlined, + } from '@material-ui/icons/SlideshowOutlined'; + declare export { + default as SlideshowRounded, + } from '@material-ui/icons/SlideshowRounded'; + declare export { + default as SlideshowSharp, + } from '@material-ui/icons/SlideshowSharp'; + declare export { + default as SlideshowTwoTone, + } from '@material-ui/icons/SlideshowTwoTone'; + declare export { + default as SlowMotionVideo, + } from '@material-ui/icons/SlowMotionVideo'; + declare export { + default as SlowMotionVideoOutlined, + } from '@material-ui/icons/SlowMotionVideoOutlined'; + declare export { + default as SlowMotionVideoRounded, + } from '@material-ui/icons/SlowMotionVideoRounded'; + declare export { + default as SlowMotionVideoSharp, + } from '@material-ui/icons/SlowMotionVideoSharp'; + declare export { + default as SlowMotionVideoTwoTone, + } from '@material-ui/icons/SlowMotionVideoTwoTone'; + declare export { default as Smartphone } from '@material-ui/icons/Smartphone'; + declare export { + default as SmartphoneOutlined, + } from '@material-ui/icons/SmartphoneOutlined'; + declare export { + default as SmartphoneRounded, + } from '@material-ui/icons/SmartphoneRounded'; + declare export { + default as SmartphoneSharp, + } from '@material-ui/icons/SmartphoneSharp'; + declare export { + default as SmartphoneTwoTone, + } from '@material-ui/icons/SmartphoneTwoTone'; + declare export { default as SmokeFree } from '@material-ui/icons/SmokeFree'; + declare export { + default as SmokeFreeOutlined, + } from '@material-ui/icons/SmokeFreeOutlined'; + declare export { + default as SmokeFreeRounded, + } from '@material-ui/icons/SmokeFreeRounded'; + declare export { + default as SmokeFreeSharp, + } from '@material-ui/icons/SmokeFreeSharp'; + declare export { + default as SmokeFreeTwoTone, + } from '@material-ui/icons/SmokeFreeTwoTone'; + declare export { + default as SmokingRooms, + } from '@material-ui/icons/SmokingRooms'; + declare export { + default as SmokingRoomsOutlined, + } from '@material-ui/icons/SmokingRoomsOutlined'; + declare export { + default as SmokingRoomsRounded, + } from '@material-ui/icons/SmokingRoomsRounded'; + declare export { + default as SmokingRoomsSharp, + } from '@material-ui/icons/SmokingRoomsSharp'; + declare export { + default as SmokingRoomsTwoTone, + } from '@material-ui/icons/SmokingRoomsTwoTone'; + declare export { default as SmsFailed } from '@material-ui/icons/SmsFailed'; + declare export { + default as SmsFailedOutlined, + } from '@material-ui/icons/SmsFailedOutlined'; + declare export { + default as SmsFailedRounded, + } from '@material-ui/icons/SmsFailedRounded'; + declare export { + default as SmsFailedSharp, + } from '@material-ui/icons/SmsFailedSharp'; + declare export { + default as SmsFailedTwoTone, + } from '@material-ui/icons/SmsFailedTwoTone'; + declare export { default as Sms } from '@material-ui/icons/Sms'; + declare export { + default as SmsOutlined, + } from '@material-ui/icons/SmsOutlined'; + declare export { default as SmsRounded } from '@material-ui/icons/SmsRounded'; + declare export { default as SmsSharp } from '@material-ui/icons/SmsSharp'; + declare export { default as SmsTwoTone } from '@material-ui/icons/SmsTwoTone'; + declare export { default as Snooze } from '@material-ui/icons/Snooze'; + declare export { + default as SnoozeOutlined, + } from '@material-ui/icons/SnoozeOutlined'; + declare export { + default as SnoozeRounded, + } from '@material-ui/icons/SnoozeRounded'; + declare export { + default as SnoozeSharp, + } from '@material-ui/icons/SnoozeSharp'; + declare export { + default as SnoozeTwoTone, + } from '@material-ui/icons/SnoozeTwoTone'; + declare export { + default as SortByAlpha, + } from '@material-ui/icons/SortByAlpha'; + declare export { + default as SortByAlphaOutlined, + } from '@material-ui/icons/SortByAlphaOutlined'; + declare export { + default as SortByAlphaRounded, + } from '@material-ui/icons/SortByAlphaRounded'; + declare export { + default as SortByAlphaSharp, + } from '@material-ui/icons/SortByAlphaSharp'; + declare export { + default as SortByAlphaTwoTone, + } from '@material-ui/icons/SortByAlphaTwoTone'; + declare export { default as Sort } from '@material-ui/icons/Sort'; + declare export { + default as SortOutlined, + } from '@material-ui/icons/SortOutlined'; + declare export { + default as SortRounded, + } from '@material-ui/icons/SortRounded'; + declare export { default as SortSharp } from '@material-ui/icons/SortSharp'; + declare export { + default as SortTwoTone, + } from '@material-ui/icons/SortTwoTone'; + declare export { default as SpaceBar } from '@material-ui/icons/SpaceBar'; + declare export { + default as SpaceBarOutlined, + } from '@material-ui/icons/SpaceBarOutlined'; + declare export { + default as SpaceBarRounded, + } from '@material-ui/icons/SpaceBarRounded'; + declare export { + default as SpaceBarSharp, + } from '@material-ui/icons/SpaceBarSharp'; + declare export { + default as SpaceBarTwoTone, + } from '@material-ui/icons/SpaceBarTwoTone'; + declare export { default as Spa } from '@material-ui/icons/Spa'; + declare export { + default as SpaOutlined, + } from '@material-ui/icons/SpaOutlined'; + declare export { default as SpaRounded } from '@material-ui/icons/SpaRounded'; + declare export { default as SpaSharp } from '@material-ui/icons/SpaSharp'; + declare export { default as SpaTwoTone } from '@material-ui/icons/SpaTwoTone'; + declare export { + default as SpeakerGroup, + } from '@material-ui/icons/SpeakerGroup'; + declare export { + default as SpeakerGroupOutlined, + } from '@material-ui/icons/SpeakerGroupOutlined'; + declare export { + default as SpeakerGroupRounded, + } from '@material-ui/icons/SpeakerGroupRounded'; + declare export { + default as SpeakerGroupSharp, + } from '@material-ui/icons/SpeakerGroupSharp'; + declare export { + default as SpeakerGroupTwoTone, + } from '@material-ui/icons/SpeakerGroupTwoTone'; + declare export { default as Speaker } from '@material-ui/icons/Speaker'; + declare export { + default as SpeakerNotes, + } from '@material-ui/icons/SpeakerNotes'; + declare export { + default as SpeakerNotesOff, + } from '@material-ui/icons/SpeakerNotesOff'; + declare export { + default as SpeakerNotesOffOutlined, + } from '@material-ui/icons/SpeakerNotesOffOutlined'; + declare export { + default as SpeakerNotesOffRounded, + } from '@material-ui/icons/SpeakerNotesOffRounded'; + declare export { + default as SpeakerNotesOffSharp, + } from '@material-ui/icons/SpeakerNotesOffSharp'; + declare export { + default as SpeakerNotesOffTwoTone, + } from '@material-ui/icons/SpeakerNotesOffTwoTone'; + declare export { + default as SpeakerNotesOutlined, + } from '@material-ui/icons/SpeakerNotesOutlined'; + declare export { + default as SpeakerNotesRounded, + } from '@material-ui/icons/SpeakerNotesRounded'; + declare export { + default as SpeakerNotesSharp, + } from '@material-ui/icons/SpeakerNotesSharp'; + declare export { + default as SpeakerNotesTwoTone, + } from '@material-ui/icons/SpeakerNotesTwoTone'; + declare export { + default as SpeakerOutlined, + } from '@material-ui/icons/SpeakerOutlined'; + declare export { + default as SpeakerPhone, + } from '@material-ui/icons/SpeakerPhone'; + declare export { + default as SpeakerPhoneOutlined, + } from '@material-ui/icons/SpeakerPhoneOutlined'; + declare export { + default as SpeakerPhoneRounded, + } from '@material-ui/icons/SpeakerPhoneRounded'; + declare export { + default as SpeakerPhoneSharp, + } from '@material-ui/icons/SpeakerPhoneSharp'; + declare export { + default as SpeakerPhoneTwoTone, + } from '@material-ui/icons/SpeakerPhoneTwoTone'; + declare export { + default as SpeakerRounded, + } from '@material-ui/icons/SpeakerRounded'; + declare export { + default as SpeakerSharp, + } from '@material-ui/icons/SpeakerSharp'; + declare export { + default as SpeakerTwoTone, + } from '@material-ui/icons/SpeakerTwoTone'; + declare export { default as Spellcheck } from '@material-ui/icons/Spellcheck'; + declare export { + default as SpellcheckOutlined, + } from '@material-ui/icons/SpellcheckOutlined'; + declare export { + default as SpellcheckRounded, + } from '@material-ui/icons/SpellcheckRounded'; + declare export { + default as SpellcheckSharp, + } from '@material-ui/icons/SpellcheckSharp'; + declare export { + default as SpellcheckTwoTone, + } from '@material-ui/icons/SpellcheckTwoTone'; + declare export { default as StarBorder } from '@material-ui/icons/StarBorder'; + declare export { + default as StarBorderOutlined, + } from '@material-ui/icons/StarBorderOutlined'; + declare export { + default as StarBorderRounded, + } from '@material-ui/icons/StarBorderRounded'; + declare export { + default as StarBorderSharp, + } from '@material-ui/icons/StarBorderSharp'; + declare export { + default as StarBorderTwoTone, + } from '@material-ui/icons/StarBorderTwoTone'; + declare export { default as StarHalf } from '@material-ui/icons/StarHalf'; + declare export { + default as StarHalfOutlined, + } from '@material-ui/icons/StarHalfOutlined'; + declare export { + default as StarHalfRounded, + } from '@material-ui/icons/StarHalfRounded'; + declare export { + default as StarHalfSharp, + } from '@material-ui/icons/StarHalfSharp'; + declare export { + default as StarHalfTwoTone, + } from '@material-ui/icons/StarHalfTwoTone'; + declare export { default as Star } from '@material-ui/icons/Star'; + declare export { + default as StarOutlined, + } from '@material-ui/icons/StarOutlined'; + declare export { default as StarRate } from '@material-ui/icons/StarRate'; + declare export { + default as StarRateOutlined, + } from '@material-ui/icons/StarRateOutlined'; + declare export { + default as StarRateRounded, + } from '@material-ui/icons/StarRateRounded'; + declare export { + default as StarRateSharp, + } from '@material-ui/icons/StarRateSharp'; + declare export { + default as StarRateTwoTone, + } from '@material-ui/icons/StarRateTwoTone'; + declare export { + default as StarRounded, + } from '@material-ui/icons/StarRounded'; + declare export { default as StarSharp } from '@material-ui/icons/StarSharp'; + declare export { default as Stars } from '@material-ui/icons/Stars'; + declare export { + default as StarsOutlined, + } from '@material-ui/icons/StarsOutlined'; + declare export { + default as StarsRounded, + } from '@material-ui/icons/StarsRounded'; + declare export { default as StarsSharp } from '@material-ui/icons/StarsSharp'; + declare export { + default as StarsTwoTone, + } from '@material-ui/icons/StarsTwoTone'; + declare export { + default as StarTwoTone, + } from '@material-ui/icons/StarTwoTone'; + declare export { + default as StayCurrentLandscape, + } from '@material-ui/icons/StayCurrentLandscape'; + declare export { + default as StayCurrentLandscapeOutlined, + } from '@material-ui/icons/StayCurrentLandscapeOutlined'; + declare export { + default as StayCurrentLandscapeRounded, + } from '@material-ui/icons/StayCurrentLandscapeRounded'; + declare export { + default as StayCurrentLandscapeSharp, + } from '@material-ui/icons/StayCurrentLandscapeSharp'; + declare export { + default as StayCurrentLandscapeTwoTone, + } from '@material-ui/icons/StayCurrentLandscapeTwoTone'; + declare export { + default as StayCurrentPortrait, + } from '@material-ui/icons/StayCurrentPortrait'; + declare export { + default as StayCurrentPortraitOutlined, + } from '@material-ui/icons/StayCurrentPortraitOutlined'; + declare export { + default as StayCurrentPortraitRounded, + } from '@material-ui/icons/StayCurrentPortraitRounded'; + declare export { + default as StayCurrentPortraitSharp, + } from '@material-ui/icons/StayCurrentPortraitSharp'; + declare export { + default as StayCurrentPortraitTwoTone, + } from '@material-ui/icons/StayCurrentPortraitTwoTone'; + declare export { + default as StayPrimaryLandscape, + } from '@material-ui/icons/StayPrimaryLandscape'; + declare export { + default as StayPrimaryLandscapeOutlined, + } from '@material-ui/icons/StayPrimaryLandscapeOutlined'; + declare export { + default as StayPrimaryLandscapeRounded, + } from '@material-ui/icons/StayPrimaryLandscapeRounded'; + declare export { + default as StayPrimaryLandscapeSharp, + } from '@material-ui/icons/StayPrimaryLandscapeSharp'; + declare export { + default as StayPrimaryLandscapeTwoTone, + } from '@material-ui/icons/StayPrimaryLandscapeTwoTone'; + declare export { + default as StayPrimaryPortrait, + } from '@material-ui/icons/StayPrimaryPortrait'; + declare export { + default as StayPrimaryPortraitOutlined, + } from '@material-ui/icons/StayPrimaryPortraitOutlined'; + declare export { + default as StayPrimaryPortraitRounded, + } from '@material-ui/icons/StayPrimaryPortraitRounded'; + declare export { + default as StayPrimaryPortraitSharp, + } from '@material-ui/icons/StayPrimaryPortraitSharp'; + declare export { + default as StayPrimaryPortraitTwoTone, + } from '@material-ui/icons/StayPrimaryPortraitTwoTone'; + declare export { default as Stop } from '@material-ui/icons/Stop'; + declare export { + default as StopOutlined, + } from '@material-ui/icons/StopOutlined'; + declare export { + default as StopRounded, + } from '@material-ui/icons/StopRounded'; + declare export { + default as StopScreenShare, + } from '@material-ui/icons/StopScreenShare'; + declare export { + default as StopScreenShareOutlined, + } from '@material-ui/icons/StopScreenShareOutlined'; + declare export { + default as StopScreenShareRounded, + } from '@material-ui/icons/StopScreenShareRounded'; + declare export { + default as StopScreenShareSharp, + } from '@material-ui/icons/StopScreenShareSharp'; + declare export { + default as StopScreenShareTwoTone, + } from '@material-ui/icons/StopScreenShareTwoTone'; + declare export { default as StopSharp } from '@material-ui/icons/StopSharp'; + declare export { + default as StopTwoTone, + } from '@material-ui/icons/StopTwoTone'; + declare export { default as Storage } from '@material-ui/icons/Storage'; + declare export { + default as StorageOutlined, + } from '@material-ui/icons/StorageOutlined'; + declare export { + default as StorageRounded, + } from '@material-ui/icons/StorageRounded'; + declare export { + default as StorageSharp, + } from '@material-ui/icons/StorageSharp'; + declare export { + default as StorageTwoTone, + } from '@material-ui/icons/StorageTwoTone'; + declare export { default as Store } from '@material-ui/icons/Store'; + declare export { + default as StoreMallDirectory, + } from '@material-ui/icons/StoreMallDirectory'; + declare export { + default as StoreMallDirectoryOutlined, + } from '@material-ui/icons/StoreMallDirectoryOutlined'; + declare export { + default as StoreMallDirectoryRounded, + } from '@material-ui/icons/StoreMallDirectoryRounded'; + declare export { + default as StoreMallDirectorySharp, + } from '@material-ui/icons/StoreMallDirectorySharp'; + declare export { + default as StoreMallDirectoryTwoTone, + } from '@material-ui/icons/StoreMallDirectoryTwoTone'; + declare export { + default as StoreOutlined, + } from '@material-ui/icons/StoreOutlined'; + declare export { + default as StoreRounded, + } from '@material-ui/icons/StoreRounded'; + declare export { default as StoreSharp } from '@material-ui/icons/StoreSharp'; + declare export { + default as StoreTwoTone, + } from '@material-ui/icons/StoreTwoTone'; + declare export { default as Straighten } from '@material-ui/icons/Straighten'; + declare export { + default as StraightenOutlined, + } from '@material-ui/icons/StraightenOutlined'; + declare export { + default as StraightenRounded, + } from '@material-ui/icons/StraightenRounded'; + declare export { + default as StraightenSharp, + } from '@material-ui/icons/StraightenSharp'; + declare export { + default as StraightenTwoTone, + } from '@material-ui/icons/StraightenTwoTone'; + declare export { default as Streetview } from '@material-ui/icons/Streetview'; + declare export { + default as StreetviewOutlined, + } from '@material-ui/icons/StreetviewOutlined'; + declare export { + default as StreetviewRounded, + } from '@material-ui/icons/StreetviewRounded'; + declare export { + default as StreetviewSharp, + } from '@material-ui/icons/StreetviewSharp'; + declare export { + default as StreetviewTwoTone, + } from '@material-ui/icons/StreetviewTwoTone'; + declare export { + default as StrikethroughS, + } from '@material-ui/icons/StrikethroughS'; + declare export { + default as StrikethroughSOutlined, + } from '@material-ui/icons/StrikethroughSOutlined'; + declare export { + default as StrikethroughSRounded, + } from '@material-ui/icons/StrikethroughSRounded'; + declare export { + default as StrikethroughSSharp, + } from '@material-ui/icons/StrikethroughSSharp'; + declare export { + default as StrikethroughSTwoTone, + } from '@material-ui/icons/StrikethroughSTwoTone'; + declare export { default as Style } from '@material-ui/icons/Style'; + declare export { + default as StyleOutlined, + } from '@material-ui/icons/StyleOutlined'; + declare export { + default as StyleRounded, + } from '@material-ui/icons/StyleRounded'; + declare export { default as StyleSharp } from '@material-ui/icons/StyleSharp'; + declare export { + default as StyleTwoTone, + } from '@material-ui/icons/StyleTwoTone'; + declare export { + default as SubdirectoryArrowLeft, + } from '@material-ui/icons/SubdirectoryArrowLeft'; + declare export { + default as SubdirectoryArrowLeftOutlined, + } from '@material-ui/icons/SubdirectoryArrowLeftOutlined'; + declare export { + default as SubdirectoryArrowLeftRounded, + } from '@material-ui/icons/SubdirectoryArrowLeftRounded'; + declare export { + default as SubdirectoryArrowLeftSharp, + } from '@material-ui/icons/SubdirectoryArrowLeftSharp'; + declare export { + default as SubdirectoryArrowLeftTwoTone, + } from '@material-ui/icons/SubdirectoryArrowLeftTwoTone'; + declare export { + default as SubdirectoryArrowRight, + } from '@material-ui/icons/SubdirectoryArrowRight'; + declare export { + default as SubdirectoryArrowRightOutlined, + } from '@material-ui/icons/SubdirectoryArrowRightOutlined'; + declare export { + default as SubdirectoryArrowRightRounded, + } from '@material-ui/icons/SubdirectoryArrowRightRounded'; + declare export { + default as SubdirectoryArrowRightSharp, + } from '@material-ui/icons/SubdirectoryArrowRightSharp'; + declare export { + default as SubdirectoryArrowRightTwoTone, + } from '@material-ui/icons/SubdirectoryArrowRightTwoTone'; + declare export { default as Subject } from '@material-ui/icons/Subject'; + declare export { + default as SubjectOutlined, + } from '@material-ui/icons/SubjectOutlined'; + declare export { + default as SubjectRounded, + } from '@material-ui/icons/SubjectRounded'; + declare export { + default as SubjectSharp, + } from '@material-ui/icons/SubjectSharp'; + declare export { + default as SubjectTwoTone, + } from '@material-ui/icons/SubjectTwoTone'; + declare export { + default as Subscriptions, + } from '@material-ui/icons/Subscriptions'; + declare export { + default as SubscriptionsOutlined, + } from '@material-ui/icons/SubscriptionsOutlined'; + declare export { + default as SubscriptionsRounded, + } from '@material-ui/icons/SubscriptionsRounded'; + declare export { + default as SubscriptionsSharp, + } from '@material-ui/icons/SubscriptionsSharp'; + declare export { + default as SubscriptionsTwoTone, + } from '@material-ui/icons/SubscriptionsTwoTone'; + declare export { default as Subtitles } from '@material-ui/icons/Subtitles'; + declare export { + default as SubtitlesOutlined, + } from '@material-ui/icons/SubtitlesOutlined'; + declare export { + default as SubtitlesRounded, + } from '@material-ui/icons/SubtitlesRounded'; + declare export { + default as SubtitlesSharp, + } from '@material-ui/icons/SubtitlesSharp'; + declare export { + default as SubtitlesTwoTone, + } from '@material-ui/icons/SubtitlesTwoTone'; + declare export { default as Subway } from '@material-ui/icons/Subway'; + declare export { + default as SubwayOutlined, + } from '@material-ui/icons/SubwayOutlined'; + declare export { + default as SubwayRounded, + } from '@material-ui/icons/SubwayRounded'; + declare export { + default as SubwaySharp, + } from '@material-ui/icons/SubwaySharp'; + declare export { + default as SubwayTwoTone, + } from '@material-ui/icons/SubwayTwoTone'; + declare export { + default as SupervisedUserCircle, + } from '@material-ui/icons/SupervisedUserCircle'; + declare export { + default as SupervisedUserCircleOutlined, + } from '@material-ui/icons/SupervisedUserCircleOutlined'; + declare export { + default as SupervisedUserCircleRounded, + } from '@material-ui/icons/SupervisedUserCircleRounded'; + declare export { + default as SupervisedUserCircleSharp, + } from '@material-ui/icons/SupervisedUserCircleSharp'; + declare export { + default as SupervisedUserCircleTwoTone, + } from '@material-ui/icons/SupervisedUserCircleTwoTone'; + declare export { + default as SupervisorAccount, + } from '@material-ui/icons/SupervisorAccount'; + declare export { + default as SupervisorAccountOutlined, + } from '@material-ui/icons/SupervisorAccountOutlined'; + declare export { + default as SupervisorAccountRounded, + } from '@material-ui/icons/SupervisorAccountRounded'; + declare export { + default as SupervisorAccountSharp, + } from '@material-ui/icons/SupervisorAccountSharp'; + declare export { + default as SupervisorAccountTwoTone, + } from '@material-ui/icons/SupervisorAccountTwoTone'; + declare export { + default as SurroundSound, + } from '@material-ui/icons/SurroundSound'; + declare export { + default as SurroundSoundOutlined, + } from '@material-ui/icons/SurroundSoundOutlined'; + declare export { + default as SurroundSoundRounded, + } from '@material-ui/icons/SurroundSoundRounded'; + declare export { + default as SurroundSoundSharp, + } from '@material-ui/icons/SurroundSoundSharp'; + declare export { + default as SurroundSoundTwoTone, + } from '@material-ui/icons/SurroundSoundTwoTone'; + declare export { default as SwapCalls } from '@material-ui/icons/SwapCalls'; + declare export { + default as SwapCallsOutlined, + } from '@material-ui/icons/SwapCallsOutlined'; + declare export { + default as SwapCallsRounded, + } from '@material-ui/icons/SwapCallsRounded'; + declare export { + default as SwapCallsSharp, + } from '@material-ui/icons/SwapCallsSharp'; + declare export { + default as SwapCallsTwoTone, + } from '@material-ui/icons/SwapCallsTwoTone'; + declare export { default as SwapHoriz } from '@material-ui/icons/SwapHoriz'; + declare export { + default as SwapHorizontalCircle, + } from '@material-ui/icons/SwapHorizontalCircle'; + declare export { + default as SwapHorizontalCircleOutlined, + } from '@material-ui/icons/SwapHorizontalCircleOutlined'; + declare export { + default as SwapHorizontalCircleRounded, + } from '@material-ui/icons/SwapHorizontalCircleRounded'; + declare export { + default as SwapHorizontalCircleSharp, + } from '@material-ui/icons/SwapHorizontalCircleSharp'; + declare export { + default as SwapHorizontalCircleTwoTone, + } from '@material-ui/icons/SwapHorizontalCircleTwoTone'; + declare export { + default as SwapHorizOutlined, + } from '@material-ui/icons/SwapHorizOutlined'; + declare export { + default as SwapHorizRounded, + } from '@material-ui/icons/SwapHorizRounded'; + declare export { + default as SwapHorizSharp, + } from '@material-ui/icons/SwapHorizSharp'; + declare export { + default as SwapHorizTwoTone, + } from '@material-ui/icons/SwapHorizTwoTone'; + declare export { + default as SwapVerticalCircle, + } from '@material-ui/icons/SwapVerticalCircle'; + declare export { + default as SwapVerticalCircleOutlined, + } from '@material-ui/icons/SwapVerticalCircleOutlined'; + declare export { + default as SwapVerticalCircleRounded, + } from '@material-ui/icons/SwapVerticalCircleRounded'; + declare export { + default as SwapVerticalCircleSharp, + } from '@material-ui/icons/SwapVerticalCircleSharp'; + declare export { + default as SwapVerticalCircleTwoTone, + } from '@material-ui/icons/SwapVerticalCircleTwoTone'; + declare export { default as SwapVert } from '@material-ui/icons/SwapVert'; + declare export { + default as SwapVertOutlined, + } from '@material-ui/icons/SwapVertOutlined'; + declare export { + default as SwapVertRounded, + } from '@material-ui/icons/SwapVertRounded'; + declare export { + default as SwapVertSharp, + } from '@material-ui/icons/SwapVertSharp'; + declare export { + default as SwapVertTwoTone, + } from '@material-ui/icons/SwapVertTwoTone'; + declare export { + default as SwitchCamera, + } from '@material-ui/icons/SwitchCamera'; + declare export { + default as SwitchCameraOutlined, + } from '@material-ui/icons/SwitchCameraOutlined'; + declare export { + default as SwitchCameraRounded, + } from '@material-ui/icons/SwitchCameraRounded'; + declare export { + default as SwitchCameraSharp, + } from '@material-ui/icons/SwitchCameraSharp'; + declare export { + default as SwitchCameraTwoTone, + } from '@material-ui/icons/SwitchCameraTwoTone'; + declare export { + default as SwitchVideo, + } from '@material-ui/icons/SwitchVideo'; + declare export { + default as SwitchVideoOutlined, + } from '@material-ui/icons/SwitchVideoOutlined'; + declare export { + default as SwitchVideoRounded, + } from '@material-ui/icons/SwitchVideoRounded'; + declare export { + default as SwitchVideoSharp, + } from '@material-ui/icons/SwitchVideoSharp'; + declare export { + default as SwitchVideoTwoTone, + } from '@material-ui/icons/SwitchVideoTwoTone'; + declare export { + default as SyncDisabled, + } from '@material-ui/icons/SyncDisabled'; + declare export { + default as SyncDisabledOutlined, + } from '@material-ui/icons/SyncDisabledOutlined'; + declare export { + default as SyncDisabledRounded, + } from '@material-ui/icons/SyncDisabledRounded'; + declare export { + default as SyncDisabledSharp, + } from '@material-ui/icons/SyncDisabledSharp'; + declare export { + default as SyncDisabledTwoTone, + } from '@material-ui/icons/SyncDisabledTwoTone'; + declare export { default as Sync } from '@material-ui/icons/Sync'; + declare export { + default as SyncOutlined, + } from '@material-ui/icons/SyncOutlined'; + declare export { + default as SyncProblem, + } from '@material-ui/icons/SyncProblem'; + declare export { + default as SyncProblemOutlined, + } from '@material-ui/icons/SyncProblemOutlined'; + declare export { + default as SyncProblemRounded, + } from '@material-ui/icons/SyncProblemRounded'; + declare export { + default as SyncProblemSharp, + } from '@material-ui/icons/SyncProblemSharp'; + declare export { + default as SyncProblemTwoTone, + } from '@material-ui/icons/SyncProblemTwoTone'; + declare export { + default as SyncRounded, + } from '@material-ui/icons/SyncRounded'; + declare export { default as SyncSharp } from '@material-ui/icons/SyncSharp'; + declare export { + default as SyncTwoTone, + } from '@material-ui/icons/SyncTwoTone'; + declare export { + default as SystemUpdate, + } from '@material-ui/icons/SystemUpdate'; + declare export { + default as SystemUpdateOutlined, + } from '@material-ui/icons/SystemUpdateOutlined'; + declare export { + default as SystemUpdateRounded, + } from '@material-ui/icons/SystemUpdateRounded'; + declare export { + default as SystemUpdateSharp, + } from '@material-ui/icons/SystemUpdateSharp'; + declare export { + default as SystemUpdateTwoTone, + } from '@material-ui/icons/SystemUpdateTwoTone'; + declare export { default as Tab } from '@material-ui/icons/Tab'; + declare export { default as TableChart } from '@material-ui/icons/TableChart'; + declare export { + default as TableChartOutlined, + } from '@material-ui/icons/TableChartOutlined'; + declare export { + default as TableChartRounded, + } from '@material-ui/icons/TableChartRounded'; + declare export { + default as TableChartSharp, + } from '@material-ui/icons/TableChartSharp'; + declare export { + default as TableChartTwoTone, + } from '@material-ui/icons/TableChartTwoTone'; + declare export { + default as TabletAndroid, + } from '@material-ui/icons/TabletAndroid'; + declare export { + default as TabletAndroidOutlined, + } from '@material-ui/icons/TabletAndroidOutlined'; + declare export { + default as TabletAndroidRounded, + } from '@material-ui/icons/TabletAndroidRounded'; + declare export { + default as TabletAndroidSharp, + } from '@material-ui/icons/TabletAndroidSharp'; + declare export { + default as TabletAndroidTwoTone, + } from '@material-ui/icons/TabletAndroidTwoTone'; + declare export { default as Tablet } from '@material-ui/icons/Tablet'; + declare export { default as TabletMac } from '@material-ui/icons/TabletMac'; + declare export { + default as TabletMacOutlined, + } from '@material-ui/icons/TabletMacOutlined'; + declare export { + default as TabletMacRounded, + } from '@material-ui/icons/TabletMacRounded'; + declare export { + default as TabletMacSharp, + } from '@material-ui/icons/TabletMacSharp'; + declare export { + default as TabletMacTwoTone, + } from '@material-ui/icons/TabletMacTwoTone'; + declare export { + default as TabletOutlined, + } from '@material-ui/icons/TabletOutlined'; + declare export { + default as TabletRounded, + } from '@material-ui/icons/TabletRounded'; + declare export { + default as TabletSharp, + } from '@material-ui/icons/TabletSharp'; + declare export { + default as TabletTwoTone, + } from '@material-ui/icons/TabletTwoTone'; + declare export { + default as TabOutlined, + } from '@material-ui/icons/TabOutlined'; + declare export { default as TabRounded } from '@material-ui/icons/TabRounded'; + declare export { default as TabSharp } from '@material-ui/icons/TabSharp'; + declare export { default as TabTwoTone } from '@material-ui/icons/TabTwoTone'; + declare export { + default as TabUnselected, + } from '@material-ui/icons/TabUnselected'; + declare export { + default as TabUnselectedOutlined, + } from '@material-ui/icons/TabUnselectedOutlined'; + declare export { + default as TabUnselectedRounded, + } from '@material-ui/icons/TabUnselectedRounded'; + declare export { + default as TabUnselectedSharp, + } from '@material-ui/icons/TabUnselectedSharp'; + declare export { + default as TabUnselectedTwoTone, + } from '@material-ui/icons/TabUnselectedTwoTone'; + declare export { default as TagFaces } from '@material-ui/icons/TagFaces'; + declare export { + default as TagFacesOutlined, + } from '@material-ui/icons/TagFacesOutlined'; + declare export { + default as TagFacesRounded, + } from '@material-ui/icons/TagFacesRounded'; + declare export { + default as TagFacesSharp, + } from '@material-ui/icons/TagFacesSharp'; + declare export { + default as TagFacesTwoTone, + } from '@material-ui/icons/TagFacesTwoTone'; + declare export { default as TapAndPlay } from '@material-ui/icons/TapAndPlay'; + declare export { + default as TapAndPlayOutlined, + } from '@material-ui/icons/TapAndPlayOutlined'; + declare export { + default as TapAndPlayRounded, + } from '@material-ui/icons/TapAndPlayRounded'; + declare export { + default as TapAndPlaySharp, + } from '@material-ui/icons/TapAndPlaySharp'; + declare export { + default as TapAndPlayTwoTone, + } from '@material-ui/icons/TapAndPlayTwoTone'; + declare export { default as Terrain } from '@material-ui/icons/Terrain'; + declare export { + default as TerrainOutlined, + } from '@material-ui/icons/TerrainOutlined'; + declare export { + default as TerrainRounded, + } from '@material-ui/icons/TerrainRounded'; + declare export { + default as TerrainSharp, + } from '@material-ui/icons/TerrainSharp'; + declare export { + default as TerrainTwoTone, + } from '@material-ui/icons/TerrainTwoTone'; + declare export { default as TextFields } from '@material-ui/icons/TextFields'; + declare export { + default as TextFieldsOutlined, + } from '@material-ui/icons/TextFieldsOutlined'; + declare export { + default as TextFieldsRounded, + } from '@material-ui/icons/TextFieldsRounded'; + declare export { + default as TextFieldsSharp, + } from '@material-ui/icons/TextFieldsSharp'; + declare export { + default as TextFieldsTwoTone, + } from '@material-ui/icons/TextFieldsTwoTone'; + declare export { default as TextFormat } from '@material-ui/icons/TextFormat'; + declare export { + default as TextFormatOutlined, + } from '@material-ui/icons/TextFormatOutlined'; + declare export { + default as TextFormatRounded, + } from '@material-ui/icons/TextFormatRounded'; + declare export { + default as TextFormatSharp, + } from '@material-ui/icons/TextFormatSharp'; + declare export { + default as TextFormatTwoTone, + } from '@material-ui/icons/TextFormatTwoTone'; + declare export { + default as TextRotateUp, + } from '@material-ui/icons/TextRotateUp'; + declare export { + default as TextRotateUpOutlined, + } from '@material-ui/icons/TextRotateUpOutlined'; + declare export { + default as TextRotateUpRounded, + } from '@material-ui/icons/TextRotateUpRounded'; + declare export { + default as TextRotateUpSharp, + } from '@material-ui/icons/TextRotateUpSharp'; + declare export { + default as TextRotateUpTwoTone, + } from '@material-ui/icons/TextRotateUpTwoTone'; + declare export { + default as TextRotateVertical, + } from '@material-ui/icons/TextRotateVertical'; + declare export { + default as TextRotateVerticalOutlined, + } from '@material-ui/icons/TextRotateVerticalOutlined'; + declare export { + default as TextRotateVerticalRounded, + } from '@material-ui/icons/TextRotateVerticalRounded'; + declare export { + default as TextRotateVerticalSharp, + } from '@material-ui/icons/TextRotateVerticalSharp'; + declare export { + default as TextRotateVerticalTwoTone, + } from '@material-ui/icons/TextRotateVerticalTwoTone'; + declare export { + default as TextRotationDown, + } from '@material-ui/icons/TextRotationDown'; + declare export { + default as TextRotationDownOutlined, + } from '@material-ui/icons/TextRotationDownOutlined'; + declare export { + default as TextRotationDownRounded, + } from '@material-ui/icons/TextRotationDownRounded'; + declare export { + default as TextRotationDownSharp, + } from '@material-ui/icons/TextRotationDownSharp'; + declare export { + default as TextRotationDownTwoTone, + } from '@material-ui/icons/TextRotationDownTwoTone'; + declare export { + default as TextRotationNone, + } from '@material-ui/icons/TextRotationNone'; + declare export { + default as TextRotationNoneOutlined, + } from '@material-ui/icons/TextRotationNoneOutlined'; + declare export { + default as TextRotationNoneRounded, + } from '@material-ui/icons/TextRotationNoneRounded'; + declare export { + default as TextRotationNoneSharp, + } from '@material-ui/icons/TextRotationNoneSharp'; + declare export { + default as TextRotationNoneTwoTone, + } from '@material-ui/icons/TextRotationNoneTwoTone'; + declare export { default as Textsms } from '@material-ui/icons/Textsms'; + declare export { + default as TextsmsOutlined, + } from '@material-ui/icons/TextsmsOutlined'; + declare export { + default as TextsmsRounded, + } from '@material-ui/icons/TextsmsRounded'; + declare export { + default as TextsmsSharp, + } from '@material-ui/icons/TextsmsSharp'; + declare export { + default as TextsmsTwoTone, + } from '@material-ui/icons/TextsmsTwoTone'; + declare export { default as Texture } from '@material-ui/icons/Texture'; + declare export { + default as TextureOutlined, + } from '@material-ui/icons/TextureOutlined'; + declare export { + default as TextureRounded, + } from '@material-ui/icons/TextureRounded'; + declare export { + default as TextureSharp, + } from '@material-ui/icons/TextureSharp'; + declare export { + default as TextureTwoTone, + } from '@material-ui/icons/TextureTwoTone'; + declare export { default as Theaters } from '@material-ui/icons/Theaters'; + declare export { + default as TheatersOutlined, + } from '@material-ui/icons/TheatersOutlined'; + declare export { + default as TheatersRounded, + } from '@material-ui/icons/TheatersRounded'; + declare export { + default as TheatersSharp, + } from '@material-ui/icons/TheatersSharp'; + declare export { + default as TheatersTwoTone, + } from '@material-ui/icons/TheatersTwoTone'; + declare export { + default as ThreeDRotation, + } from '@material-ui/icons/ThreeDRotation'; + declare export { + default as ThreeDRotationOutlined, + } from '@material-ui/icons/ThreeDRotationOutlined'; + declare export { + default as ThreeDRotationRounded, + } from '@material-ui/icons/ThreeDRotationRounded'; + declare export { + default as ThreeDRotationSharp, + } from '@material-ui/icons/ThreeDRotationSharp'; + declare export { + default as ThreeDRotationTwoTone, + } from '@material-ui/icons/ThreeDRotationTwoTone'; + declare export { default as ThreeSixty } from '@material-ui/icons/ThreeSixty'; + declare export { + default as ThreeSixtyOutlined, + } from '@material-ui/icons/ThreeSixtyOutlined'; + declare export { + default as ThreeSixtyRounded, + } from '@material-ui/icons/ThreeSixtyRounded'; + declare export { + default as ThreeSixtySharp, + } from '@material-ui/icons/ThreeSixtySharp'; + declare export { + default as ThreeSixtyTwoTone, + } from '@material-ui/icons/ThreeSixtyTwoTone'; + declare export { + default as ThumbDownAlt, + } from '@material-ui/icons/ThumbDownAlt'; + declare export { + default as ThumbDownAltOutlined, + } from '@material-ui/icons/ThumbDownAltOutlined'; + declare export { + default as ThumbDownAltRounded, + } from '@material-ui/icons/ThumbDownAltRounded'; + declare export { + default as ThumbDownAltSharp, + } from '@material-ui/icons/ThumbDownAltSharp'; + declare export { + default as ThumbDownAltTwoTone, + } from '@material-ui/icons/ThumbDownAltTwoTone'; + declare export { default as ThumbDown } from '@material-ui/icons/ThumbDown'; + declare export { + default as ThumbDownOutlined, + } from '@material-ui/icons/ThumbDownOutlined'; + declare export { + default as ThumbDownRounded, + } from '@material-ui/icons/ThumbDownRounded'; + declare export { + default as ThumbDownSharp, + } from '@material-ui/icons/ThumbDownSharp'; + declare export { + default as ThumbDownTwoTone, + } from '@material-ui/icons/ThumbDownTwoTone'; + declare export { + default as ThumbsUpDown, + } from '@material-ui/icons/ThumbsUpDown'; + declare export { + default as ThumbsUpDownOutlined, + } from '@material-ui/icons/ThumbsUpDownOutlined'; + declare export { + default as ThumbsUpDownRounded, + } from '@material-ui/icons/ThumbsUpDownRounded'; + declare export { + default as ThumbsUpDownSharp, + } from '@material-ui/icons/ThumbsUpDownSharp'; + declare export { + default as ThumbsUpDownTwoTone, + } from '@material-ui/icons/ThumbsUpDownTwoTone'; + declare export { default as ThumbUpAlt } from '@material-ui/icons/ThumbUpAlt'; + declare export { + default as ThumbUpAltOutlined, + } from '@material-ui/icons/ThumbUpAltOutlined'; + declare export { + default as ThumbUpAltRounded, + } from '@material-ui/icons/ThumbUpAltRounded'; + declare export { + default as ThumbUpAltSharp, + } from '@material-ui/icons/ThumbUpAltSharp'; + declare export { + default as ThumbUpAltTwoTone, + } from '@material-ui/icons/ThumbUpAltTwoTone'; + declare export { default as ThumbUp } from '@material-ui/icons/ThumbUp'; + declare export { + default as ThumbUpOutlined, + } from '@material-ui/icons/ThumbUpOutlined'; + declare export { + default as ThumbUpRounded, + } from '@material-ui/icons/ThumbUpRounded'; + declare export { + default as ThumbUpSharp, + } from '@material-ui/icons/ThumbUpSharp'; + declare export { + default as ThumbUpTwoTone, + } from '@material-ui/icons/ThumbUpTwoTone'; + declare export { default as Timelapse } from '@material-ui/icons/Timelapse'; + declare export { + default as TimelapseOutlined, + } from '@material-ui/icons/TimelapseOutlined'; + declare export { + default as TimelapseRounded, + } from '@material-ui/icons/TimelapseRounded'; + declare export { + default as TimelapseSharp, + } from '@material-ui/icons/TimelapseSharp'; + declare export { + default as TimelapseTwoTone, + } from '@material-ui/icons/TimelapseTwoTone'; + declare export { default as Timeline } from '@material-ui/icons/Timeline'; + declare export { + default as TimelineOutlined, + } from '@material-ui/icons/TimelineOutlined'; + declare export { + default as TimelineRounded, + } from '@material-ui/icons/TimelineRounded'; + declare export { + default as TimelineSharp, + } from '@material-ui/icons/TimelineSharp'; + declare export { + default as TimelineTwoTone, + } from '@material-ui/icons/TimelineTwoTone'; + declare export { default as Timer10 } from '@material-ui/icons/Timer10'; + declare export { + default as Timer10Outlined, + } from '@material-ui/icons/Timer10Outlined'; + declare export { + default as Timer10Rounded, + } from '@material-ui/icons/Timer10Rounded'; + declare export { + default as Timer10Sharp, + } from '@material-ui/icons/Timer10Sharp'; + declare export { + default as Timer10TwoTone, + } from '@material-ui/icons/Timer10TwoTone'; + declare export { default as Timer3 } from '@material-ui/icons/Timer3'; + declare export { + default as Timer3Outlined, + } from '@material-ui/icons/Timer3Outlined'; + declare export { + default as Timer3Rounded, + } from '@material-ui/icons/Timer3Rounded'; + declare export { + default as Timer3Sharp, + } from '@material-ui/icons/Timer3Sharp'; + declare export { + default as Timer3TwoTone, + } from '@material-ui/icons/Timer3TwoTone'; + declare export { default as Timer } from '@material-ui/icons/Timer'; + declare export { default as TimerOff } from '@material-ui/icons/TimerOff'; + declare export { + default as TimerOffOutlined, + } from '@material-ui/icons/TimerOffOutlined'; + declare export { + default as TimerOffRounded, + } from '@material-ui/icons/TimerOffRounded'; + declare export { + default as TimerOffSharp, + } from '@material-ui/icons/TimerOffSharp'; + declare export { + default as TimerOffTwoTone, + } from '@material-ui/icons/TimerOffTwoTone'; + declare export { + default as TimerOutlined, + } from '@material-ui/icons/TimerOutlined'; + declare export { + default as TimerRounded, + } from '@material-ui/icons/TimerRounded'; + declare export { default as TimerSharp } from '@material-ui/icons/TimerSharp'; + declare export { + default as TimerTwoTone, + } from '@material-ui/icons/TimerTwoTone'; + declare export { + default as TimeToLeave, + } from '@material-ui/icons/TimeToLeave'; + declare export { + default as TimeToLeaveOutlined, + } from '@material-ui/icons/TimeToLeaveOutlined'; + declare export { + default as TimeToLeaveRounded, + } from '@material-ui/icons/TimeToLeaveRounded'; + declare export { + default as TimeToLeaveSharp, + } from '@material-ui/icons/TimeToLeaveSharp'; + declare export { + default as TimeToLeaveTwoTone, + } from '@material-ui/icons/TimeToLeaveTwoTone'; + declare export { default as Title } from '@material-ui/icons/Title'; + declare export { + default as TitleOutlined, + } from '@material-ui/icons/TitleOutlined'; + declare export { + default as TitleRounded, + } from '@material-ui/icons/TitleRounded'; + declare export { default as TitleSharp } from '@material-ui/icons/TitleSharp'; + declare export { + default as TitleTwoTone, + } from '@material-ui/icons/TitleTwoTone'; + declare export { default as Toc } from '@material-ui/icons/Toc'; + declare export { + default as TocOutlined, + } from '@material-ui/icons/TocOutlined'; + declare export { default as TocRounded } from '@material-ui/icons/TocRounded'; + declare export { default as TocSharp } from '@material-ui/icons/TocSharp'; + declare export { default as TocTwoTone } from '@material-ui/icons/TocTwoTone'; + declare export { default as Today } from '@material-ui/icons/Today'; + declare export { + default as TodayOutlined, + } from '@material-ui/icons/TodayOutlined'; + declare export { + default as TodayRounded, + } from '@material-ui/icons/TodayRounded'; + declare export { default as TodaySharp } from '@material-ui/icons/TodaySharp'; + declare export { + default as TodayTwoTone, + } from '@material-ui/icons/TodayTwoTone'; + declare export { default as ToggleOff } from '@material-ui/icons/ToggleOff'; + declare export { + default as ToggleOffOutlined, + } from '@material-ui/icons/ToggleOffOutlined'; + declare export { + default as ToggleOffRounded, + } from '@material-ui/icons/ToggleOffRounded'; + declare export { + default as ToggleOffSharp, + } from '@material-ui/icons/ToggleOffSharp'; + declare export { + default as ToggleOffTwoTone, + } from '@material-ui/icons/ToggleOffTwoTone'; + declare export { default as ToggleOn } from '@material-ui/icons/ToggleOn'; + declare export { + default as ToggleOnOutlined, + } from '@material-ui/icons/ToggleOnOutlined'; + declare export { + default as ToggleOnRounded, + } from '@material-ui/icons/ToggleOnRounded'; + declare export { + default as ToggleOnSharp, + } from '@material-ui/icons/ToggleOnSharp'; + declare export { + default as ToggleOnTwoTone, + } from '@material-ui/icons/ToggleOnTwoTone'; + declare export { default as Toll } from '@material-ui/icons/Toll'; + declare export { + default as TollOutlined, + } from '@material-ui/icons/TollOutlined'; + declare export { + default as TollRounded, + } from '@material-ui/icons/TollRounded'; + declare export { default as TollSharp } from '@material-ui/icons/TollSharp'; + declare export { + default as TollTwoTone, + } from '@material-ui/icons/TollTwoTone'; + declare export { default as Tonality } from '@material-ui/icons/Tonality'; + declare export { + default as TonalityOutlined, + } from '@material-ui/icons/TonalityOutlined'; + declare export { + default as TonalityRounded, + } from '@material-ui/icons/TonalityRounded'; + declare export { + default as TonalitySharp, + } from '@material-ui/icons/TonalitySharp'; + declare export { + default as TonalityTwoTone, + } from '@material-ui/icons/TonalityTwoTone'; + declare export { default as TouchApp } from '@material-ui/icons/TouchApp'; + declare export { + default as TouchAppOutlined, + } from '@material-ui/icons/TouchAppOutlined'; + declare export { + default as TouchAppRounded, + } from '@material-ui/icons/TouchAppRounded'; + declare export { + default as TouchAppSharp, + } from '@material-ui/icons/TouchAppSharp'; + declare export { + default as TouchAppTwoTone, + } from '@material-ui/icons/TouchAppTwoTone'; + declare export { default as Toys } from '@material-ui/icons/Toys'; + declare export { + default as ToysOutlined, + } from '@material-ui/icons/ToysOutlined'; + declare export { + default as ToysRounded, + } from '@material-ui/icons/ToysRounded'; + declare export { default as ToysSharp } from '@material-ui/icons/ToysSharp'; + declare export { + default as ToysTwoTone, + } from '@material-ui/icons/ToysTwoTone'; + declare export { + default as TrackChanges, + } from '@material-ui/icons/TrackChanges'; + declare export { + default as TrackChangesOutlined, + } from '@material-ui/icons/TrackChangesOutlined'; + declare export { + default as TrackChangesRounded, + } from '@material-ui/icons/TrackChangesRounded'; + declare export { + default as TrackChangesSharp, + } from '@material-ui/icons/TrackChangesSharp'; + declare export { + default as TrackChangesTwoTone, + } from '@material-ui/icons/TrackChangesTwoTone'; + declare export { default as Traffic } from '@material-ui/icons/Traffic'; + declare export { + default as TrafficOutlined, + } from '@material-ui/icons/TrafficOutlined'; + declare export { + default as TrafficRounded, + } from '@material-ui/icons/TrafficRounded'; + declare export { + default as TrafficSharp, + } from '@material-ui/icons/TrafficSharp'; + declare export { + default as TrafficTwoTone, + } from '@material-ui/icons/TrafficTwoTone'; + declare export { default as Train } from '@material-ui/icons/Train'; + declare export { + default as TrainOutlined, + } from '@material-ui/icons/TrainOutlined'; + declare export { + default as TrainRounded, + } from '@material-ui/icons/TrainRounded'; + declare export { default as TrainSharp } from '@material-ui/icons/TrainSharp'; + declare export { + default as TrainTwoTone, + } from '@material-ui/icons/TrainTwoTone'; + declare export { default as Tram } from '@material-ui/icons/Tram'; + declare export { + default as TramOutlined, + } from '@material-ui/icons/TramOutlined'; + declare export { + default as TramRounded, + } from '@material-ui/icons/TramRounded'; + declare export { default as TramSharp } from '@material-ui/icons/TramSharp'; + declare export { + default as TramTwoTone, + } from '@material-ui/icons/TramTwoTone'; + declare export { + default as TransferWithinAStation, + } from '@material-ui/icons/TransferWithinAStation'; + declare export { + default as TransferWithinAStationOutlined, + } from '@material-ui/icons/TransferWithinAStationOutlined'; + declare export { + default as TransferWithinAStationRounded, + } from '@material-ui/icons/TransferWithinAStationRounded'; + declare export { + default as TransferWithinAStationSharp, + } from '@material-ui/icons/TransferWithinAStationSharp'; + declare export { + default as TransferWithinAStationTwoTone, + } from '@material-ui/icons/TransferWithinAStationTwoTone'; + declare export { default as Transform } from '@material-ui/icons/Transform'; + declare export { + default as TransformOutlined, + } from '@material-ui/icons/TransformOutlined'; + declare export { + default as TransformRounded, + } from '@material-ui/icons/TransformRounded'; + declare export { + default as TransformSharp, + } from '@material-ui/icons/TransformSharp'; + declare export { + default as TransformTwoTone, + } from '@material-ui/icons/TransformTwoTone'; + declare export { + default as TransitEnterexit, + } from '@material-ui/icons/TransitEnterexit'; + declare export { + default as TransitEnterexitOutlined, + } from '@material-ui/icons/TransitEnterexitOutlined'; + declare export { + default as TransitEnterexitRounded, + } from '@material-ui/icons/TransitEnterexitRounded'; + declare export { + default as TransitEnterexitSharp, + } from '@material-ui/icons/TransitEnterexitSharp'; + declare export { + default as TransitEnterexitTwoTone, + } from '@material-ui/icons/TransitEnterexitTwoTone'; + declare export { default as Translate } from '@material-ui/icons/Translate'; + declare export { + default as TranslateOutlined, + } from '@material-ui/icons/TranslateOutlined'; + declare export { + default as TranslateRounded, + } from '@material-ui/icons/TranslateRounded'; + declare export { + default as TranslateSharp, + } from '@material-ui/icons/TranslateSharp'; + declare export { + default as TranslateTwoTone, + } from '@material-ui/icons/TranslateTwoTone'; + declare export { + default as TrendingDown, + } from '@material-ui/icons/TrendingDown'; + declare export { + default as TrendingDownOutlined, + } from '@material-ui/icons/TrendingDownOutlined'; + declare export { + default as TrendingDownRounded, + } from '@material-ui/icons/TrendingDownRounded'; + declare export { + default as TrendingDownSharp, + } from '@material-ui/icons/TrendingDownSharp'; + declare export { + default as TrendingDownTwoTone, + } from '@material-ui/icons/TrendingDownTwoTone'; + declare export { + default as TrendingFlat, + } from '@material-ui/icons/TrendingFlat'; + declare export { + default as TrendingFlatOutlined, + } from '@material-ui/icons/TrendingFlatOutlined'; + declare export { + default as TrendingFlatRounded, + } from '@material-ui/icons/TrendingFlatRounded'; + declare export { + default as TrendingFlatSharp, + } from '@material-ui/icons/TrendingFlatSharp'; + declare export { + default as TrendingFlatTwoTone, + } from '@material-ui/icons/TrendingFlatTwoTone'; + declare export { default as TrendingUp } from '@material-ui/icons/TrendingUp'; + declare export { + default as TrendingUpOutlined, + } from '@material-ui/icons/TrendingUpOutlined'; + declare export { + default as TrendingUpRounded, + } from '@material-ui/icons/TrendingUpRounded'; + declare export { + default as TrendingUpSharp, + } from '@material-ui/icons/TrendingUpSharp'; + declare export { + default as TrendingUpTwoTone, + } from '@material-ui/icons/TrendingUpTwoTone'; + declare export { default as TripOrigin } from '@material-ui/icons/TripOrigin'; + declare export { + default as TripOriginOutlined, + } from '@material-ui/icons/TripOriginOutlined'; + declare export { + default as TripOriginRounded, + } from '@material-ui/icons/TripOriginRounded'; + declare export { + default as TripOriginSharp, + } from '@material-ui/icons/TripOriginSharp'; + declare export { + default as TripOriginTwoTone, + } from '@material-ui/icons/TripOriginTwoTone'; + declare export { default as Tune } from '@material-ui/icons/Tune'; + declare export { + default as TuneOutlined, + } from '@material-ui/icons/TuneOutlined'; + declare export { + default as TuneRounded, + } from '@material-ui/icons/TuneRounded'; + declare export { default as TuneSharp } from '@material-ui/icons/TuneSharp'; + declare export { + default as TuneTwoTone, + } from '@material-ui/icons/TuneTwoTone'; + declare export { default as TurnedIn } from '@material-ui/icons/TurnedIn'; + declare export { + default as TurnedInNot, + } from '@material-ui/icons/TurnedInNot'; + declare export { + default as TurnedInNotOutlined, + } from '@material-ui/icons/TurnedInNotOutlined'; + declare export { + default as TurnedInNotRounded, + } from '@material-ui/icons/TurnedInNotRounded'; + declare export { + default as TurnedInNotSharp, + } from '@material-ui/icons/TurnedInNotSharp'; + declare export { + default as TurnedInNotTwoTone, + } from '@material-ui/icons/TurnedInNotTwoTone'; + declare export { + default as TurnedInOutlined, + } from '@material-ui/icons/TurnedInOutlined'; + declare export { + default as TurnedInRounded, + } from '@material-ui/icons/TurnedInRounded'; + declare export { + default as TurnedInSharp, + } from '@material-ui/icons/TurnedInSharp'; + declare export { + default as TurnedInTwoTone, + } from '@material-ui/icons/TurnedInTwoTone'; + declare export { default as Tv } from '@material-ui/icons/Tv'; + declare export { default as TvOff } from '@material-ui/icons/TvOff'; + declare export { + default as TvOffOutlined, + } from '@material-ui/icons/TvOffOutlined'; + declare export { + default as TvOffRounded, + } from '@material-ui/icons/TvOffRounded'; + declare export { default as TvOffSharp } from '@material-ui/icons/TvOffSharp'; + declare export { + default as TvOffTwoTone, + } from '@material-ui/icons/TvOffTwoTone'; + declare export { default as TvOutlined } from '@material-ui/icons/TvOutlined'; + declare export { default as TvRounded } from '@material-ui/icons/TvRounded'; + declare export { default as TvSharp } from '@material-ui/icons/TvSharp'; + declare export { default as TvTwoTone } from '@material-ui/icons/TvTwoTone'; + declare export { default as Unarchive } from '@material-ui/icons/Unarchive'; + declare export { + default as UnarchiveOutlined, + } from '@material-ui/icons/UnarchiveOutlined'; + declare export { + default as UnarchiveRounded, + } from '@material-ui/icons/UnarchiveRounded'; + declare export { + default as UnarchiveSharp, + } from '@material-ui/icons/UnarchiveSharp'; + declare export { + default as UnarchiveTwoTone, + } from '@material-ui/icons/UnarchiveTwoTone'; + declare export { default as Undo } from '@material-ui/icons/Undo'; + declare export { + default as UndoOutlined, + } from '@material-ui/icons/UndoOutlined'; + declare export { + default as UndoRounded, + } from '@material-ui/icons/UndoRounded'; + declare export { default as UndoSharp } from '@material-ui/icons/UndoSharp'; + declare export { + default as UndoTwoTone, + } from '@material-ui/icons/UndoTwoTone'; + declare export { default as UnfoldLess } from '@material-ui/icons/UnfoldLess'; + declare export { + default as UnfoldLessOutlined, + } from '@material-ui/icons/UnfoldLessOutlined'; + declare export { + default as UnfoldLessRounded, + } from '@material-ui/icons/UnfoldLessRounded'; + declare export { + default as UnfoldLessSharp, + } from '@material-ui/icons/UnfoldLessSharp'; + declare export { + default as UnfoldLessTwoTone, + } from '@material-ui/icons/UnfoldLessTwoTone'; + declare export { default as UnfoldMore } from '@material-ui/icons/UnfoldMore'; + declare export { + default as UnfoldMoreOutlined, + } from '@material-ui/icons/UnfoldMoreOutlined'; + declare export { + default as UnfoldMoreRounded, + } from '@material-ui/icons/UnfoldMoreRounded'; + declare export { + default as UnfoldMoreSharp, + } from '@material-ui/icons/UnfoldMoreSharp'; + declare export { + default as UnfoldMoreTwoTone, + } from '@material-ui/icons/UnfoldMoreTwoTone'; + declare export { + default as Unsubscribe, + } from '@material-ui/icons/Unsubscribe'; + declare export { + default as UnsubscribeOutlined, + } from '@material-ui/icons/UnsubscribeOutlined'; + declare export { + default as UnsubscribeRounded, + } from '@material-ui/icons/UnsubscribeRounded'; + declare export { + default as UnsubscribeSharp, + } from '@material-ui/icons/UnsubscribeSharp'; + declare export { + default as UnsubscribeTwoTone, + } from '@material-ui/icons/UnsubscribeTwoTone'; + declare export { default as Update } from '@material-ui/icons/Update'; + declare export { + default as UpdateOutlined, + } from '@material-ui/icons/UpdateOutlined'; + declare export { + default as UpdateRounded, + } from '@material-ui/icons/UpdateRounded'; + declare export { + default as UpdateSharp, + } from '@material-ui/icons/UpdateSharp'; + declare export { + default as UpdateTwoTone, + } from '@material-ui/icons/UpdateTwoTone'; + declare export { default as Usb } from '@material-ui/icons/Usb'; + declare export { + default as UsbOutlined, + } from '@material-ui/icons/UsbOutlined'; + declare export { default as UsbRounded } from '@material-ui/icons/UsbRounded'; + declare export { default as UsbSharp } from '@material-ui/icons/UsbSharp'; + declare export { default as UsbTwoTone } from '@material-ui/icons/UsbTwoTone'; + declare export { + default as VerifiedUser, + } from '@material-ui/icons/VerifiedUser'; + declare export { + default as VerifiedUserOutlined, + } from '@material-ui/icons/VerifiedUserOutlined'; + declare export { + default as VerifiedUserRounded, + } from '@material-ui/icons/VerifiedUserRounded'; + declare export { + default as VerifiedUserSharp, + } from '@material-ui/icons/VerifiedUserSharp'; + declare export { + default as VerifiedUserTwoTone, + } from '@material-ui/icons/VerifiedUserTwoTone'; + declare export { + default as VerticalAlignBottom, + } from '@material-ui/icons/VerticalAlignBottom'; + declare export { + default as VerticalAlignBottomOutlined, + } from '@material-ui/icons/VerticalAlignBottomOutlined'; + declare export { + default as VerticalAlignBottomRounded, + } from '@material-ui/icons/VerticalAlignBottomRounded'; + declare export { + default as VerticalAlignBottomSharp, + } from '@material-ui/icons/VerticalAlignBottomSharp'; + declare export { + default as VerticalAlignBottomTwoTone, + } from '@material-ui/icons/VerticalAlignBottomTwoTone'; + declare export { + default as VerticalAlignCenter, + } from '@material-ui/icons/VerticalAlignCenter'; + declare export { + default as VerticalAlignCenterOutlined, + } from '@material-ui/icons/VerticalAlignCenterOutlined'; + declare export { + default as VerticalAlignCenterRounded, + } from '@material-ui/icons/VerticalAlignCenterRounded'; + declare export { + default as VerticalAlignCenterSharp, + } from '@material-ui/icons/VerticalAlignCenterSharp'; + declare export { + default as VerticalAlignCenterTwoTone, + } from '@material-ui/icons/VerticalAlignCenterTwoTone'; + declare export { + default as VerticalAlignTop, + } from '@material-ui/icons/VerticalAlignTop'; + declare export { + default as VerticalAlignTopOutlined, + } from '@material-ui/icons/VerticalAlignTopOutlined'; + declare export { + default as VerticalAlignTopRounded, + } from '@material-ui/icons/VerticalAlignTopRounded'; + declare export { + default as VerticalAlignTopSharp, + } from '@material-ui/icons/VerticalAlignTopSharp'; + declare export { + default as VerticalAlignTopTwoTone, + } from '@material-ui/icons/VerticalAlignTopTwoTone'; + declare export { + default as VerticalSplit, + } from '@material-ui/icons/VerticalSplit'; + declare export { + default as VerticalSplitOutlined, + } from '@material-ui/icons/VerticalSplitOutlined'; + declare export { + default as VerticalSplitRounded, + } from '@material-ui/icons/VerticalSplitRounded'; + declare export { + default as VerticalSplitSharp, + } from '@material-ui/icons/VerticalSplitSharp'; + declare export { + default as VerticalSplitTwoTone, + } from '@material-ui/icons/VerticalSplitTwoTone'; + declare export { default as Vibration } from '@material-ui/icons/Vibration'; + declare export { + default as VibrationOutlined, + } from '@material-ui/icons/VibrationOutlined'; + declare export { + default as VibrationRounded, + } from '@material-ui/icons/VibrationRounded'; + declare export { + default as VibrationSharp, + } from '@material-ui/icons/VibrationSharp'; + declare export { + default as VibrationTwoTone, + } from '@material-ui/icons/VibrationTwoTone'; + declare export { default as VideoCall } from '@material-ui/icons/VideoCall'; + declare export { + default as VideoCallOutlined, + } from '@material-ui/icons/VideoCallOutlined'; + declare export { + default as VideoCallRounded, + } from '@material-ui/icons/VideoCallRounded'; + declare export { + default as VideoCallSharp, + } from '@material-ui/icons/VideoCallSharp'; + declare export { + default as VideoCallTwoTone, + } from '@material-ui/icons/VideoCallTwoTone'; + declare export { default as Videocam } from '@material-ui/icons/Videocam'; + declare export { + default as VideocamOff, + } from '@material-ui/icons/VideocamOff'; + declare export { + default as VideocamOffOutlined, + } from '@material-ui/icons/VideocamOffOutlined'; + declare export { + default as VideocamOffRounded, + } from '@material-ui/icons/VideocamOffRounded'; + declare export { + default as VideocamOffSharp, + } from '@material-ui/icons/VideocamOffSharp'; + declare export { + default as VideocamOffTwoTone, + } from '@material-ui/icons/VideocamOffTwoTone'; + declare export { + default as VideocamOutlined, + } from '@material-ui/icons/VideocamOutlined'; + declare export { + default as VideocamRounded, + } from '@material-ui/icons/VideocamRounded'; + declare export { + default as VideocamSharp, + } from '@material-ui/icons/VideocamSharp'; + declare export { + default as VideocamTwoTone, + } from '@material-ui/icons/VideocamTwoTone'; + declare export { + default as VideogameAsset, + } from '@material-ui/icons/VideogameAsset'; + declare export { + default as VideogameAssetOutlined, + } from '@material-ui/icons/VideogameAssetOutlined'; + declare export { + default as VideogameAssetRounded, + } from '@material-ui/icons/VideogameAssetRounded'; + declare export { + default as VideogameAssetSharp, + } from '@material-ui/icons/VideogameAssetSharp'; + declare export { + default as VideogameAssetTwoTone, + } from '@material-ui/icons/VideogameAssetTwoTone'; + declare export { default as VideoLabel } from '@material-ui/icons/VideoLabel'; + declare export { + default as VideoLabelOutlined, + } from '@material-ui/icons/VideoLabelOutlined'; + declare export { + default as VideoLabelRounded, + } from '@material-ui/icons/VideoLabelRounded'; + declare export { + default as VideoLabelSharp, + } from '@material-ui/icons/VideoLabelSharp'; + declare export { + default as VideoLabelTwoTone, + } from '@material-ui/icons/VideoLabelTwoTone'; + declare export { + default as VideoLibrary, + } from '@material-ui/icons/VideoLibrary'; + declare export { + default as VideoLibraryOutlined, + } from '@material-ui/icons/VideoLibraryOutlined'; + declare export { + default as VideoLibraryRounded, + } from '@material-ui/icons/VideoLibraryRounded'; + declare export { + default as VideoLibrarySharp, + } from '@material-ui/icons/VideoLibrarySharp'; + declare export { + default as VideoLibraryTwoTone, + } from '@material-ui/icons/VideoLibraryTwoTone'; + declare export { default as ViewAgenda } from '@material-ui/icons/ViewAgenda'; + declare export { + default as ViewAgendaOutlined, + } from '@material-ui/icons/ViewAgendaOutlined'; + declare export { + default as ViewAgendaRounded, + } from '@material-ui/icons/ViewAgendaRounded'; + declare export { + default as ViewAgendaSharp, + } from '@material-ui/icons/ViewAgendaSharp'; + declare export { + default as ViewAgendaTwoTone, + } from '@material-ui/icons/ViewAgendaTwoTone'; + declare export { default as ViewArray } from '@material-ui/icons/ViewArray'; + declare export { + default as ViewArrayOutlined, + } from '@material-ui/icons/ViewArrayOutlined'; + declare export { + default as ViewArrayRounded, + } from '@material-ui/icons/ViewArrayRounded'; + declare export { + default as ViewArraySharp, + } from '@material-ui/icons/ViewArraySharp'; + declare export { + default as ViewArrayTwoTone, + } from '@material-ui/icons/ViewArrayTwoTone'; + declare export { + default as ViewCarousel, + } from '@material-ui/icons/ViewCarousel'; + declare export { + default as ViewCarouselOutlined, + } from '@material-ui/icons/ViewCarouselOutlined'; + declare export { + default as ViewCarouselRounded, + } from '@material-ui/icons/ViewCarouselRounded'; + declare export { + default as ViewCarouselSharp, + } from '@material-ui/icons/ViewCarouselSharp'; + declare export { + default as ViewCarouselTwoTone, + } from '@material-ui/icons/ViewCarouselTwoTone'; + declare export { default as ViewColumn } from '@material-ui/icons/ViewColumn'; + declare export { + default as ViewColumnOutlined, + } from '@material-ui/icons/ViewColumnOutlined'; + declare export { + default as ViewColumnRounded, + } from '@material-ui/icons/ViewColumnRounded'; + declare export { + default as ViewColumnSharp, + } from '@material-ui/icons/ViewColumnSharp'; + declare export { + default as ViewColumnTwoTone, + } from '@material-ui/icons/ViewColumnTwoTone'; + declare export { default as ViewComfy } from '@material-ui/icons/ViewComfy'; + declare export { + default as ViewComfyOutlined, + } from '@material-ui/icons/ViewComfyOutlined'; + declare export { + default as ViewComfyRounded, + } from '@material-ui/icons/ViewComfyRounded'; + declare export { + default as ViewComfySharp, + } from '@material-ui/icons/ViewComfySharp'; + declare export { + default as ViewComfyTwoTone, + } from '@material-ui/icons/ViewComfyTwoTone'; + declare export { + default as ViewCompact, + } from '@material-ui/icons/ViewCompact'; + declare export { + default as ViewCompactOutlined, + } from '@material-ui/icons/ViewCompactOutlined'; + declare export { + default as ViewCompactRounded, + } from '@material-ui/icons/ViewCompactRounded'; + declare export { + default as ViewCompactSharp, + } from '@material-ui/icons/ViewCompactSharp'; + declare export { + default as ViewCompactTwoTone, + } from '@material-ui/icons/ViewCompactTwoTone'; + declare export { default as ViewDay } from '@material-ui/icons/ViewDay'; + declare export { + default as ViewDayOutlined, + } from '@material-ui/icons/ViewDayOutlined'; + declare export { + default as ViewDayRounded, + } from '@material-ui/icons/ViewDayRounded'; + declare export { + default as ViewDaySharp, + } from '@material-ui/icons/ViewDaySharp'; + declare export { + default as ViewDayTwoTone, + } from '@material-ui/icons/ViewDayTwoTone'; + declare export { + default as ViewHeadline, + } from '@material-ui/icons/ViewHeadline'; + declare export { + default as ViewHeadlineOutlined, + } from '@material-ui/icons/ViewHeadlineOutlined'; + declare export { + default as ViewHeadlineRounded, + } from '@material-ui/icons/ViewHeadlineRounded'; + declare export { + default as ViewHeadlineSharp, + } from '@material-ui/icons/ViewHeadlineSharp'; + declare export { + default as ViewHeadlineTwoTone, + } from '@material-ui/icons/ViewHeadlineTwoTone'; + declare export { default as ViewList } from '@material-ui/icons/ViewList'; + declare export { + default as ViewListOutlined, + } from '@material-ui/icons/ViewListOutlined'; + declare export { + default as ViewListRounded, + } from '@material-ui/icons/ViewListRounded'; + declare export { + default as ViewListSharp, + } from '@material-ui/icons/ViewListSharp'; + declare export { + default as ViewListTwoTone, + } from '@material-ui/icons/ViewListTwoTone'; + declare export { default as ViewModule } from '@material-ui/icons/ViewModule'; + declare export { + default as ViewModuleOutlined, + } from '@material-ui/icons/ViewModuleOutlined'; + declare export { + default as ViewModuleRounded, + } from '@material-ui/icons/ViewModuleRounded'; + declare export { + default as ViewModuleSharp, + } from '@material-ui/icons/ViewModuleSharp'; + declare export { + default as ViewModuleTwoTone, + } from '@material-ui/icons/ViewModuleTwoTone'; + declare export { default as ViewQuilt } from '@material-ui/icons/ViewQuilt'; + declare export { + default as ViewQuiltOutlined, + } from '@material-ui/icons/ViewQuiltOutlined'; + declare export { + default as ViewQuiltRounded, + } from '@material-ui/icons/ViewQuiltRounded'; + declare export { + default as ViewQuiltSharp, + } from '@material-ui/icons/ViewQuiltSharp'; + declare export { + default as ViewQuiltTwoTone, + } from '@material-ui/icons/ViewQuiltTwoTone'; + declare export { default as ViewStream } from '@material-ui/icons/ViewStream'; + declare export { + default as ViewStreamOutlined, + } from '@material-ui/icons/ViewStreamOutlined'; + declare export { + default as ViewStreamRounded, + } from '@material-ui/icons/ViewStreamRounded'; + declare export { + default as ViewStreamSharp, + } from '@material-ui/icons/ViewStreamSharp'; + declare export { + default as ViewStreamTwoTone, + } from '@material-ui/icons/ViewStreamTwoTone'; + declare export { default as ViewWeek } from '@material-ui/icons/ViewWeek'; + declare export { + default as ViewWeekOutlined, + } from '@material-ui/icons/ViewWeekOutlined'; + declare export { + default as ViewWeekRounded, + } from '@material-ui/icons/ViewWeekRounded'; + declare export { + default as ViewWeekSharp, + } from '@material-ui/icons/ViewWeekSharp'; + declare export { + default as ViewWeekTwoTone, + } from '@material-ui/icons/ViewWeekTwoTone'; + declare export { default as Vignette } from '@material-ui/icons/Vignette'; + declare export { + default as VignetteOutlined, + } from '@material-ui/icons/VignetteOutlined'; + declare export { + default as VignetteRounded, + } from '@material-ui/icons/VignetteRounded'; + declare export { + default as VignetteSharp, + } from '@material-ui/icons/VignetteSharp'; + declare export { + default as VignetteTwoTone, + } from '@material-ui/icons/VignetteTwoTone'; + declare export { default as Visibility } from '@material-ui/icons/Visibility'; + declare export { + default as VisibilityOff, + } from '@material-ui/icons/VisibilityOff'; + declare export { + default as VisibilityOffOutlined, + } from '@material-ui/icons/VisibilityOffOutlined'; + declare export { + default as VisibilityOffRounded, + } from '@material-ui/icons/VisibilityOffRounded'; + declare export { + default as VisibilityOffSharp, + } from '@material-ui/icons/VisibilityOffSharp'; + declare export { + default as VisibilityOffTwoTone, + } from '@material-ui/icons/VisibilityOffTwoTone'; + declare export { + default as VisibilityOutlined, + } from '@material-ui/icons/VisibilityOutlined'; + declare export { + default as VisibilityRounded, + } from '@material-ui/icons/VisibilityRounded'; + declare export { + default as VisibilitySharp, + } from '@material-ui/icons/VisibilitySharp'; + declare export { + default as VisibilityTwoTone, + } from '@material-ui/icons/VisibilityTwoTone'; + declare export { default as VoiceChat } from '@material-ui/icons/VoiceChat'; + declare export { + default as VoiceChatOutlined, + } from '@material-ui/icons/VoiceChatOutlined'; + declare export { + default as VoiceChatRounded, + } from '@material-ui/icons/VoiceChatRounded'; + declare export { + default as VoiceChatSharp, + } from '@material-ui/icons/VoiceChatSharp'; + declare export { + default as VoiceChatTwoTone, + } from '@material-ui/icons/VoiceChatTwoTone'; + declare export { default as Voicemail } from '@material-ui/icons/Voicemail'; + declare export { + default as VoicemailOutlined, + } from '@material-ui/icons/VoicemailOutlined'; + declare export { + default as VoicemailRounded, + } from '@material-ui/icons/VoicemailRounded'; + declare export { + default as VoicemailSharp, + } from '@material-ui/icons/VoicemailSharp'; + declare export { + default as VoicemailTwoTone, + } from '@material-ui/icons/VoicemailTwoTone'; + declare export { + default as VoiceOverOff, + } from '@material-ui/icons/VoiceOverOff'; + declare export { + default as VoiceOverOffOutlined, + } from '@material-ui/icons/VoiceOverOffOutlined'; + declare export { + default as VoiceOverOffRounded, + } from '@material-ui/icons/VoiceOverOffRounded'; + declare export { + default as VoiceOverOffSharp, + } from '@material-ui/icons/VoiceOverOffSharp'; + declare export { + default as VoiceOverOffTwoTone, + } from '@material-ui/icons/VoiceOverOffTwoTone'; + declare export { default as VolumeDown } from '@material-ui/icons/VolumeDown'; + declare export { + default as VolumeDownOutlined, + } from '@material-ui/icons/VolumeDownOutlined'; + declare export { + default as VolumeDownRounded, + } from '@material-ui/icons/VolumeDownRounded'; + declare export { + default as VolumeDownSharp, + } from '@material-ui/icons/VolumeDownSharp'; + declare export { + default as VolumeDownTwoTone, + } from '@material-ui/icons/VolumeDownTwoTone'; + declare export { default as VolumeMute } from '@material-ui/icons/VolumeMute'; + declare export { + default as VolumeMuteOutlined, + } from '@material-ui/icons/VolumeMuteOutlined'; + declare export { + default as VolumeMuteRounded, + } from '@material-ui/icons/VolumeMuteRounded'; + declare export { + default as VolumeMuteSharp, + } from '@material-ui/icons/VolumeMuteSharp'; + declare export { + default as VolumeMuteTwoTone, + } from '@material-ui/icons/VolumeMuteTwoTone'; + declare export { default as VolumeOff } from '@material-ui/icons/VolumeOff'; + declare export { + default as VolumeOffOutlined, + } from '@material-ui/icons/VolumeOffOutlined'; + declare export { + default as VolumeOffRounded, + } from '@material-ui/icons/VolumeOffRounded'; + declare export { + default as VolumeOffSharp, + } from '@material-ui/icons/VolumeOffSharp'; + declare export { + default as VolumeOffTwoTone, + } from '@material-ui/icons/VolumeOffTwoTone'; + declare export { default as VolumeUp } from '@material-ui/icons/VolumeUp'; + declare export { + default as VolumeUpOutlined, + } from '@material-ui/icons/VolumeUpOutlined'; + declare export { + default as VolumeUpRounded, + } from '@material-ui/icons/VolumeUpRounded'; + declare export { + default as VolumeUpSharp, + } from '@material-ui/icons/VolumeUpSharp'; + declare export { + default as VolumeUpTwoTone, + } from '@material-ui/icons/VolumeUpTwoTone'; + declare export { default as VpnKey } from '@material-ui/icons/VpnKey'; + declare export { + default as VpnKeyOutlined, + } from '@material-ui/icons/VpnKeyOutlined'; + declare export { + default as VpnKeyRounded, + } from '@material-ui/icons/VpnKeyRounded'; + declare export { + default as VpnKeySharp, + } from '@material-ui/icons/VpnKeySharp'; + declare export { + default as VpnKeyTwoTone, + } from '@material-ui/icons/VpnKeyTwoTone'; + declare export { default as VpnLock } from '@material-ui/icons/VpnLock'; + declare export { + default as VpnLockOutlined, + } from '@material-ui/icons/VpnLockOutlined'; + declare export { + default as VpnLockRounded, + } from '@material-ui/icons/VpnLockRounded'; + declare export { + default as VpnLockSharp, + } from '@material-ui/icons/VpnLockSharp'; + declare export { + default as VpnLockTwoTone, + } from '@material-ui/icons/VpnLockTwoTone'; + declare export { default as Wallpaper } from '@material-ui/icons/Wallpaper'; + declare export { + default as WallpaperOutlined, + } from '@material-ui/icons/WallpaperOutlined'; + declare export { + default as WallpaperRounded, + } from '@material-ui/icons/WallpaperRounded'; + declare export { + default as WallpaperSharp, + } from '@material-ui/icons/WallpaperSharp'; + declare export { + default as WallpaperTwoTone, + } from '@material-ui/icons/WallpaperTwoTone'; + declare export { default as Warning } from '@material-ui/icons/Warning'; + declare export { + default as WarningOutlined, + } from '@material-ui/icons/WarningOutlined'; + declare export { + default as WarningRounded, + } from '@material-ui/icons/WarningRounded'; + declare export { + default as WarningSharp, + } from '@material-ui/icons/WarningSharp'; + declare export { + default as WarningTwoTone, + } from '@material-ui/icons/WarningTwoTone'; + declare export { default as Watch } from '@material-ui/icons/Watch'; + declare export { default as WatchLater } from '@material-ui/icons/WatchLater'; + declare export { + default as WatchLaterOutlined, + } from '@material-ui/icons/WatchLaterOutlined'; + declare export { + default as WatchLaterRounded, + } from '@material-ui/icons/WatchLaterRounded'; + declare export { + default as WatchLaterSharp, + } from '@material-ui/icons/WatchLaterSharp'; + declare export { + default as WatchLaterTwoTone, + } from '@material-ui/icons/WatchLaterTwoTone'; + declare export { + default as WatchOutlined, + } from '@material-ui/icons/WatchOutlined'; + declare export { + default as WatchRounded, + } from '@material-ui/icons/WatchRounded'; + declare export { default as WatchSharp } from '@material-ui/icons/WatchSharp'; + declare export { + default as WatchTwoTone, + } from '@material-ui/icons/WatchTwoTone'; + declare export { default as Waves } from '@material-ui/icons/Waves'; + declare export { + default as WavesOutlined, + } from '@material-ui/icons/WavesOutlined'; + declare export { + default as WavesRounded, + } from '@material-ui/icons/WavesRounded'; + declare export { default as WavesSharp } from '@material-ui/icons/WavesSharp'; + declare export { + default as WavesTwoTone, + } from '@material-ui/icons/WavesTwoTone'; + declare export { default as WbAuto } from '@material-ui/icons/WbAuto'; + declare export { + default as WbAutoOutlined, + } from '@material-ui/icons/WbAutoOutlined'; + declare export { + default as WbAutoRounded, + } from '@material-ui/icons/WbAutoRounded'; + declare export { + default as WbAutoSharp, + } from '@material-ui/icons/WbAutoSharp'; + declare export { + default as WbAutoTwoTone, + } from '@material-ui/icons/WbAutoTwoTone'; + declare export { default as WbCloudy } from '@material-ui/icons/WbCloudy'; + declare export { + default as WbCloudyOutlined, + } from '@material-ui/icons/WbCloudyOutlined'; + declare export { + default as WbCloudyRounded, + } from '@material-ui/icons/WbCloudyRounded'; + declare export { + default as WbCloudySharp, + } from '@material-ui/icons/WbCloudySharp'; + declare export { + default as WbCloudyTwoTone, + } from '@material-ui/icons/WbCloudyTwoTone'; + declare export { + default as WbIncandescent, + } from '@material-ui/icons/WbIncandescent'; + declare export { + default as WbIncandescentOutlined, + } from '@material-ui/icons/WbIncandescentOutlined'; + declare export { + default as WbIncandescentRounded, + } from '@material-ui/icons/WbIncandescentRounded'; + declare export { + default as WbIncandescentSharp, + } from '@material-ui/icons/WbIncandescentSharp'; + declare export { + default as WbIncandescentTwoTone, + } from '@material-ui/icons/WbIncandescentTwoTone'; + declare export { + default as WbIridescent, + } from '@material-ui/icons/WbIridescent'; + declare export { + default as WbIridescentOutlined, + } from '@material-ui/icons/WbIridescentOutlined'; + declare export { + default as WbIridescentRounded, + } from '@material-ui/icons/WbIridescentRounded'; + declare export { + default as WbIridescentSharp, + } from '@material-ui/icons/WbIridescentSharp'; + declare export { + default as WbIridescentTwoTone, + } from '@material-ui/icons/WbIridescentTwoTone'; + declare export { default as WbSunny } from '@material-ui/icons/WbSunny'; + declare export { + default as WbSunnyOutlined, + } from '@material-ui/icons/WbSunnyOutlined'; + declare export { + default as WbSunnyRounded, + } from '@material-ui/icons/WbSunnyRounded'; + declare export { + default as WbSunnySharp, + } from '@material-ui/icons/WbSunnySharp'; + declare export { + default as WbSunnyTwoTone, + } from '@material-ui/icons/WbSunnyTwoTone'; + declare export { default as Wc } from '@material-ui/icons/Wc'; + declare export { default as WcOutlined } from '@material-ui/icons/WcOutlined'; + declare export { default as WcRounded } from '@material-ui/icons/WcRounded'; + declare export { default as WcSharp } from '@material-ui/icons/WcSharp'; + declare export { default as WcTwoTone } from '@material-ui/icons/WcTwoTone'; + declare export { default as WebAsset } from '@material-ui/icons/WebAsset'; + declare export { + default as WebAssetOutlined, + } from '@material-ui/icons/WebAssetOutlined'; + declare export { + default as WebAssetRounded, + } from '@material-ui/icons/WebAssetRounded'; + declare export { + default as WebAssetSharp, + } from '@material-ui/icons/WebAssetSharp'; + declare export { + default as WebAssetTwoTone, + } from '@material-ui/icons/WebAssetTwoTone'; + declare export { default as Web } from '@material-ui/icons/Web'; + declare export { + default as WebOutlined, + } from '@material-ui/icons/WebOutlined'; + declare export { default as WebRounded } from '@material-ui/icons/WebRounded'; + declare export { default as WebSharp } from '@material-ui/icons/WebSharp'; + declare export { default as WebTwoTone } from '@material-ui/icons/WebTwoTone'; + declare export { default as Weekend } from '@material-ui/icons/Weekend'; + declare export { + default as WeekendOutlined, + } from '@material-ui/icons/WeekendOutlined'; + declare export { + default as WeekendRounded, + } from '@material-ui/icons/WeekendRounded'; + declare export { + default as WeekendSharp, + } from '@material-ui/icons/WeekendSharp'; + declare export { + default as WeekendTwoTone, + } from '@material-ui/icons/WeekendTwoTone'; + declare export { default as Whatshot } from '@material-ui/icons/Whatshot'; + declare export { + default as WhatshotOutlined, + } from '@material-ui/icons/WhatshotOutlined'; + declare export { + default as WhatshotRounded, + } from '@material-ui/icons/WhatshotRounded'; + declare export { + default as WhatshotSharp, + } from '@material-ui/icons/WhatshotSharp'; + declare export { + default as WhatshotTwoTone, + } from '@material-ui/icons/WhatshotTwoTone'; + declare export { + default as WhereToVote, + } from '@material-ui/icons/WhereToVote'; + declare export { + default as WhereToVoteOutlined, + } from '@material-ui/icons/WhereToVoteOutlined'; + declare export { + default as WhereToVoteRounded, + } from '@material-ui/icons/WhereToVoteRounded'; + declare export { + default as WhereToVoteSharp, + } from '@material-ui/icons/WhereToVoteSharp'; + declare export { + default as WhereToVoteTwoTone, + } from '@material-ui/icons/WhereToVoteTwoTone'; + declare export { default as Widgets } from '@material-ui/icons/Widgets'; + declare export { + default as WidgetsOutlined, + } from '@material-ui/icons/WidgetsOutlined'; + declare export { + default as WidgetsRounded, + } from '@material-ui/icons/WidgetsRounded'; + declare export { + default as WidgetsSharp, + } from '@material-ui/icons/WidgetsSharp'; + declare export { + default as WidgetsTwoTone, + } from '@material-ui/icons/WidgetsTwoTone'; + declare export { default as Wifi } from '@material-ui/icons/Wifi'; + declare export { default as WifiLock } from '@material-ui/icons/WifiLock'; + declare export { + default as WifiLockOutlined, + } from '@material-ui/icons/WifiLockOutlined'; + declare export { + default as WifiLockRounded, + } from '@material-ui/icons/WifiLockRounded'; + declare export { + default as WifiLockSharp, + } from '@material-ui/icons/WifiLockSharp'; + declare export { + default as WifiLockTwoTone, + } from '@material-ui/icons/WifiLockTwoTone'; + declare export { default as WifiOff } from '@material-ui/icons/WifiOff'; + declare export { + default as WifiOffOutlined, + } from '@material-ui/icons/WifiOffOutlined'; + declare export { + default as WifiOffRounded, + } from '@material-ui/icons/WifiOffRounded'; + declare export { + default as WifiOffSharp, + } from '@material-ui/icons/WifiOffSharp'; + declare export { + default as WifiOffTwoTone, + } from '@material-ui/icons/WifiOffTwoTone'; + declare export { + default as WifiOutlined, + } from '@material-ui/icons/WifiOutlined'; + declare export { + default as WifiRounded, + } from '@material-ui/icons/WifiRounded'; + declare export { default as WifiSharp } from '@material-ui/icons/WifiSharp'; + declare export { + default as WifiTethering, + } from '@material-ui/icons/WifiTethering'; + declare export { + default as WifiTetheringOutlined, + } from '@material-ui/icons/WifiTetheringOutlined'; + declare export { + default as WifiTetheringRounded, + } from '@material-ui/icons/WifiTetheringRounded'; + declare export { + default as WifiTetheringSharp, + } from '@material-ui/icons/WifiTetheringSharp'; + declare export { + default as WifiTetheringTwoTone, + } from '@material-ui/icons/WifiTetheringTwoTone'; + declare export { + default as WifiTwoTone, + } from '@material-ui/icons/WifiTwoTone'; + declare export { default as Work } from '@material-ui/icons/Work'; + declare export { default as WorkOff } from '@material-ui/icons/WorkOff'; + declare export { + default as WorkOffOutlined, + } from '@material-ui/icons/WorkOffOutlined'; + declare export { + default as WorkOffRounded, + } from '@material-ui/icons/WorkOffRounded'; + declare export { + default as WorkOffSharp, + } from '@material-ui/icons/WorkOffSharp'; + declare export { + default as WorkOffTwoTone, + } from '@material-ui/icons/WorkOffTwoTone'; + declare export { + default as WorkOutlined, + } from '@material-ui/icons/WorkOutlined'; + declare export { + default as WorkOutline, + } from '@material-ui/icons/WorkOutline'; + declare export { + default as WorkOutlineOutlined, + } from '@material-ui/icons/WorkOutlineOutlined'; + declare export { + default as WorkOutlineRounded, + } from '@material-ui/icons/WorkOutlineRounded'; + declare export { + default as WorkOutlineSharp, + } from '@material-ui/icons/WorkOutlineSharp'; + declare export { + default as WorkOutlineTwoTone, + } from '@material-ui/icons/WorkOutlineTwoTone'; + declare export { + default as WorkRounded, + } from '@material-ui/icons/WorkRounded'; + declare export { default as WorkSharp } from '@material-ui/icons/WorkSharp'; + declare export { + default as WorkTwoTone, + } from '@material-ui/icons/WorkTwoTone'; + declare export { default as WrapText } from '@material-ui/icons/WrapText'; + declare export { + default as WrapTextOutlined, + } from '@material-ui/icons/WrapTextOutlined'; + declare export { + default as WrapTextRounded, + } from '@material-ui/icons/WrapTextRounded'; + declare export { + default as WrapTextSharp, + } from '@material-ui/icons/WrapTextSharp'; + declare export { + default as WrapTextTwoTone, + } from '@material-ui/icons/WrapTextTwoTone'; + declare export { + default as YoutubeSearchedFor, + } from '@material-ui/icons/YoutubeSearchedFor'; + declare export { + default as YoutubeSearchedForOutlined, + } from '@material-ui/icons/YoutubeSearchedForOutlined'; + declare export { + default as YoutubeSearchedForRounded, + } from '@material-ui/icons/YoutubeSearchedForRounded'; + declare export { + default as YoutubeSearchedForSharp, + } from '@material-ui/icons/YoutubeSearchedForSharp'; + declare export { + default as YoutubeSearchedForTwoTone, + } from '@material-ui/icons/YoutubeSearchedForTwoTone'; + declare export { default as ZoomIn } from '@material-ui/icons/ZoomIn'; + declare export { + default as ZoomInOutlined, + } from '@material-ui/icons/ZoomInOutlined'; + declare export { + default as ZoomInRounded, + } from '@material-ui/icons/ZoomInRounded'; + declare export { + default as ZoomInSharp, + } from '@material-ui/icons/ZoomInSharp'; + declare export { + default as ZoomInTwoTone, + } from '@material-ui/icons/ZoomInTwoTone'; + declare export { default as ZoomOut } from '@material-ui/icons/ZoomOut'; + declare export { default as ZoomOutMap } from '@material-ui/icons/ZoomOutMap'; + declare export { + default as ZoomOutMapOutlined, + } from '@material-ui/icons/ZoomOutMapOutlined'; + declare export { + default as ZoomOutMapRounded, + } from '@material-ui/icons/ZoomOutMapRounded'; + declare export { + default as ZoomOutMapSharp, + } from '@material-ui/icons/ZoomOutMapSharp'; + declare export { + default as ZoomOutMapTwoTone, + } from '@material-ui/icons/ZoomOutMapTwoTone'; + declare export { + default as ZoomOutOutlined, + } from '@material-ui/icons/ZoomOutOutlined'; + declare export { + default as ZoomOutRounded, + } from '@material-ui/icons/ZoomOutRounded'; + declare export { + default as ZoomOutSharp, + } from '@material-ui/icons/ZoomOutSharp'; + declare export { + default as ZoomOutTwoTone, + } from '@material-ui/icons/ZoomOutTwoTone'; +} diff --git a/flow-typed/npm/@portis/web3_vx.x.x.js b/flow-typed/npm/@portis/web3_vx.x.x.js new file mode 100644 index 00000000..8c7be4d6 --- /dev/null +++ b/flow-typed/npm/@portis/web3_vx.x.x.js @@ -0,0 +1,160 @@ +// flow-typed signature: 3ae28865f486ed67f1ca4e1bf7b08d07 +// flow-typed version: <>/@portis/web3_v^2.0.0-beta.45/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@portis/web3' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@portis/web3' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@portis/web3/es' { + declare module.exports: any; +} + +declare module '@portis/web3/es/interfaces' { + declare module.exports: any; +} + +declare module '@portis/web3/es/networks' { + declare module.exports: any; +} + +declare module '@portis/web3/es/styles' { + declare module.exports: any; +} + +declare module '@portis/web3/es/utils/getTxGas' { + declare module.exports: any; +} + +declare module '@portis/web3/es/utils/onWindowLoad' { + declare module.exports: any; +} + +declare module '@portis/web3/es/utils/query' { + declare module.exports: any; +} + +declare module '@portis/web3/es/utils/secureOrigin' { + declare module.exports: any; +} + +declare module '@portis/web3/lib' { + declare module.exports: any; +} + +declare module '@portis/web3/lib/interfaces' { + declare module.exports: any; +} + +declare module '@portis/web3/lib/networks' { + declare module.exports: any; +} + +declare module '@portis/web3/lib/styles' { + declare module.exports: any; +} + +declare module '@portis/web3/lib/utils/getTxGas' { + declare module.exports: any; +} + +declare module '@portis/web3/lib/utils/onWindowLoad' { + declare module.exports: any; +} + +declare module '@portis/web3/lib/utils/query' { + declare module.exports: any; +} + +declare module '@portis/web3/lib/utils/secureOrigin' { + declare module.exports: any; +} + +declare module '@portis/web3/umd' { + declare module.exports: any; +} + +declare module '@portis/web3/utils/integrity' { + declare module.exports: any; +} + +// Filename aliases +declare module '@portis/web3/es/index' { + declare module.exports: $Exports<'@portis/web3/es'>; +} +declare module '@portis/web3/es/index.js' { + declare module.exports: $Exports<'@portis/web3/es'>; +} +declare module '@portis/web3/es/interfaces.js' { + declare module.exports: $Exports<'@portis/web3/es/interfaces'>; +} +declare module '@portis/web3/es/networks.js' { + declare module.exports: $Exports<'@portis/web3/es/networks'>; +} +declare module '@portis/web3/es/styles.js' { + declare module.exports: $Exports<'@portis/web3/es/styles'>; +} +declare module '@portis/web3/es/utils/getTxGas.js' { + declare module.exports: $Exports<'@portis/web3/es/utils/getTxGas'>; +} +declare module '@portis/web3/es/utils/onWindowLoad.js' { + declare module.exports: $Exports<'@portis/web3/es/utils/onWindowLoad'>; +} +declare module '@portis/web3/es/utils/query.js' { + declare module.exports: $Exports<'@portis/web3/es/utils/query'>; +} +declare module '@portis/web3/es/utils/secureOrigin.js' { + declare module.exports: $Exports<'@portis/web3/es/utils/secureOrigin'>; +} +declare module '@portis/web3/lib/index' { + declare module.exports: $Exports<'@portis/web3/lib'>; +} +declare module '@portis/web3/lib/index.js' { + declare module.exports: $Exports<'@portis/web3/lib'>; +} +declare module '@portis/web3/lib/interfaces.js' { + declare module.exports: $Exports<'@portis/web3/lib/interfaces'>; +} +declare module '@portis/web3/lib/networks.js' { + declare module.exports: $Exports<'@portis/web3/lib/networks'>; +} +declare module '@portis/web3/lib/styles.js' { + declare module.exports: $Exports<'@portis/web3/lib/styles'>; +} +declare module '@portis/web3/lib/utils/getTxGas.js' { + declare module.exports: $Exports<'@portis/web3/lib/utils/getTxGas'>; +} +declare module '@portis/web3/lib/utils/onWindowLoad.js' { + declare module.exports: $Exports<'@portis/web3/lib/utils/onWindowLoad'>; +} +declare module '@portis/web3/lib/utils/query.js' { + declare module.exports: $Exports<'@portis/web3/lib/utils/query'>; +} +declare module '@portis/web3/lib/utils/secureOrigin.js' { + declare module.exports: $Exports<'@portis/web3/lib/utils/secureOrigin'>; +} +declare module '@portis/web3/umd/index' { + declare module.exports: $Exports<'@portis/web3/umd'>; +} +declare module '@portis/web3/umd/index.js' { + declare module.exports: $Exports<'@portis/web3/umd'>; +} +declare module '@portis/web3/utils/integrity.js' { + declare module.exports: $Exports<'@portis/web3/utils/integrity'>; +} diff --git a/flow-typed/npm/@sambego/storybook-state_vx.x.x.js b/flow-typed/npm/@sambego/storybook-state_vx.x.x.js new file mode 100644 index 00000000..d5b4f370 --- /dev/null +++ b/flow-typed/npm/@sambego/storybook-state_vx.x.x.js @@ -0,0 +1,122 @@ +// flow-typed signature: 9e597e3161a1342a9e77ec9437783354 +// flow-typed version: <>/@sambego/storybook-state_v^1.3.6/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@sambego/storybook-state' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@sambego/storybook-state' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@sambego/storybook-state/dist' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/dist/State' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/dist/StateDecorator' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/dist/Store' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/enzyme.config' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/jest.config' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/src' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/src/State' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/src/StateDecorator' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/src/Store' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/tests/State.test' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/tests/StateDecorator.test' { + declare module.exports: any; +} + +declare module '@sambego/storybook-state/tests/Store.test' { + declare module.exports: any; +} + +// Filename aliases +declare module '@sambego/storybook-state/dist/index' { + declare module.exports: $Exports<'@sambego/storybook-state/dist'>; +} +declare module '@sambego/storybook-state/dist/index.js' { + declare module.exports: $Exports<'@sambego/storybook-state/dist'>; +} +declare module '@sambego/storybook-state/dist/State.js' { + declare module.exports: $Exports<'@sambego/storybook-state/dist/State'>; +} +declare module '@sambego/storybook-state/dist/StateDecorator.js' { + declare module.exports: $Exports<'@sambego/storybook-state/dist/StateDecorator'>; +} +declare module '@sambego/storybook-state/dist/Store.js' { + declare module.exports: $Exports<'@sambego/storybook-state/dist/Store'>; +} +declare module '@sambego/storybook-state/enzyme.config.js' { + declare module.exports: $Exports<'@sambego/storybook-state/enzyme.config'>; +} +declare module '@sambego/storybook-state/jest.config.js' { + declare module.exports: $Exports<'@sambego/storybook-state/jest.config'>; +} +declare module '@sambego/storybook-state/src/index' { + declare module.exports: $Exports<'@sambego/storybook-state/src'>; +} +declare module '@sambego/storybook-state/src/index.js' { + declare module.exports: $Exports<'@sambego/storybook-state/src'>; +} +declare module '@sambego/storybook-state/src/State.js' { + declare module.exports: $Exports<'@sambego/storybook-state/src/State'>; +} +declare module '@sambego/storybook-state/src/StateDecorator.js' { + declare module.exports: $Exports<'@sambego/storybook-state/src/StateDecorator'>; +} +declare module '@sambego/storybook-state/src/Store.js' { + declare module.exports: $Exports<'@sambego/storybook-state/src/Store'>; +} +declare module '@sambego/storybook-state/tests/State.test.js' { + declare module.exports: $Exports<'@sambego/storybook-state/tests/State.test'>; +} +declare module '@sambego/storybook-state/tests/StateDecorator.test.js' { + declare module.exports: $Exports<'@sambego/storybook-state/tests/StateDecorator.test'>; +} +declare module '@sambego/storybook-state/tests/Store.test.js' { + declare module.exports: $Exports<'@sambego/storybook-state/tests/Store.test'>; +} diff --git a/flow-typed/npm/@storybook/addon-actions_v3.x.x.js b/flow-typed/npm/@storybook/addon-actions_v3.x.x.js deleted file mode 100644 index 7fe9b9a6..00000000 --- a/flow-typed/npm/@storybook/addon-actions_v3.x.x.js +++ /dev/null @@ -1,12 +0,0 @@ -// flow-typed signature: d33e1b8f0888822895515e3ca6a3f8eb -// flow-typed version: 1709d3212d/@storybook/addon-actions_v3.x.x/flow_>=v0.25.x - -declare module '@storybook/addon-actions' { - declare type Action = (name: string) => Function; - declare type DecorateFn = (args: Array) => Array; - - declare module.exports: { - action: Action, - decorateAction(args: Array): Action; - }; -} diff --git a/flow-typed/npm/@storybook/addon-actions_vx.x.x.js b/flow-typed/npm/@storybook/addon-actions_vx.x.x.js new file mode 100644 index 00000000..ae42a0a3 --- /dev/null +++ b/flow-typed/npm/@storybook/addon-actions_vx.x.x.js @@ -0,0 +1,187 @@ +// flow-typed signature: 64c369e4ed0c4a705b2f36b522874cac +// flow-typed version: <>/@storybook/addon-actions_v5.2.6/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@storybook/addon-actions' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@storybook/addon-actions' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@storybook/addon-actions/dist/components/ActionLogger' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/components/ActionLogger/style' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/constants' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/containers/ActionLogger' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/manager' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/models/ActionDisplay' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/models/ActionOptions' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/models/ActionsFunction' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/models/ActionsMap' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/models/DecoratorFunction' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/models/HandlerFunction' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/models' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/preview/action' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/preview/actions' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/preview/configureActions' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/preview/decorateAction' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/preview' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/preview/withActions' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/dist/typings.d' { + declare module.exports: any; +} + +declare module '@storybook/addon-actions/register' { + declare module.exports: any; +} + +// Filename aliases +declare module '@storybook/addon-actions/dist/components/ActionLogger/index' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/components/ActionLogger'>; +} +declare module '@storybook/addon-actions/dist/components/ActionLogger/index.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/components/ActionLogger'>; +} +declare module '@storybook/addon-actions/dist/components/ActionLogger/style.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/components/ActionLogger/style'>; +} +declare module '@storybook/addon-actions/dist/constants.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/constants'>; +} +declare module '@storybook/addon-actions/dist/containers/ActionLogger/index' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/containers/ActionLogger'>; +} +declare module '@storybook/addon-actions/dist/containers/ActionLogger/index.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/containers/ActionLogger'>; +} +declare module '@storybook/addon-actions/dist/index' { + declare module.exports: $Exports<'@storybook/addon-actions/dist'>; +} +declare module '@storybook/addon-actions/dist/index.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist'>; +} +declare module '@storybook/addon-actions/dist/manager.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/manager'>; +} +declare module '@storybook/addon-actions/dist/models/ActionDisplay.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/models/ActionDisplay'>; +} +declare module '@storybook/addon-actions/dist/models/ActionOptions.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/models/ActionOptions'>; +} +declare module '@storybook/addon-actions/dist/models/ActionsFunction.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/models/ActionsFunction'>; +} +declare module '@storybook/addon-actions/dist/models/ActionsMap.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/models/ActionsMap'>; +} +declare module '@storybook/addon-actions/dist/models/DecoratorFunction.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/models/DecoratorFunction'>; +} +declare module '@storybook/addon-actions/dist/models/HandlerFunction.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/models/HandlerFunction'>; +} +declare module '@storybook/addon-actions/dist/models/index' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/models'>; +} +declare module '@storybook/addon-actions/dist/models/index.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/models'>; +} +declare module '@storybook/addon-actions/dist/preview/action.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/preview/action'>; +} +declare module '@storybook/addon-actions/dist/preview/actions.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/preview/actions'>; +} +declare module '@storybook/addon-actions/dist/preview/configureActions.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/preview/configureActions'>; +} +declare module '@storybook/addon-actions/dist/preview/decorateAction.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/preview/decorateAction'>; +} +declare module '@storybook/addon-actions/dist/preview/index' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/preview'>; +} +declare module '@storybook/addon-actions/dist/preview/index.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/preview'>; +} +declare module '@storybook/addon-actions/dist/preview/withActions.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/preview/withActions'>; +} +declare module '@storybook/addon-actions/dist/typings.d.js' { + declare module.exports: $Exports<'@storybook/addon-actions/dist/typings.d'>; +} +declare module '@storybook/addon-actions/register.js' { + declare module.exports: $Exports<'@storybook/addon-actions/register'>; +} diff --git a/flow-typed/npm/@storybook/addon-knobs_vx.x.x.js b/flow-typed/npm/@storybook/addon-knobs_vx.x.x.js index 96fd18bf..7e75e7f7 100644 --- a/flow-typed/npm/@storybook/addon-knobs_vx.x.x.js +++ b/flow-typed/npm/@storybook/addon-knobs_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: c905b8c93e093290a3c272e675bae6a2 -// flow-typed version: <>/@storybook/addon-knobs_v^3.3.15/flow_v0.66.0 +// flow-typed signature: 90624ef390fe4c5befd27eedd08d7ad2 +// flow-typed version: <>/@storybook/addon-knobs_v5.2.6/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -26,19 +26,7 @@ declare module '@storybook/addon-knobs/angular' { declare module.exports: any; } -declare module '@storybook/addon-knobs/dist/angular/helpers' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/dist/angular/index' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/dist/angular/utils' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/dist/base' { +declare module '@storybook/addon-knobs/dist/__types__/knob-test-cases' { declare module.exports: any; } @@ -46,10 +34,6 @@ declare module '@storybook/addon-knobs/dist/components/Panel' { declare module.exports: any; } -declare module '@storybook/addon-knobs/dist/components/PropField' { - declare module.exports: any; -} - declare module '@storybook/addon-knobs/dist/components/PropForm' { declare module.exports: any; } @@ -66,19 +50,23 @@ declare module '@storybook/addon-knobs/dist/components/types/Button' { declare module.exports: any; } +declare module '@storybook/addon-knobs/dist/components/types/Checkboxes' { + declare module.exports: any; +} + declare module '@storybook/addon-knobs/dist/components/types/Color' { declare module.exports: any; } -declare module '@storybook/addon-knobs/dist/components/types/Date/index' { +declare module '@storybook/addon-knobs/dist/components/types/Date' { declare module.exports: any; } -declare module '@storybook/addon-knobs/dist/components/types/Date/styles' { +declare module '@storybook/addon-knobs/dist/components/types/Files' { declare module.exports: any; } -declare module '@storybook/addon-knobs/dist/components/types/index' { +declare module '@storybook/addon-knobs/dist/components/types' { declare module.exports: any; } @@ -90,6 +78,14 @@ declare module '@storybook/addon-knobs/dist/components/types/Object' { declare module.exports: any; } +declare module '@storybook/addon-knobs/dist/components/types/Options' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/dist/components/types/Radio' { + declare module.exports: any; +} + declare module '@storybook/addon-knobs/dist/components/types/Select' { declare module.exports: any; } @@ -98,7 +94,19 @@ declare module '@storybook/addon-knobs/dist/components/types/Text' { declare module.exports: any; } -declare module '@storybook/addon-knobs/dist/index' { +declare module '@storybook/addon-knobs/dist/components/types/types' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/dist/converters' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/dist/deprecated' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/dist' { declare module.exports: any; } @@ -110,23 +118,39 @@ declare module '@storybook/addon-knobs/dist/KnobStore' { declare module.exports: any; } -declare module '@storybook/addon-knobs/dist/react/index' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/dist/react/WrapStory' { - declare module.exports: any; -} - declare module '@storybook/addon-knobs/dist/register' { declare module.exports: any; } -declare module '@storybook/addon-knobs/dist/vue/index' { +declare module '@storybook/addon-knobs/dist/registerKnobs' { declare module.exports: any; } -declare module '@storybook/addon-knobs/example/stories/index' { +declare module '@storybook/addon-knobs/dist/shared' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/dist/type-defs' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/dist/typings.d' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/html' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/marko' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/mithril' { + declare module.exports: any; +} + +declare module '@storybook/addon-knobs/polymer' { declare module.exports: any; } @@ -138,126 +162,6 @@ declare module '@storybook/addon-knobs/register' { declare module.exports: any; } -declare module '@storybook/addon-knobs/src/angular/helpers' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/angular/index' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/angular/utils' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/base' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/__tests__/Array' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/__tests__/Panel' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/Panel' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/PropField' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/PropForm' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Array' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Boolean' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Button' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Color' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Date/index' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Date/styles' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/index' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Number' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Object' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Select' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/components/types/Text' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/index' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/KnobManager' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/KnobManager.test' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/KnobStore' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/react/index' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/react/index.test' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/react/WrapStory' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/register' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/vue/index' { - declare module.exports: any; -} - -declare module '@storybook/addon-knobs/src/vue/index.test' { - declare module.exports: any; -} - declare module '@storybook/addon-knobs/vue' { declare module.exports: any; } @@ -266,24 +170,12 @@ declare module '@storybook/addon-knobs/vue' { declare module '@storybook/addon-knobs/angular.js' { declare module.exports: $Exports<'@storybook/addon-knobs/angular'>; } -declare module '@storybook/addon-knobs/dist/angular/helpers.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/angular/helpers'>; -} -declare module '@storybook/addon-knobs/dist/angular/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/angular/index'>; -} -declare module '@storybook/addon-knobs/dist/angular/utils.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/angular/utils'>; -} -declare module '@storybook/addon-knobs/dist/base.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/base'>; +declare module '@storybook/addon-knobs/dist/__types__/knob-test-cases.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/__types__/knob-test-cases'>; } declare module '@storybook/addon-knobs/dist/components/Panel.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/Panel'>; } -declare module '@storybook/addon-knobs/dist/components/PropField.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/PropField'>; -} declare module '@storybook/addon-knobs/dist/components/PropForm.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/PropForm'>; } @@ -296,17 +188,23 @@ declare module '@storybook/addon-knobs/dist/components/types/Boolean.js' { declare module '@storybook/addon-knobs/dist/components/types/Button.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Button'>; } +declare module '@storybook/addon-knobs/dist/components/types/Checkboxes.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Checkboxes'>; +} declare module '@storybook/addon-knobs/dist/components/types/Color.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Color'>; } -declare module '@storybook/addon-knobs/dist/components/types/Date/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Date/index'>; +declare module '@storybook/addon-knobs/dist/components/types/Date.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Date'>; } -declare module '@storybook/addon-knobs/dist/components/types/Date/styles.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Date/styles'>; +declare module '@storybook/addon-knobs/dist/components/types/Files.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Files'>; +} +declare module '@storybook/addon-knobs/dist/components/types/index' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types'>; } declare module '@storybook/addon-knobs/dist/components/types/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/index'>; + declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types'>; } declare module '@storybook/addon-knobs/dist/components/types/Number.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Number'>; @@ -314,14 +212,32 @@ declare module '@storybook/addon-knobs/dist/components/types/Number.js' { declare module '@storybook/addon-knobs/dist/components/types/Object.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Object'>; } +declare module '@storybook/addon-knobs/dist/components/types/Options.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Options'>; +} +declare module '@storybook/addon-knobs/dist/components/types/Radio.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Radio'>; +} declare module '@storybook/addon-knobs/dist/components/types/Select.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Select'>; } declare module '@storybook/addon-knobs/dist/components/types/Text.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/Text'>; } +declare module '@storybook/addon-knobs/dist/components/types/types.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/components/types/types'>; +} +declare module '@storybook/addon-knobs/dist/converters.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/converters'>; +} +declare module '@storybook/addon-knobs/dist/deprecated.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/deprecated'>; +} +declare module '@storybook/addon-knobs/dist/index' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist'>; +} declare module '@storybook/addon-knobs/dist/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/index'>; + declare module.exports: $Exports<'@storybook/addon-knobs/dist'>; } declare module '@storybook/addon-knobs/dist/KnobManager.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/KnobManager'>; @@ -329,20 +245,32 @@ declare module '@storybook/addon-knobs/dist/KnobManager.js' { declare module '@storybook/addon-knobs/dist/KnobStore.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/KnobStore'>; } -declare module '@storybook/addon-knobs/dist/react/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/react/index'>; -} -declare module '@storybook/addon-knobs/dist/react/WrapStory.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/react/WrapStory'>; -} declare module '@storybook/addon-knobs/dist/register.js' { declare module.exports: $Exports<'@storybook/addon-knobs/dist/register'>; } -declare module '@storybook/addon-knobs/dist/vue/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/dist/vue/index'>; +declare module '@storybook/addon-knobs/dist/registerKnobs.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/registerKnobs'>; } -declare module '@storybook/addon-knobs/example/stories/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/example/stories/index'>; +declare module '@storybook/addon-knobs/dist/shared.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/shared'>; +} +declare module '@storybook/addon-knobs/dist/type-defs.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/type-defs'>; +} +declare module '@storybook/addon-knobs/dist/typings.d.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/dist/typings.d'>; +} +declare module '@storybook/addon-knobs/html.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/html'>; +} +declare module '@storybook/addon-knobs/marko.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/marko'>; +} +declare module '@storybook/addon-knobs/mithril.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/mithril'>; +} +declare module '@storybook/addon-knobs/polymer.js' { + declare module.exports: $Exports<'@storybook/addon-knobs/polymer'>; } declare module '@storybook/addon-knobs/react.js' { declare module.exports: $Exports<'@storybook/addon-knobs/react'>; @@ -350,96 +278,6 @@ declare module '@storybook/addon-knobs/react.js' { declare module '@storybook/addon-knobs/register.js' { declare module.exports: $Exports<'@storybook/addon-knobs/register'>; } -declare module '@storybook/addon-knobs/src/angular/helpers.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/angular/helpers'>; -} -declare module '@storybook/addon-knobs/src/angular/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/angular/index'>; -} -declare module '@storybook/addon-knobs/src/angular/utils.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/angular/utils'>; -} -declare module '@storybook/addon-knobs/src/base.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/base'>; -} -declare module '@storybook/addon-knobs/src/components/__tests__/Array.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/__tests__/Array'>; -} -declare module '@storybook/addon-knobs/src/components/__tests__/Panel.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/__tests__/Panel'>; -} -declare module '@storybook/addon-knobs/src/components/Panel.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/Panel'>; -} -declare module '@storybook/addon-knobs/src/components/PropField.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/PropField'>; -} -declare module '@storybook/addon-knobs/src/components/PropForm.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/PropForm'>; -} -declare module '@storybook/addon-knobs/src/components/types/Array.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Array'>; -} -declare module '@storybook/addon-knobs/src/components/types/Boolean.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Boolean'>; -} -declare module '@storybook/addon-knobs/src/components/types/Button.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Button'>; -} -declare module '@storybook/addon-knobs/src/components/types/Color.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Color'>; -} -declare module '@storybook/addon-knobs/src/components/types/Date/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Date/index'>; -} -declare module '@storybook/addon-knobs/src/components/types/Date/styles.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Date/styles'>; -} -declare module '@storybook/addon-knobs/src/components/types/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/index'>; -} -declare module '@storybook/addon-knobs/src/components/types/Number.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Number'>; -} -declare module '@storybook/addon-knobs/src/components/types/Object.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Object'>; -} -declare module '@storybook/addon-knobs/src/components/types/Select.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Select'>; -} -declare module '@storybook/addon-knobs/src/components/types/Text.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/components/types/Text'>; -} -declare module '@storybook/addon-knobs/src/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/index'>; -} -declare module '@storybook/addon-knobs/src/KnobManager.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/KnobManager'>; -} -declare module '@storybook/addon-knobs/src/KnobManager.test.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/KnobManager.test'>; -} -declare module '@storybook/addon-knobs/src/KnobStore.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/KnobStore'>; -} -declare module '@storybook/addon-knobs/src/react/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/react/index'>; -} -declare module '@storybook/addon-knobs/src/react/index.test.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/react/index.test'>; -} -declare module '@storybook/addon-knobs/src/react/WrapStory.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/react/WrapStory'>; -} -declare module '@storybook/addon-knobs/src/register.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/register'>; -} -declare module '@storybook/addon-knobs/src/vue/index.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/vue/index'>; -} -declare module '@storybook/addon-knobs/src/vue/index.test.js' { - declare module.exports: $Exports<'@storybook/addon-knobs/src/vue/index.test'>; -} declare module '@storybook/addon-knobs/vue.js' { declare module.exports: $Exports<'@storybook/addon-knobs/vue'>; } diff --git a/flow-typed/npm/@storybook/addon-links_vx.x.x.js b/flow-typed/npm/@storybook/addon-links_vx.x.x.js index d32ef836..4b7b4bfd 100644 --- a/flow-typed/npm/@storybook/addon-links_vx.x.x.js +++ b/flow-typed/npm/@storybook/addon-links_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: b5b0573c75eb87c83febb95b4fa850d9 -// flow-typed version: <>/@storybook/addon-links_v^3.3.15/flow_v0.66.0 +// flow-typed signature: f6f4916ab4d700d3db6ac07b4264aa7e +// flow-typed version: <>/@storybook/addon-links_v5.2.6/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,7 +22,11 @@ declare module '@storybook/addon-links' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module '@storybook/addon-links/dist/index' { +declare module '@storybook/addon-links/dist/constants' { + declare module.exports: any; +} + +declare module '@storybook/addon-links/dist' { declare module.exports: any; } @@ -38,7 +42,15 @@ declare module '@storybook/addon-links/dist/react/components/link' { declare module.exports: any; } -declare module '@storybook/addon-links/dist/react/index' { +declare module '@storybook/addon-links/dist/react/components/RoutedLink' { + declare module.exports: any; +} + +declare module '@storybook/addon-links/dist/react' { + declare module.exports: any; +} + +declare module '@storybook/addon-links/dist/typings.d' { declare module.exports: any; } @@ -50,37 +62,15 @@ declare module '@storybook/addon-links/register' { declare module.exports: any; } -declare module '@storybook/addon-links/src/index' { - declare module.exports: any; -} - -declare module '@storybook/addon-links/src/manager' { - declare module.exports: any; -} - -declare module '@storybook/addon-links/src/preview' { - declare module.exports: any; -} - -declare module '@storybook/addon-links/src/preview.test' { - declare module.exports: any; -} - -declare module '@storybook/addon-links/src/react/components/link' { - declare module.exports: any; -} - -declare module '@storybook/addon-links/src/react/components/link.test' { - declare module.exports: any; -} - -declare module '@storybook/addon-links/src/react/index' { - declare module.exports: any; -} - // Filename aliases +declare module '@storybook/addon-links/dist/constants.js' { + declare module.exports: $Exports<'@storybook/addon-links/dist/constants'>; +} +declare module '@storybook/addon-links/dist/index' { + declare module.exports: $Exports<'@storybook/addon-links/dist'>; +} declare module '@storybook/addon-links/dist/index.js' { - declare module.exports: $Exports<'@storybook/addon-links/dist/index'>; + declare module.exports: $Exports<'@storybook/addon-links/dist'>; } declare module '@storybook/addon-links/dist/manager.js' { declare module.exports: $Exports<'@storybook/addon-links/dist/manager'>; @@ -91,8 +81,17 @@ declare module '@storybook/addon-links/dist/preview.js' { declare module '@storybook/addon-links/dist/react/components/link.js' { declare module.exports: $Exports<'@storybook/addon-links/dist/react/components/link'>; } +declare module '@storybook/addon-links/dist/react/components/RoutedLink.js' { + declare module.exports: $Exports<'@storybook/addon-links/dist/react/components/RoutedLink'>; +} +declare module '@storybook/addon-links/dist/react/index' { + declare module.exports: $Exports<'@storybook/addon-links/dist/react'>; +} declare module '@storybook/addon-links/dist/react/index.js' { - declare module.exports: $Exports<'@storybook/addon-links/dist/react/index'>; + declare module.exports: $Exports<'@storybook/addon-links/dist/react'>; +} +declare module '@storybook/addon-links/dist/typings.d.js' { + declare module.exports: $Exports<'@storybook/addon-links/dist/typings.d'>; } declare module '@storybook/addon-links/react.js' { declare module.exports: $Exports<'@storybook/addon-links/react'>; @@ -100,24 +99,3 @@ declare module '@storybook/addon-links/react.js' { declare module '@storybook/addon-links/register.js' { declare module.exports: $Exports<'@storybook/addon-links/register'>; } -declare module '@storybook/addon-links/src/index.js' { - declare module.exports: $Exports<'@storybook/addon-links/src/index'>; -} -declare module '@storybook/addon-links/src/manager.js' { - declare module.exports: $Exports<'@storybook/addon-links/src/manager'>; -} -declare module '@storybook/addon-links/src/preview.js' { - declare module.exports: $Exports<'@storybook/addon-links/src/preview'>; -} -declare module '@storybook/addon-links/src/preview.test.js' { - declare module.exports: $Exports<'@storybook/addon-links/src/preview.test'>; -} -declare module '@storybook/addon-links/src/react/components/link.js' { - declare module.exports: $Exports<'@storybook/addon-links/src/react/components/link'>; -} -declare module '@storybook/addon-links/src/react/components/link.test.js' { - declare module.exports: $Exports<'@storybook/addon-links/src/react/components/link.test'>; -} -declare module '@storybook/addon-links/src/react/index.js' { - declare module.exports: $Exports<'@storybook/addon-links/src/react/index'>; -} diff --git a/flow-typed/npm/@storybook/react_v3.x.x.js b/flow-typed/npm/@storybook/react_v3.x.x.js deleted file mode 100644 index 4c312e7e..00000000 --- a/flow-typed/npm/@storybook/react_v3.x.x.js +++ /dev/null @@ -1,37 +0,0 @@ -// flow-typed signature: c2e1b132d2729c977d6b3e54e0134de5 -// flow-typed version: 1709d3212d/@storybook/react_v3.x.x/flow_>=v0.28.x - -type NodeModule = typeof module; - -declare module '@storybook/react' { - declare type Renderable = React$Element; - declare type RenderFunction = () => Renderable; - - declare type StoryDecorator = ( - story: RenderFunction, - context: { kind: string, story: string } - ) => Renderable | null; - - declare interface Story { - add(storyName: string, callback: RenderFunction): Story, - addDecorator(decorator: StoryDecorator): Story, - } - - declare interface StoryObject { - name: string, - render: RenderFunction, - } - - declare interface StoryBucket { - kind: string, - stories: Array, - } - - declare function addDecorator(decorator: StoryDecorator): void; - declare function configure(fn: () => void, module: NodeModule): void; - declare function setAddon(addon: Object): void; - declare function storiesOf(name: string, module: NodeModule): Story; - declare function storiesOf(name: string, module: NodeModule): Story & T; - - declare function getStorybook(): Array; -} diff --git a/flow-typed/npm/@storybook/react_v5.x.x.js b/flow-typed/npm/@storybook/react_v5.x.x.js new file mode 100644 index 00000000..1f1e6a59 --- /dev/null +++ b/flow-typed/npm/@storybook/react_v5.x.x.js @@ -0,0 +1,61 @@ +// flow-typed signature: e484579841f3cb1e8f57a768abc4642d +// flow-typed version: c6154227d1/@storybook/react_v5.x.x/flow_>=v0.104.x + +type NodeModule = typeof module; + +declare module '@storybook/react' { + declare type Context = { + kind: string, + story: string, + ... + }; + declare type Renderable = + | string + | number + | React$Element + | Iterable; + declare type RenderCallback = ( + context: Context + ) => Renderable; + declare type RenderFunction = () => Renderable; + + declare type StoryDecorator = ( + story: RenderFunction, + context: Context + ) => Renderable; + + declare type DecoratorParameters = { [key: string]: any, ... }; + + declare interface Story { + +kind: string; + add( + storyName: string, + callback: RenderCallback, + parameters?: DecoratorParameters + ): Story; + addDecorator(decorator: StoryDecorator): Story; + addParameters(parameters: DecoratorParameters): Story; + } + + declare interface StoryObject { + name: string; + render: RenderFunction; + } + + declare interface StoryBucket { + kind: string; + filename: string; + stories: Array; + } + + declare function addDecorator(decorator: StoryDecorator): void; + declare function addParameters(parameters: DecoratorParameters): void; + declare function clearDecorators(): void; + declare function configure(fn: () => void, module: NodeModule): void; + declare function setAddon(addon: Object): void; + declare function storiesOf(name: string, module: NodeModule): Story; + declare function storiesOf(name: string, module: NodeModule): Story & T; + declare function forceReRender(): void; + + declare function getStorybook(): Array; +} diff --git a/flow-typed/npm/@testing-library/jest-dom_v4.x.x.js b/flow-typed/npm/@testing-library/jest-dom_v4.x.x.js new file mode 100644 index 00000000..87f96cd1 --- /dev/null +++ b/flow-typed/npm/@testing-library/jest-dom_v4.x.x.js @@ -0,0 +1,44 @@ +// flow-typed signature: 2b0527816b2a1d32ff43775789595b02 +// flow-typed version: c6154227d1/@testing-library/jest-dom_v4.x.x/flow_>=v0.104.x + +declare module '@testing-library/jest-dom' { + declare type JestMatcherResult = { + message?: string | (() => string), + pass: boolean, + ... + }; + + declare type Result = JestMatcherResult | Promise; + + declare module.exports: {| + /** + * @deprecated + */ + toBeInTheDOM(container?: HTMLElement): Result, + + toBeInTheDocument(): Result, + toBeVisible(): Result, + toBeEmpty(): Result, + toBeDisabled(): Result, + toBeEnabled(): Result, + toBeInvalid(): Result, + toBeRequired(): Result, + toBeValid(): Result, + toContainElement(element: HTMLElement | null): Result, + toContainHTML(htmlText: string): Result, + toHaveAttribute(attr: string, value?: any): Result, + toHaveClass(...classNames: string[]): Result, + toHaveFocus(): Result, + toHaveFormValues(expectedValues: { [name: string]: any, ... }): Result, + toHaveStyle(css: string): Result, + toHaveTextContent( + text: string | RegExp, + options?: { normalizeWhitespace: boolean, ... } + ): Result, + toHaveValue(value?: string | string[] | number): Result, + |}; +} + +declare module '@testing-library/jest-dom/extend-expect' { + declare module.exports: any; +} diff --git a/flow-typed/npm/@testing-library/react_v9.x.x.js b/flow-typed/npm/@testing-library/react_v9.x.x.js new file mode 100644 index 00000000..f704a666 --- /dev/null +++ b/flow-typed/npm/@testing-library/react_v9.x.x.js @@ -0,0 +1,306 @@ +// flow-typed signature: e0056fd09a33a332c0ad120f7d50308d +// flow-typed version: 452cd002ef/@testing-library/react_v9.x.x/flow_>=v0.104.x + +declare module '@testing-library/react' { + // This type comes from + // https://github.com/facebook/flow/blob/v0.104.0/lib/react-dom.js#L64 + declare type ReactDOMTestUtilsThenable = { + then(resolve: () => mixed, reject?: () => mixed): mixed, + ... + }; + // This type comes from + // https://github.com/facebook/flow/blob/v0.104.0/lib/react-dom.js#L116 + declare type ReactDOMTestUtilsAct = ( + callback: () => void | ReactDOMTestUtilsThenable + ) => ReactDOMTestUtilsThenable; + + declare type TextMatch = + | string + | RegExp + | ((content: string, element: HTMLElement) => boolean); + + declare type TextMatchOptions = { + exact?: boolean, + trim?: boolean, + collapseWhitespace?: boolean, + ... + }; + + declare type SelectorMatchOptions = { + selector?: string, + ... + } & TextMatchOptions; + + declare type GetByText = ( + text: TextMatch, + options?: SelectorMatchOptions + ) => HTMLElement; + + declare type QueryByText = ( + text: TextMatch, + options?: SelectorMatchOptions + ) => ?HTMLElement; + + declare type AllByText = ( + text: TextMatch, + options?: SelectorMatchOptions + ) => Array; + + declare type GetByBoundAttribute = ( + text: TextMatch, + options?: TextMatchOptions + ) => HTMLElement; + + declare type QueryByBoundAttribute = ( + text: TextMatch, + options?: TextMatchOptions + ) => ?HTMLElement; + + declare type AllByBoundAttribute = ( + text: TextMatch, + options?: TextMatchOptions + ) => Array; + + declare type GetsAndQueries = {| + getByAltText: GetByBoundAttribute, + getAllByAltText: AllByBoundAttribute, + queryByAltText: QueryByBoundAttribute, + queryAllByAltText: AllByBoundAttribute, + + getByDisplayValue: GetByBoundAttribute, + getAllByDisplayValue: AllByBoundAttribute, + queryByDisplayValue: QueryByBoundAttribute, + queryAllByDisplayValue: AllByBoundAttribute, + + getByLabelText: GetByText, + getAllByLabelText: AllByText, + queryByLabelText: QueryByText, + queryAllByLabelText: AllByText, + + getByPlaceholderText: GetByBoundAttribute, + getAllByPlaceholderText: AllByBoundAttribute, + queryByPlaceholderText: QueryByBoundAttribute, + queryAllByPlaceholderText: AllByBoundAttribute, + + getByRole: GetByBoundAttribute, + getAllByRole: AllByBoundAttribute, + queryByRole: QueryByBoundAttribute, + queryAllByRole: AllByBoundAttribute, + + getBySelectText: GetByBoundAttribute, + getAllBySelectText: AllByBoundAttribute, + queryBySelectText: QueryByBoundAttribute, + queryAllBySelectText: AllByBoundAttribute, + + getByTestId: GetByBoundAttribute, + getAllByTestId: AllByBoundAttribute, + queryByTestId: QueryByBoundAttribute, + queryAllByTestId: AllByBoundAttribute, + + getByText: GetByText, + getAllByText: AllByText, + queryByText: QueryByText, + queryAllByText: AllByText, + + getByTitle: GetByBoundAttribute, + getAllByTitle: AllByBoundAttribute, + queryByTitle: QueryByBoundAttribute, + queryAllByTitle: AllByBoundAttribute, + + getByValue: GetByBoundAttribute, + getAllByValue: AllByBoundAttribute, + queryByValue: QueryByBoundAttribute, + queryAllByValue: AllByBoundAttribute, + |}; + + declare type FireEvent = ( + element: HTMLElement, + eventProperties?: TInit + ) => boolean; + + declare type Queries = { ... }; + + declare type RenderResult = {| + container: HTMLDivElement, + unmount: () => void, + baseElement: HTMLElement, + asFragment: () => DocumentFragment, + debug: (baseElement?: HTMLElement) => void, + rerender: (ui: React$Element<*>) => void, + |} & Q; + + declare export type RenderOptions = {| + container?: HTMLElement, + baseElement?: HTMLElement, + hydrate?: boolean, + queries?: Q, + wrapper?: React.ComponentType, + |}; + + declare module.exports: { + render( + ui: React.ReactElement, + options?: $Diff, {| queries: any |}> + ): RenderResult<>, + + render( + ui: React.ReactElement, + options?: RenderOptions + ): RenderResult, + + act: ReactDOMTestUtilsAct, + cleanup: () => void, + wait: ( + callback?: () => void, + options?: { + timeout?: number, + interval?: number, + ... + } + ) => Promise, + waitForDomChange: (options?: { + container?: HTMLElement, + timeout?: number, + mutationObserverOptions?: MutationObserverInit, + ... + }) => Promise, + waitForElement: ( + callback?: () => T, + options?: { + container?: HTMLElement, + timeout?: number, + mutationObserverOptions?: MutationObserverInit, + ... + } + ) => Promise, + within: ( + element: HTMLElement, + queriesToBind?: GetsAndQueries | Array + ) => GetsAndQueries, + fireEvent: {| + (element: HTMLElement, event: Event): void, + + copy: FireEvent, + cut: FireEvent, + paste: FireEvent, + compositionEnd: FireEvent, + compositionStart: FireEvent, + compositionUpdate: FireEvent, + keyDown: FireEvent, + keyPress: FireEvent, + keyUp: FireEvent, + focus: FireEvent, + blur: FireEvent, + change: FireEvent, + input: FireEvent, + invalid: FireEvent, + submit: FireEvent, + click: FireEvent, + contextMenu: FireEvent, + dblClick: FireEvent, + doubleClick: FireEvent, + drag: FireEvent, + dragEnd: FireEvent, + dragEnter: FireEvent, + dragExit: FireEvent, + dragLeave: FireEvent, + dragOver: FireEvent, + dragStart: FireEvent, + drop: FireEvent, + mouseDown: FireEvent, + mouseEnter: FireEvent, + mouseLeave: FireEvent, + mouseMove: FireEvent, + mouseOut: FireEvent, + mouseOver: FireEvent, + mouseUp: FireEvent, + select: FireEvent, + touchCancel: FireEvent, + touchEnd: FireEvent, + touchMove: FireEvent, + touchStart: FireEvent, + scroll: FireEvent, + wheel: FireEvent, + abort: FireEvent, + canPlay: FireEvent, + canPlayThrough: FireEvent, + durationChange: FireEvent, + emptied: FireEvent, + encrypted: FireEvent, + ended: FireEvent, + loadedData: FireEvent, + loadedMetadata: FireEvent, + loadStart: FireEvent, + pause: FireEvent, + play: FireEvent, + playing: FireEvent, + progress: FireEvent, + rateChange: FireEvent, + seeked: FireEvent, + seeking: FireEvent, + stalled: FireEvent, + suspend: FireEvent, + timeUpdate: FireEvent, + volumeChange: FireEvent, + waiting: FireEvent, + load: FireEvent, + error: FireEvent, + animationStart: FireEvent, + animationEnd: FireEvent, + animationIteration: FireEvent, + transitionEnd: FireEvent, + |}, + // dom-testing-library re-exports + queryByTestId: ( + container: HTMLElement, + id: TextMatch, + options?: TextMatchOptions + ) => ?HTMLElement, + getByTestId: ( + container: HTMLElement, + id: TextMatch, + options?: TextMatchOptions + ) => HTMLElement, + queryByText: ( + container: HTMLElement, + text: TextMatch, + options?: TextMatchOptions + ) => ?HTMLElement, + getByText: ( + container: HTMLElement, + text: TextMatch, + options?: { selector?: string, ... } & TextMatchOptions + ) => HTMLElement, + queryByPlaceholderText: ( + container: HTMLElement, + text: TextMatch, + options?: TextMatchOptions + ) => ?HTMLElement, + getByPlaceholderText: ( + container: HTMLElement, + text: TextMatch, + options?: TextMatchOptions + ) => HTMLElement, + queryByLabelText: ( + container: HTMLElement, + text: TextMatch, + options?: TextMatchOptions + ) => ?HTMLElement, + getByLabelText: ( + container: HTMLElement, + text: TextMatch, + options?: { selector?: string, ... } & TextMatchOptions + ) => HTMLElement, + queryByAltText: ( + container: HTMLElement, + text: TextMatch, + options?: TextMatchOptions + ) => ?HTMLElement, + getByAltText: ( + container: HTMLElement, + text: TextMatch, + options?: TextMatchOptions + ) => HTMLElement, + ... + }; +} diff --git a/flow-typed/npm/@toruslabs/torus-embed_vx.x.x.js b/flow-typed/npm/@toruslabs/torus-embed_vx.x.x.js new file mode 100644 index 00000000..4cda6405 --- /dev/null +++ b/flow-typed/npm/@toruslabs/torus-embed_vx.x.x.js @@ -0,0 +1,97 @@ +// flow-typed signature: ee010e9c75b42bfb961c1c5c4ee4160f +// flow-typed version: <>/@toruslabs/torus-embed_v0.2.6/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@toruslabs/torus-embed' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@toruslabs/torus-embed' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@toruslabs/torus-embed/dist/config' { + declare module.exports: any; +} + +declare module '@toruslabs/torus-embed/dist/createErrorMiddleware' { + declare module.exports: any; +} + +declare module '@toruslabs/torus-embed/dist/createTransformEthAddressMiddleware' { + declare module.exports: any; +} + +declare module '@toruslabs/torus-embed/dist/embed' { + declare module.exports: any; +} + +declare module '@toruslabs/torus-embed/dist/embedUtils' { + declare module.exports: any; +} + +declare module '@toruslabs/torus-embed/dist/inpage-provider' { + declare module.exports: any; +} + +declare module '@toruslabs/torus-embed/dist/stream-utils' { + declare module.exports: any; +} + +declare module '@toruslabs/torus-embed/dist/utils/httpHelpers' { + declare module.exports: any; +} + +declare module '@toruslabs/torus-embed/public' { + declare module.exports: any; +} + +// Filename aliases +declare module '@toruslabs/torus-embed/dist/config.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed/dist/config'>; +} +declare module '@toruslabs/torus-embed/dist/createErrorMiddleware.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed/dist/createErrorMiddleware'>; +} +declare module '@toruslabs/torus-embed/dist/createTransformEthAddressMiddleware.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed/dist/createTransformEthAddressMiddleware'>; +} +declare module '@toruslabs/torus-embed/dist/embed.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed/dist/embed'>; +} +declare module '@toruslabs/torus-embed/dist/embedUtils.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed/dist/embedUtils'>; +} +declare module '@toruslabs/torus-embed/dist/inpage-provider.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed/dist/inpage-provider'>; +} +declare module '@toruslabs/torus-embed/dist/stream-utils.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed/dist/stream-utils'>; +} +declare module '@toruslabs/torus-embed/dist/utils/httpHelpers.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed/dist/utils/httpHelpers'>; +} +declare module '@toruslabs/torus-embed/index' { + declare module.exports: $Exports<'@toruslabs/torus-embed'>; +} +declare module '@toruslabs/torus-embed/index.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed'>; +} +declare module '@toruslabs/torus-embed/public/index' { + declare module.exports: $Exports<'@toruslabs/torus-embed/public'>; +} +declare module '@toruslabs/torus-embed/public/index.js' { + declare module.exports: $Exports<'@toruslabs/torus-embed/public'>; +} diff --git a/flow-typed/npm/@walletconnect/web3-provider_vx.x.x.js b/flow-typed/npm/@walletconnect/web3-provider_vx.x.x.js new file mode 100644 index 00000000..6885ac96 --- /dev/null +++ b/flow-typed/npm/@walletconnect/web3-provider_vx.x.x.js @@ -0,0 +1,52 @@ +// flow-typed signature: 3eaa4e89310de6b5c376039de7790cff +// flow-typed version: <>/@walletconnect/web3-provider_v^1.0.0-beta.37/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@walletconnect/web3-provider' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@walletconnect/web3-provider' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@walletconnect/web3-provider/lib' { + declare module.exports: any; +} + +declare module '@walletconnect/web3-provider/src/http' { + declare module.exports: any; +} + +declare module '@walletconnect/web3-provider/src' { + declare module.exports: any; +} + +// Filename aliases +declare module '@walletconnect/web3-provider/lib/index' { + declare module.exports: $Exports<'@walletconnect/web3-provider/lib'>; +} +declare module '@walletconnect/web3-provider/lib/index.js' { + declare module.exports: $Exports<'@walletconnect/web3-provider/lib'>; +} +declare module '@walletconnect/web3-provider/src/http.js' { + declare module.exports: $Exports<'@walletconnect/web3-provider/src/http'>; +} +declare module '@walletconnect/web3-provider/src/index' { + declare module.exports: $Exports<'@walletconnect/web3-provider/src'>; +} +declare module '@walletconnect/web3-provider/src/index.js' { + declare module.exports: $Exports<'@walletconnect/web3-provider/src'>; +} diff --git a/flow-typed/npm/@welldone-software/why-did-you-render_vx.x.x.js b/flow-typed/npm/@welldone-software/why-did-you-render_vx.x.x.js new file mode 100644 index 00000000..9a4a4e99 --- /dev/null +++ b/flow-typed/npm/@welldone-software/why-did-you-render_vx.x.x.js @@ -0,0 +1,217 @@ +// flow-typed signature: 1dcae8f2428dbf43f98138c8c527a4c8 +// flow-typed version: <>/@welldone-software/why-did-you-render_v3.3.9/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * '@welldone-software/why-did-you-render' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module '@welldone-software/why-did-you-render' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module '@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender.min' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/esm/whyDidYouRender' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/esm/whyDidYouRender.min' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender.min' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender.min' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender.min' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/umd/whyDidYouRender' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/dist/umd/whyDidYouRender.min' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/calculateDeepEqualDiffs' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/consts' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/defaultNotifier' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/findObjectsDifferences' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/getDisplayName' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/getUpdateInfo' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/normalizeOptions' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/patches/patchClassComponent' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/patches/patchForwardRefComponent' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/patches/patchFunctionalOrStrComponent' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/patches/patchMemoComponent' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/shouldTrack' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/utils' { + declare module.exports: any; +} + +declare module '@welldone-software/why-did-you-render/src/whyDidYouRender' { + declare module.exports: any; +} + +// Filename aliases +declare module '@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender'>; +} +declare module '@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender.min.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/cjs/whyDidYouRender.min'>; +} +declare module '@welldone-software/why-did-you-render/dist/esm/whyDidYouRender.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/esm/whyDidYouRender'>; +} +declare module '@welldone-software/why-did-you-render/dist/esm/whyDidYouRender.min.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/esm/whyDidYouRender.min'>; +} +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender'>; +} +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender.min.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/cjs/whyDidYouRender.min'>; +} +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender'>; +} +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender.min.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/esm/whyDidYouRender.min'>; +} +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender'>; +} +declare module '@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender.min.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/no-classes-transpile/umd/whyDidYouRender.min'>; +} +declare module '@welldone-software/why-did-you-render/dist/umd/whyDidYouRender.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/umd/whyDidYouRender'>; +} +declare module '@welldone-software/why-did-you-render/dist/umd/whyDidYouRender.min.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/dist/umd/whyDidYouRender.min'>; +} +declare module '@welldone-software/why-did-you-render/src/calculateDeepEqualDiffs.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/calculateDeepEqualDiffs'>; +} +declare module '@welldone-software/why-did-you-render/src/consts.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/consts'>; +} +declare module '@welldone-software/why-did-you-render/src/defaultNotifier.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/defaultNotifier'>; +} +declare module '@welldone-software/why-did-you-render/src/findObjectsDifferences.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/findObjectsDifferences'>; +} +declare module '@welldone-software/why-did-you-render/src/getDisplayName.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/getDisplayName'>; +} +declare module '@welldone-software/why-did-you-render/src/getUpdateInfo.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/getUpdateInfo'>; +} +declare module '@welldone-software/why-did-you-render/src/index' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src'>; +} +declare module '@welldone-software/why-did-you-render/src/index.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src'>; +} +declare module '@welldone-software/why-did-you-render/src/normalizeOptions.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/normalizeOptions'>; +} +declare module '@welldone-software/why-did-you-render/src/patches/patchClassComponent.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/patches/patchClassComponent'>; +} +declare module '@welldone-software/why-did-you-render/src/patches/patchForwardRefComponent.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/patches/patchForwardRefComponent'>; +} +declare module '@welldone-software/why-did-you-render/src/patches/patchFunctionalOrStrComponent.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/patches/patchFunctionalOrStrComponent'>; +} +declare module '@welldone-software/why-did-you-render/src/patches/patchMemoComponent.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/patches/patchMemoComponent'>; +} +declare module '@welldone-software/why-did-you-render/src/shouldTrack.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/shouldTrack'>; +} +declare module '@welldone-software/why-did-you-render/src/utils.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/utils'>; +} +declare module '@welldone-software/why-did-you-render/src/whyDidYouRender.js' { + declare module.exports: $Exports<'@welldone-software/why-did-you-render/src/whyDidYouRender'>; +} diff --git a/flow-typed/npm/autoprefixer_vx.x.x.js b/flow-typed/npm/autoprefixer_vx.x.x.js index 9f4b9db8..03615e25 100644 --- a/flow-typed/npm/autoprefixer_vx.x.x.js +++ b/flow-typed/npm/autoprefixer_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: be9452be1f593a2f1148fb212370898c -// flow-typed version: <>/autoprefixer_v^8.1.0/flow_v0.66.0 +// flow-typed signature: cae711a84a8bc4c92c63880dc64fbd1e +// flow-typed version: <>/autoprefixer_v9.7.2/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -66,6 +66,14 @@ declare module 'autoprefixer/lib/hacks/appearance' { declare module.exports: any; } +declare module 'autoprefixer/lib/hacks/backdrop-filter' { + declare module.exports: any; +} + +declare module 'autoprefixer/lib/hacks/background-clip' { + declare module.exports: any; +} + declare module 'autoprefixer/lib/hacks/background-size' { declare module.exports: any; } @@ -86,6 +94,10 @@ declare module 'autoprefixer/lib/hacks/break-props' { declare module.exports: any; } +declare module 'autoprefixer/lib/hacks/color-adjust' { + declare module.exports: any; +} + declare module 'autoprefixer/lib/hacks/cross-fade' { declare module.exports: any; } @@ -210,6 +222,10 @@ declare module 'autoprefixer/lib/hacks/mask-border' { declare module.exports: any; } +declare module 'autoprefixer/lib/hacks/mask-composite' { + declare module.exports: any; +} + declare module 'autoprefixer/lib/hacks/order' { declare module.exports: any; } @@ -222,10 +238,18 @@ declare module 'autoprefixer/lib/hacks/pixelated' { declare module.exports: any; } +declare module 'autoprefixer/lib/hacks/place-self' { + declare module.exports: any; +} + declare module 'autoprefixer/lib/hacks/placeholder' { declare module.exports: any; } +declare module 'autoprefixer/lib/hacks/text-decoration-skip-ink' { + declare module.exports: any; +} + declare module 'autoprefixer/lib/hacks/text-decoration' { declare module.exports: any; } @@ -238,6 +262,10 @@ declare module 'autoprefixer/lib/hacks/transform-decl' { declare module.exports: any; } +declare module 'autoprefixer/lib/hacks/user-select' { + declare module.exports: any; +} + declare module 'autoprefixer/lib/hacks/writing-mode' { declare module.exports: any; } @@ -324,6 +352,12 @@ declare module 'autoprefixer/lib/hacks/animation.js' { declare module 'autoprefixer/lib/hacks/appearance.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/appearance'>; } +declare module 'autoprefixer/lib/hacks/backdrop-filter.js' { + declare module.exports: $Exports<'autoprefixer/lib/hacks/backdrop-filter'>; +} +declare module 'autoprefixer/lib/hacks/background-clip.js' { + declare module.exports: $Exports<'autoprefixer/lib/hacks/background-clip'>; +} declare module 'autoprefixer/lib/hacks/background-size.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/background-size'>; } @@ -339,6 +373,9 @@ declare module 'autoprefixer/lib/hacks/border-radius.js' { declare module 'autoprefixer/lib/hacks/break-props.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/break-props'>; } +declare module 'autoprefixer/lib/hacks/color-adjust.js' { + declare module.exports: $Exports<'autoprefixer/lib/hacks/color-adjust'>; +} declare module 'autoprefixer/lib/hacks/cross-fade.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/cross-fade'>; } @@ -432,6 +469,9 @@ declare module 'autoprefixer/lib/hacks/justify-content.js' { declare module 'autoprefixer/lib/hacks/mask-border.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/mask-border'>; } +declare module 'autoprefixer/lib/hacks/mask-composite.js' { + declare module.exports: $Exports<'autoprefixer/lib/hacks/mask-composite'>; +} declare module 'autoprefixer/lib/hacks/order.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/order'>; } @@ -441,9 +481,15 @@ declare module 'autoprefixer/lib/hacks/overscroll-behavior.js' { declare module 'autoprefixer/lib/hacks/pixelated.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/pixelated'>; } +declare module 'autoprefixer/lib/hacks/place-self.js' { + declare module.exports: $Exports<'autoprefixer/lib/hacks/place-self'>; +} declare module 'autoprefixer/lib/hacks/placeholder.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/placeholder'>; } +declare module 'autoprefixer/lib/hacks/text-decoration-skip-ink.js' { + declare module.exports: $Exports<'autoprefixer/lib/hacks/text-decoration-skip-ink'>; +} declare module 'autoprefixer/lib/hacks/text-decoration.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/text-decoration'>; } @@ -453,6 +499,9 @@ declare module 'autoprefixer/lib/hacks/text-emphasis-position.js' { declare module 'autoprefixer/lib/hacks/transform-decl.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/transform-decl'>; } +declare module 'autoprefixer/lib/hacks/user-select.js' { + declare module.exports: $Exports<'autoprefixer/lib/hacks/user-select'>; +} declare module 'autoprefixer/lib/hacks/writing-mode.js' { declare module.exports: $Exports<'autoprefixer/lib/hacks/writing-mode'>; } diff --git a/flow-typed/npm/axios_v0.19.x.js b/flow-typed/npm/axios_v0.19.x.js new file mode 100644 index 00000000..785ce4f7 --- /dev/null +++ b/flow-typed/npm/axios_v0.19.x.js @@ -0,0 +1,219 @@ +// flow-typed signature: 32c105e3630f5f2e3a8f6b779d7821e5 +// flow-typed version: 358ad43cd9/axios_v0.19.x/flow_>=v0.80.x + +declare module 'axios' { + import type { Agent as HttpAgent } from 'http'; + import type { Agent as HttpsAgent } from 'https'; + + declare type AxiosTransformer = ( + data: T, + headers?: { [key: string]: any } + ) => any; + + declare type ProxyConfig = {| + host: string, + port: number, + auth?: { + username: string, + password: string, + }, + protocol?: string, + |}; + + declare class Cancel { + constructor(message?: string): Cancel; + message: string; + } + + declare type Canceler = (message?: string) => void; + + declare type CancelTokenSource = {| + token: CancelToken, + cancel: Canceler, + |}; + + declare class CancelToken { + constructor(executor: (cancel: Canceler) => void): void; + static source(): CancelTokenSource; + promise: Promise; + reason?: Cancel; + throwIfRequested(): void; + } + + declare type Method = + | 'get' + | 'GET' + | 'delete' + | 'DELETE' + | 'head' + | 'HEAD' + | 'options' + | 'OPTIONS' + | 'post' + | 'POST' + | 'put' + | 'PUT' + | 'patch' + | 'PATCH'; + + declare type ResponseType = + | 'arraybuffer' + | 'blob' + | 'document' + | 'json' + | 'text' + | 'stream'; + + declare type AxiosAdapter = ( + config: AxiosXHRConfig + ) => Promise>; + + declare type AxiosXHRConfigBase = { + adapter?: AxiosAdapter, + auth?: { + username: string, + password: string, + }, + baseURL?: string, + cancelToken?: CancelToken, + headers?: { [key: string]: any }, + httpAgent?: HttpAgent, + httpsAgent?: HttpsAgent, + maxContentLength?: number, + maxRedirects?: number, + socketPath?: string | null, + params?: { [key: string]: any }, + paramsSerializer?: (params: { [key: string]: any }) => string, + onUploadProgress?: (progressEvent: ProgressEvent) => void, + onDownloadProgress?: (progressEvent: ProgressEvent) => void, + proxy?: ProxyConfig | false, + responseType?: ResponseType, + timeout?: number, + transformRequest?: AxiosTransformer | Array>, + transformResponse?: AxiosTransformer | Array>, + validateStatus?: (status: number) => boolean, + withCredentials?: boolean, + xsrfCookieName?: string, + xsrfHeaderName?: string, + }; + + declare type AxiosXHRConfig = {| + ...$Exact>, + data?: T, + method?: Method, + url: string, + |}; + + declare type AxiosXHRConfigShape = $Shape>; + + declare type AxiosXHR = { + config: AxiosXHRConfig, + data: R, + headers: ?{ [key: string]: any }, + status: number, + statusText: string, + request: http$ClientRequest<> | XMLHttpRequest | mixed, + }; + + declare type AxiosInterceptorIdent = number; + + declare type AxiosRequestInterceptor = {| + use( + onFulfilled: ?( + response: AxiosXHRConfig + ) => Promise> | AxiosXHRConfig, + onRejected: ?(error: mixed) => mixed + ): AxiosInterceptorIdent, + eject(ident: AxiosInterceptorIdent): void, + |}; + + declare type AxiosResponseInterceptor = {| + use( + onFulfilled: ?(response: AxiosXHR) => mixed, + onRejected: ?(error: mixed) => mixed + ): AxiosInterceptorIdent, + eject(ident: AxiosInterceptorIdent): void, + |}; + + declare type AxiosPromise = Promise>; + + declare class Axios { + ( + config: AxiosXHRConfig | string, + config?: AxiosXHRConfigShape + ): AxiosPromise; + constructor(config?: AxiosXHRConfigBase): void; + request( + config: AxiosXHRConfig | string, + config?: AxiosXHRConfigShape + ): AxiosPromise; + delete( + url: string, + config?: AxiosXHRConfigBase + ): AxiosPromise; + get( + url: string, + config?: AxiosXHRConfigBase + ): AxiosPromise; + head( + url: string, + config?: AxiosXHRConfigBase + ): AxiosPromise; + post( + url: string, + data?: T, + config?: AxiosXHRConfigBase + ): AxiosPromise; + put( + url: string, + data?: T, + config?: AxiosXHRConfigBase + ): AxiosPromise; + patch( + url: string, + data?: T, + config?: AxiosXHRConfigBase + ): AxiosPromise; + interceptors: { + request: AxiosRequestInterceptor, + response: AxiosResponseInterceptor, + }; + defaults: {| + ...$Exact>, + headers: { [key: string]: any }, + |}; + getUri(config?: AxiosXHRConfig): string; + } + + declare class AxiosError extends Error { + config: AxiosXHRConfig; + request?: http$ClientRequest<> | XMLHttpRequest; + response?: AxiosXHR; + code?: string; + isAxiosError: boolean; + } + + declare interface AxiosExport extends Axios { + ( + config: AxiosXHRConfig | string, + config?: AxiosXHRConfigShape + ): AxiosPromise; + Axios: typeof Axios; + Cancel: typeof Cancel; + CancelToken: typeof CancelToken; + isCancel(value: any): boolean; + create(config?: AxiosXHRConfigBase): Axios; + all: typeof Promise.all; + spread(callback: (...args: T) => R): (array: T) => R; + } + + declare type $AxiosXHRConfigBase = AxiosXHRConfigBase; + + declare type $AxiosXHRConfig = AxiosXHRConfig; + + declare type $AxiosXHR = AxiosXHR; + + declare type $AxiosError = AxiosError; + + declare module.exports: AxiosExport; +} diff --git a/flow-typed/npm/babel-core_vx.x.x.js b/flow-typed/npm/babel-core_vx.x.x.js index 7f17550c..d8658610 100644 --- a/flow-typed/npm/babel-core_vx.x.x.js +++ b/flow-typed/npm/babel-core_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 7dae3af86a5f29658957ec6dd675f131 -// flow-typed version: <>/babel-core_v^7.0.0-bridge.0/flow_v0.66.0 +// flow-typed signature: 850766ea767253b9e905a156cf75c3cc +// flow-typed version: <>/babel-core_v^7.0.0-bridge.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: diff --git a/flow-typed/npm/babel-eslint_vx.x.x.js b/flow-typed/npm/babel-eslint_vx.x.x.js index 87482b47..68d51911 100644 --- a/flow-typed/npm/babel-eslint_vx.x.x.js +++ b/flow-typed/npm/babel-eslint_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: fd24127108857b4ae2691098e95c7678 -// flow-typed version: <>/babel-eslint_v8/flow_v0.66.0 +// flow-typed signature: e3cee9dfee0ad0c03de73fcff4acd4c2 +// flow-typed version: <>/babel-eslint_v10.0.3/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -38,7 +38,7 @@ declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType' { declare module.exports: any; } -declare module 'babel-eslint/lib/babylon-to-espree/index' { +declare module 'babel-eslint/lib/babylon-to-espree' { declare module.exports: any; } @@ -54,11 +54,7 @@ declare module 'babel-eslint/lib/babylon-to-espree/toTokens' { declare module.exports: any; } -declare module 'babel-eslint/lib/index' { - declare module.exports: any; -} - -declare module 'babel-eslint/lib/parse-with-patch' { +declare module 'babel-eslint/lib' { declare module.exports: any; } @@ -70,7 +66,7 @@ declare module 'babel-eslint/lib/parse' { declare module.exports: any; } -declare module 'babel-eslint/lib/patch-eslint-scope' { +declare module 'babel-eslint/lib/require-from-eslint' { declare module.exports: any; } @@ -91,8 +87,11 @@ declare module 'babel-eslint/lib/babylon-to-espree/convertComments.js' { declare module 'babel-eslint/lib/babylon-to-espree/convertTemplateType.js' { declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/convertTemplateType'>; } +declare module 'babel-eslint/lib/babylon-to-espree/index' { + declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree'>; +} declare module 'babel-eslint/lib/babylon-to-espree/index.js' { - declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/index'>; + declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree'>; } declare module 'babel-eslint/lib/babylon-to-espree/toAST.js' { declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toAST'>; @@ -103,11 +102,11 @@ declare module 'babel-eslint/lib/babylon-to-espree/toToken.js' { declare module 'babel-eslint/lib/babylon-to-espree/toTokens.js' { declare module.exports: $Exports<'babel-eslint/lib/babylon-to-espree/toTokens'>; } -declare module 'babel-eslint/lib/index.js' { - declare module.exports: $Exports<'babel-eslint/lib/index'>; +declare module 'babel-eslint/lib/index' { + declare module.exports: $Exports<'babel-eslint/lib'>; } -declare module 'babel-eslint/lib/parse-with-patch.js' { - declare module.exports: $Exports<'babel-eslint/lib/parse-with-patch'>; +declare module 'babel-eslint/lib/index.js' { + declare module.exports: $Exports<'babel-eslint/lib'>; } declare module 'babel-eslint/lib/parse-with-scope.js' { declare module.exports: $Exports<'babel-eslint/lib/parse-with-scope'>; @@ -115,8 +114,8 @@ declare module 'babel-eslint/lib/parse-with-scope.js' { declare module 'babel-eslint/lib/parse.js' { declare module.exports: $Exports<'babel-eslint/lib/parse'>; } -declare module 'babel-eslint/lib/patch-eslint-scope.js' { - declare module.exports: $Exports<'babel-eslint/lib/patch-eslint-scope'>; +declare module 'babel-eslint/lib/require-from-eslint.js' { + declare module.exports: $Exports<'babel-eslint/lib/require-from-eslint'>; } declare module 'babel-eslint/lib/visitor-keys.js' { declare module.exports: $Exports<'babel-eslint/lib/visitor-keys'>; diff --git a/flow-typed/npm/babel-jest_vx.x.x.js b/flow-typed/npm/babel-jest_vx.x.x.js index bf90a520..8781a46b 100644 --- a/flow-typed/npm/babel-jest_vx.x.x.js +++ b/flow-typed/npm/babel-jest_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 28e21cd69ea80cb16ce55bf99f590519 -// flow-typed version: <>/babel-jest_v^22.4.1/flow_v0.66.0 +// flow-typed signature: ad623e8f15f453902fa325fbb391788f +// flow-typed version: <>/babel-jest_v24.9.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,11 +22,14 @@ declare module 'babel-jest' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'babel-jest/build/index' { +declare module 'babel-jest/build' { declare module.exports: any; } // Filename aliases -declare module 'babel-jest/build/index.js' { - declare module.exports: $Exports<'babel-jest/build/index'>; +declare module 'babel-jest/build/index' { + declare module.exports: $Exports<'babel-jest/build'>; +} +declare module 'babel-jest/build/index.js' { + declare module.exports: $Exports<'babel-jest/build'>; } diff --git a/flow-typed/npm/babel-loader_vx.x.x.js b/flow-typed/npm/babel-loader_vx.x.x.js index 01e23395..6abfcd82 100644 --- a/flow-typed/npm/babel-loader_vx.x.x.js +++ b/flow-typed/npm/babel-loader_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: d8f8afedb19b5b1272a22bfa78fb62b8 -// flow-typed version: <>/babel-loader_v^8.0.0-beta.0/flow_v0.66.0 +// flow-typed signature: f0757b6993e2b927ca395dd3cc265609 +// flow-typed version: <>/babel-loader_v8.0.6/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -26,15 +26,15 @@ declare module 'babel-loader/lib/cache' { declare module.exports: any; } -declare module 'babel-loader/lib/config' { - declare module.exports: any; -} - declare module 'babel-loader/lib/Error' { declare module.exports: any; } -declare module 'babel-loader/lib/index' { +declare module 'babel-loader/lib' { + declare module.exports: any; +} + +declare module 'babel-loader/lib/injectCaller' { declare module.exports: any; } @@ -42,40 +42,22 @@ declare module 'babel-loader/lib/transform' { declare module.exports: any; } -declare module 'babel-loader/lib/utils/exists' { - declare module.exports: any; -} - -declare module 'babel-loader/lib/utils/read' { - declare module.exports: any; -} - -declare module 'babel-loader/lib/utils/relative' { - declare module.exports: any; -} - // Filename aliases declare module 'babel-loader/lib/cache.js' { declare module.exports: $Exports<'babel-loader/lib/cache'>; } -declare module 'babel-loader/lib/config.js' { - declare module.exports: $Exports<'babel-loader/lib/config'>; -} declare module 'babel-loader/lib/Error.js' { declare module.exports: $Exports<'babel-loader/lib/Error'>; } +declare module 'babel-loader/lib/index' { + declare module.exports: $Exports<'babel-loader/lib'>; +} declare module 'babel-loader/lib/index.js' { - declare module.exports: $Exports<'babel-loader/lib/index'>; + declare module.exports: $Exports<'babel-loader/lib'>; +} +declare module 'babel-loader/lib/injectCaller.js' { + declare module.exports: $Exports<'babel-loader/lib/injectCaller'>; } declare module 'babel-loader/lib/transform.js' { declare module.exports: $Exports<'babel-loader/lib/transform'>; } -declare module 'babel-loader/lib/utils/exists.js' { - declare module.exports: $Exports<'babel-loader/lib/utils/exists'>; -} -declare module 'babel-loader/lib/utils/read.js' { - declare module.exports: $Exports<'babel-loader/lib/utils/read'>; -} -declare module 'babel-loader/lib/utils/relative.js' { - declare module.exports: $Exports<'babel-loader/lib/utils/relative'>; -} diff --git a/flow-typed/npm/babel-plugin-dynamic-import-node_vx.x.x.js b/flow-typed/npm/babel-plugin-dynamic-import-node_vx.x.x.js index cdf34b96..09ec0e95 100644 --- a/flow-typed/npm/babel-plugin-dynamic-import-node_vx.x.x.js +++ b/flow-typed/npm/babel-plugin-dynamic-import-node_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 4f035977b728b8f099957c29ba25421d -// flow-typed version: <>/babel-plugin-dynamic-import-node_v^1.2.0/flow_v0.66.0 +// flow-typed signature: ff7bbe09c04f48039ca543aef0702696 +// flow-typed version: <>/babel-plugin-dynamic-import-node_v^2.3.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,11 +22,28 @@ declare module 'babel-plugin-dynamic-import-node' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'babel-plugin-dynamic-import-node/lib/index' { +declare module 'babel-plugin-dynamic-import-node/lib' { + declare module.exports: any; +} + +declare module 'babel-plugin-dynamic-import-node/lib/utils' { + declare module.exports: any; +} + +declare module 'babel-plugin-dynamic-import-node/utils' { declare module.exports: any; } // Filename aliases -declare module 'babel-plugin-dynamic-import-node/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-dynamic-import-node/lib/index'>; +declare module 'babel-plugin-dynamic-import-node/lib/index' { + declare module.exports: $Exports<'babel-plugin-dynamic-import-node/lib'>; +} +declare module 'babel-plugin-dynamic-import-node/lib/index.js' { + declare module.exports: $Exports<'babel-plugin-dynamic-import-node/lib'>; +} +declare module 'babel-plugin-dynamic-import-node/lib/utils.js' { + declare module.exports: $Exports<'babel-plugin-dynamic-import-node/lib/utils'>; +} +declare module 'babel-plugin-dynamic-import-node/utils.js' { + declare module.exports: $Exports<'babel-plugin-dynamic-import-node/utils'>; } diff --git a/flow-typed/npm/babel-plugin-transform-es3-member-expression-literals_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-es3-member-expression-literals_vx.x.x.js index 7350b3c9..b3291806 100644 --- a/flow-typed/npm/babel-plugin-transform-es3-member-expression-literals_vx.x.x.js +++ b/flow-typed/npm/babel-plugin-transform-es3-member-expression-literals_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 93b8304e7367bd06d471569ba89db6c6 -// flow-typed version: <>/babel-plugin-transform-es3-member-expression-literals_v^6.22.0/flow_v0.66.0 +// flow-typed signature: 91d0ca7223e9ba3612856a29394dbc6f +// flow-typed version: <>/babel-plugin-transform-es3-member-expression-literals_v^6.22.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,11 +22,14 @@ declare module 'babel-plugin-transform-es3-member-expression-literals' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'babel-plugin-transform-es3-member-expression-literals/lib/index' { +declare module 'babel-plugin-transform-es3-member-expression-literals/lib' { declare module.exports: any; } // Filename aliases -declare module 'babel-plugin-transform-es3-member-expression-literals/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-transform-es3-member-expression-literals/lib/index'>; +declare module 'babel-plugin-transform-es3-member-expression-literals/lib/index' { + declare module.exports: $Exports<'babel-plugin-transform-es3-member-expression-literals/lib'>; +} +declare module 'babel-plugin-transform-es3-member-expression-literals/lib/index.js' { + declare module.exports: $Exports<'babel-plugin-transform-es3-member-expression-literals/lib'>; } diff --git a/flow-typed/npm/babel-plugin-transform-es3-property-literals_vx.x.x.js b/flow-typed/npm/babel-plugin-transform-es3-property-literals_vx.x.x.js index f89562b7..817010e5 100644 --- a/flow-typed/npm/babel-plugin-transform-es3-property-literals_vx.x.x.js +++ b/flow-typed/npm/babel-plugin-transform-es3-property-literals_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: cfe4b449906f9a0e5286d2bd20ee91e3 -// flow-typed version: <>/babel-plugin-transform-es3-property-literals_v^6.22.0/flow_v0.66.0 +// flow-typed signature: ade8f6729fc5b109296672ffbde6db97 +// flow-typed version: <>/babel-plugin-transform-es3-property-literals_v^6.22.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,11 +22,14 @@ declare module 'babel-plugin-transform-es3-property-literals' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'babel-plugin-transform-es3-property-literals/lib/index' { +declare module 'babel-plugin-transform-es3-property-literals/lib' { declare module.exports: any; } // Filename aliases -declare module 'babel-plugin-transform-es3-property-literals/lib/index.js' { - declare module.exports: $Exports<'babel-plugin-transform-es3-property-literals/lib/index'>; +declare module 'babel-plugin-transform-es3-property-literals/lib/index' { + declare module.exports: $Exports<'babel-plugin-transform-es3-property-literals/lib'>; +} +declare module 'babel-plugin-transform-es3-property-literals/lib/index.js' { + declare module.exports: $Exports<'babel-plugin-transform-es3-property-literals/lib'>; } diff --git a/flow-typed/npm/babel-polyfill_v6.x.x.js b/flow-typed/npm/babel-polyfill_v6.x.x.js new file mode 100644 index 00000000..95195eaa --- /dev/null +++ b/flow-typed/npm/babel-polyfill_v6.x.x.js @@ -0,0 +1,4 @@ +// flow-typed signature: 29a6ec8f7f4b42ab84093c5f7b57d5fd +// flow-typed version: c6154227d1/babel-polyfill_v6.x.x/flow_>=v0.104.x + +declare module 'babel-polyfill' {} diff --git a/flow-typed/npm/bignumber.js_vx.x.x.js b/flow-typed/npm/bignumber.js_vx.x.x.js new file mode 100644 index 00000000..93231e3a --- /dev/null +++ b/flow-typed/npm/bignumber.js_vx.x.x.js @@ -0,0 +1,39 @@ +// flow-typed signature: 6ddbf74d89dbbc81cf7dc4f89c048f14 +// flow-typed version: <>/bignumber.js_v9.0.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'bignumber.js' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'bignumber.js' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'bignumber.js/bignumber' { + declare module.exports: any; +} + +declare module 'bignumber.js/bignumber.min' { + declare module.exports: any; +} + +// Filename aliases +declare module 'bignumber.js/bignumber.js' { + declare module.exports: $Exports<'bignumber.js/bignumber'>; +} +declare module 'bignumber.js/bignumber.min.js' { + declare module.exports: $Exports<'bignumber.js/bignumber.min'>; +} diff --git a/flow-typed/npm/classnames_v2.x.x.js b/flow-typed/npm/classnames_v2.x.x.js index 2307243e..27057f03 100644 --- a/flow-typed/npm/classnames_v2.x.x.js +++ b/flow-typed/npm/classnames_v2.x.x.js @@ -1,9 +1,9 @@ -// flow-typed signature: cf86673cc32d185bdab1d2ea90578d37 -// flow-typed version: 614bf49aa8/classnames_v2.x.x/flow_>=v0.25.x +// flow-typed signature: a00cf41b09af4862583460529d5cfcb9 +// flow-typed version: c6154227d1/classnames_v2.x.x/flow_>=v0.104.x type $npm$classnames$Classes = | string - | { [className: string]: * } + | { [className: string]: *, ... } | false | void | null; diff --git a/flow-typed/npm/connected-react-router_vx.x.x.js b/flow-typed/npm/connected-react-router_vx.x.x.js new file mode 100644 index 00000000..956be3c4 --- /dev/null +++ b/flow-typed/npm/connected-react-router_vx.x.x.js @@ -0,0 +1,266 @@ +// flow-typed signature: 9c66b70c7a47b5b7f0a6c2ef57e96430 +// flow-typed version: <>/connected-react-router_v6.6.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'connected-react-router' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'connected-react-router' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'connected-react-router/esm/actions' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/ConnectedRouter' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/middleware' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/reducer' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/seamless-immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/selectors' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/structure/immutable/getIn' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/structure/immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/structure/plain/getIn' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/structure/plain' { + declare module.exports: any; +} + +declare module 'connected-react-router/esm/structure/seamless-immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/actions' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/ConnectedRouter' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/middleware' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/reducer' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/seamless-immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/selectors' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/structure/immutable/getIn' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/structure/immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/structure/plain/getIn' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/structure/plain' { + declare module.exports: any; +} + +declare module 'connected-react-router/lib/structure/seamless-immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/seamless-immutable' { + declare module.exports: any; +} + +declare module 'connected-react-router/umd/ConnectedReactRouter' { + declare module.exports: any; +} + +declare module 'connected-react-router/umd/ConnectedReactRouter.min' { + declare module.exports: any; +} + +declare module 'connected-react-router/webpack.config' { + declare module.exports: any; +} + +// Filename aliases +declare module 'connected-react-router/esm/actions.js' { + declare module.exports: $Exports<'connected-react-router/esm/actions'>; +} +declare module 'connected-react-router/esm/ConnectedRouter.js' { + declare module.exports: $Exports<'connected-react-router/esm/ConnectedRouter'>; +} +declare module 'connected-react-router/esm/immutable.js' { + declare module.exports: $Exports<'connected-react-router/esm/immutable'>; +} +declare module 'connected-react-router/esm/index' { + declare module.exports: $Exports<'connected-react-router/esm'>; +} +declare module 'connected-react-router/esm/index.js' { + declare module.exports: $Exports<'connected-react-router/esm'>; +} +declare module 'connected-react-router/esm/middleware.js' { + declare module.exports: $Exports<'connected-react-router/esm/middleware'>; +} +declare module 'connected-react-router/esm/reducer.js' { + declare module.exports: $Exports<'connected-react-router/esm/reducer'>; +} +declare module 'connected-react-router/esm/seamless-immutable.js' { + declare module.exports: $Exports<'connected-react-router/esm/seamless-immutable'>; +} +declare module 'connected-react-router/esm/selectors.js' { + declare module.exports: $Exports<'connected-react-router/esm/selectors'>; +} +declare module 'connected-react-router/esm/structure/immutable/getIn.js' { + declare module.exports: $Exports<'connected-react-router/esm/structure/immutable/getIn'>; +} +declare module 'connected-react-router/esm/structure/immutable/index' { + declare module.exports: $Exports<'connected-react-router/esm/structure/immutable'>; +} +declare module 'connected-react-router/esm/structure/immutable/index.js' { + declare module.exports: $Exports<'connected-react-router/esm/structure/immutable'>; +} +declare module 'connected-react-router/esm/structure/plain/getIn.js' { + declare module.exports: $Exports<'connected-react-router/esm/structure/plain/getIn'>; +} +declare module 'connected-react-router/esm/structure/plain/index' { + declare module.exports: $Exports<'connected-react-router/esm/structure/plain'>; +} +declare module 'connected-react-router/esm/structure/plain/index.js' { + declare module.exports: $Exports<'connected-react-router/esm/structure/plain'>; +} +declare module 'connected-react-router/esm/structure/seamless-immutable/index' { + declare module.exports: $Exports<'connected-react-router/esm/structure/seamless-immutable'>; +} +declare module 'connected-react-router/esm/structure/seamless-immutable/index.js' { + declare module.exports: $Exports<'connected-react-router/esm/structure/seamless-immutable'>; +} +declare module 'connected-react-router/immutable.js' { + declare module.exports: $Exports<'connected-react-router/immutable'>; +} +declare module 'connected-react-router/lib/actions.js' { + declare module.exports: $Exports<'connected-react-router/lib/actions'>; +} +declare module 'connected-react-router/lib/ConnectedRouter.js' { + declare module.exports: $Exports<'connected-react-router/lib/ConnectedRouter'>; +} +declare module 'connected-react-router/lib/immutable.js' { + declare module.exports: $Exports<'connected-react-router/lib/immutable'>; +} +declare module 'connected-react-router/lib/index' { + declare module.exports: $Exports<'connected-react-router/lib'>; +} +declare module 'connected-react-router/lib/index.js' { + declare module.exports: $Exports<'connected-react-router/lib'>; +} +declare module 'connected-react-router/lib/middleware.js' { + declare module.exports: $Exports<'connected-react-router/lib/middleware'>; +} +declare module 'connected-react-router/lib/reducer.js' { + declare module.exports: $Exports<'connected-react-router/lib/reducer'>; +} +declare module 'connected-react-router/lib/seamless-immutable.js' { + declare module.exports: $Exports<'connected-react-router/lib/seamless-immutable'>; +} +declare module 'connected-react-router/lib/selectors.js' { + declare module.exports: $Exports<'connected-react-router/lib/selectors'>; +} +declare module 'connected-react-router/lib/structure/immutable/getIn.js' { + declare module.exports: $Exports<'connected-react-router/lib/structure/immutable/getIn'>; +} +declare module 'connected-react-router/lib/structure/immutable/index' { + declare module.exports: $Exports<'connected-react-router/lib/structure/immutable'>; +} +declare module 'connected-react-router/lib/structure/immutable/index.js' { + declare module.exports: $Exports<'connected-react-router/lib/structure/immutable'>; +} +declare module 'connected-react-router/lib/structure/plain/getIn.js' { + declare module.exports: $Exports<'connected-react-router/lib/structure/plain/getIn'>; +} +declare module 'connected-react-router/lib/structure/plain/index' { + declare module.exports: $Exports<'connected-react-router/lib/structure/plain'>; +} +declare module 'connected-react-router/lib/structure/plain/index.js' { + declare module.exports: $Exports<'connected-react-router/lib/structure/plain'>; +} +declare module 'connected-react-router/lib/structure/seamless-immutable/index' { + declare module.exports: $Exports<'connected-react-router/lib/structure/seamless-immutable'>; +} +declare module 'connected-react-router/lib/structure/seamless-immutable/index.js' { + declare module.exports: $Exports<'connected-react-router/lib/structure/seamless-immutable'>; +} +declare module 'connected-react-router/seamless-immutable.js' { + declare module.exports: $Exports<'connected-react-router/seamless-immutable'>; +} +declare module 'connected-react-router/umd/ConnectedReactRouter.js' { + declare module.exports: $Exports<'connected-react-router/umd/ConnectedReactRouter'>; +} +declare module 'connected-react-router/umd/ConnectedReactRouter.min.js' { + declare module.exports: $Exports<'connected-react-router/umd/ConnectedReactRouter.min'>; +} +declare module 'connected-react-router/webpack.config.js' { + declare module.exports: $Exports<'connected-react-router/webpack.config'>; +} diff --git a/flow-typed/npm/css-loader_vx.x.x.js b/flow-typed/npm/css-loader_vx.x.x.js index ad62a8a6..7debb046 100644 --- a/flow-typed/npm/css-loader_vx.x.x.js +++ b/flow-typed/npm/css-loader_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: d60c3b682ae42af8008d275fcbf75fdf -// flow-typed version: <>/css-loader_v^0.28.10/flow_v0.66.0 +// flow-typed signature: 8be125d440f53f0f0072f775299d8eb4 +// flow-typed version: <>/css-loader_v3.2.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,80 +22,87 @@ declare module 'css-loader' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'css-loader/lib/compile-exports' { +declare module 'css-loader/dist/cjs' { declare module.exports: any; } -declare module 'css-loader/lib/createResolver' { +declare module 'css-loader/dist/CssSyntaxError' { declare module.exports: any; } -declare module 'css-loader/lib/css-base' { +declare module 'css-loader/dist' { declare module.exports: any; } -declare module 'css-loader/lib/getImportPrefix' { +declare module 'css-loader/dist/plugins' { declare module.exports: any; } -declare module 'css-loader/lib/getLocalIdent' { +declare module 'css-loader/dist/plugins/postcss-icss-parser' { declare module.exports: any; } -declare module 'css-loader/lib/loader' { +declare module 'css-loader/dist/plugins/postcss-import-parser' { declare module.exports: any; } -declare module 'css-loader/lib/localsLoader' { +declare module 'css-loader/dist/plugins/postcss-url-parser' { declare module.exports: any; } -declare module 'css-loader/lib/processCss' { +declare module 'css-loader/dist/runtime/api' { declare module.exports: any; } -declare module 'css-loader/lib/url/escape' { +declare module 'css-loader/dist/runtime/getUrl' { declare module.exports: any; } -declare module 'css-loader/locals' { +declare module 'css-loader/dist/utils' { + declare module.exports: any; +} + +declare module 'css-loader/dist/Warning' { declare module.exports: any; } // Filename aliases -declare module 'css-loader/index' { - declare module.exports: $Exports<'css-loader'>; +declare module 'css-loader/dist/cjs.js' { + declare module.exports: $Exports<'css-loader/dist/cjs'>; } -declare module 'css-loader/index.js' { - declare module.exports: $Exports<'css-loader'>; +declare module 'css-loader/dist/CssSyntaxError.js' { + declare module.exports: $Exports<'css-loader/dist/CssSyntaxError'>; } -declare module 'css-loader/lib/compile-exports.js' { - declare module.exports: $Exports<'css-loader/lib/compile-exports'>; +declare module 'css-loader/dist/index' { + declare module.exports: $Exports<'css-loader/dist'>; } -declare module 'css-loader/lib/createResolver.js' { - declare module.exports: $Exports<'css-loader/lib/createResolver'>; +declare module 'css-loader/dist/index.js' { + declare module.exports: $Exports<'css-loader/dist'>; } -declare module 'css-loader/lib/css-base.js' { - declare module.exports: $Exports<'css-loader/lib/css-base'>; +declare module 'css-loader/dist/plugins/index' { + declare module.exports: $Exports<'css-loader/dist/plugins'>; } -declare module 'css-loader/lib/getImportPrefix.js' { - declare module.exports: $Exports<'css-loader/lib/getImportPrefix'>; +declare module 'css-loader/dist/plugins/index.js' { + declare module.exports: $Exports<'css-loader/dist/plugins'>; } -declare module 'css-loader/lib/getLocalIdent.js' { - declare module.exports: $Exports<'css-loader/lib/getLocalIdent'>; +declare module 'css-loader/dist/plugins/postcss-icss-parser.js' { + declare module.exports: $Exports<'css-loader/dist/plugins/postcss-icss-parser'>; } -declare module 'css-loader/lib/loader.js' { - declare module.exports: $Exports<'css-loader/lib/loader'>; +declare module 'css-loader/dist/plugins/postcss-import-parser.js' { + declare module.exports: $Exports<'css-loader/dist/plugins/postcss-import-parser'>; } -declare module 'css-loader/lib/localsLoader.js' { - declare module.exports: $Exports<'css-loader/lib/localsLoader'>; +declare module 'css-loader/dist/plugins/postcss-url-parser.js' { + declare module.exports: $Exports<'css-loader/dist/plugins/postcss-url-parser'>; } -declare module 'css-loader/lib/processCss.js' { - declare module.exports: $Exports<'css-loader/lib/processCss'>; +declare module 'css-loader/dist/runtime/api.js' { + declare module.exports: $Exports<'css-loader/dist/runtime/api'>; } -declare module 'css-loader/lib/url/escape.js' { - declare module.exports: $Exports<'css-loader/lib/url/escape'>; +declare module 'css-loader/dist/runtime/getUrl.js' { + declare module.exports: $Exports<'css-loader/dist/runtime/getUrl'>; } -declare module 'css-loader/locals.js' { - declare module.exports: $Exports<'css-loader/locals'>; +declare module 'css-loader/dist/utils.js' { + declare module.exports: $Exports<'css-loader/dist/utils'>; +} +declare module 'css-loader/dist/Warning.js' { + declare module.exports: $Exports<'css-loader/dist/Warning'>; } diff --git a/flow-typed/npm/detect-port_vx.x.x.js b/flow-typed/npm/detect-port_vx.x.x.js index 485ebbec..7a2f5678 100644 --- a/flow-typed/npm/detect-port_vx.x.x.js +++ b/flow-typed/npm/detect-port_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: b3229f7916feec74fceb17c05b1f8a38 -// flow-typed version: <>/detect-port_v^1.2.2/flow_v0.66.0 +// flow-typed signature: fe4bb27a8d38d849f6ed1f5ae57e7c94 +// flow-typed version: <>/detect-port_v^1.3.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: diff --git a/flow-typed/npm/eslint-config-airbnb_vx.x.x.js b/flow-typed/npm/eslint-config-airbnb_vx.x.x.js index aee96395..bd1a9948 100644 --- a/flow-typed/npm/eslint-config-airbnb_vx.x.x.js +++ b/flow-typed/npm/eslint-config-airbnb_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: c70219a3ab7cdd9bde1014fe89a534bf -// flow-typed version: <>/eslint-config-airbnb_v^16.1.0/flow_v0.66.0 +// flow-typed signature: 4bf87240ce2c8dc65ac75db092f91e80 +// flow-typed version: <>/eslint-config-airbnb_v18.0.1/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -26,6 +26,10 @@ declare module 'eslint-config-airbnb/base' { declare module.exports: any; } +declare module 'eslint-config-airbnb/hooks' { + declare module.exports: any; +} + declare module 'eslint-config-airbnb/legacy' { declare module.exports: any; } @@ -34,10 +38,18 @@ declare module 'eslint-config-airbnb/rules/react-a11y' { declare module.exports: any; } +declare module 'eslint-config-airbnb/rules/react-hooks' { + declare module.exports: any; +} + declare module 'eslint-config-airbnb/rules/react' { declare module.exports: any; } +declare module 'eslint-config-airbnb/test/requires' { + declare module.exports: any; +} + declare module 'eslint-config-airbnb/test/test-base' { declare module.exports: any; } @@ -46,10 +58,17 @@ declare module 'eslint-config-airbnb/test/test-react-order' { declare module.exports: any; } +declare module 'eslint-config-airbnb/whitespace' { + declare module.exports: any; +} + // Filename aliases declare module 'eslint-config-airbnb/base.js' { declare module.exports: $Exports<'eslint-config-airbnb/base'>; } +declare module 'eslint-config-airbnb/hooks.js' { + declare module.exports: $Exports<'eslint-config-airbnb/hooks'>; +} declare module 'eslint-config-airbnb/index' { declare module.exports: $Exports<'eslint-config-airbnb'>; } @@ -62,12 +81,21 @@ declare module 'eslint-config-airbnb/legacy.js' { declare module 'eslint-config-airbnb/rules/react-a11y.js' { declare module.exports: $Exports<'eslint-config-airbnb/rules/react-a11y'>; } +declare module 'eslint-config-airbnb/rules/react-hooks.js' { + declare module.exports: $Exports<'eslint-config-airbnb/rules/react-hooks'>; +} declare module 'eslint-config-airbnb/rules/react.js' { declare module.exports: $Exports<'eslint-config-airbnb/rules/react'>; } +declare module 'eslint-config-airbnb/test/requires.js' { + declare module.exports: $Exports<'eslint-config-airbnb/test/requires'>; +} declare module 'eslint-config-airbnb/test/test-base.js' { declare module.exports: $Exports<'eslint-config-airbnb/test/test-base'>; } declare module 'eslint-config-airbnb/test/test-react-order.js' { declare module.exports: $Exports<'eslint-config-airbnb/test/test-react-order'>; } +declare module 'eslint-config-airbnb/whitespace.js' { + declare module.exports: $Exports<'eslint-config-airbnb/whitespace'>; +} diff --git a/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js b/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js index 89592163..e48f779d 100644 --- a/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js +++ b/flow-typed/npm/eslint-plugin-flowtype_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: b3aaa37c978f277238be1303f7e33245 -// flow-typed version: <>/eslint-plugin-flowtype_v^2.46.1/flow_v0.66.0 +// flow-typed signature: 2f15ad8d039675ec3e75a5d7ba03b205 +// flow-typed version: <>/eslint-plugin-flowtype_v4.4.1/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,11 +22,47 @@ declare module 'eslint-plugin-flowtype' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'eslint-plugin-flowtype/bin/readmeAssertions' { +declare module 'eslint-plugin-flowtype/dist/bin/addAssertions' { declare module.exports: any; } -declare module 'eslint-plugin-flowtype/dist/index' { +declare module 'eslint-plugin-flowtype/dist/bin/checkDocs' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/bin/checkTests' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/bin/utilities' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/rules/arrowParens' { declare module.exports: any; } @@ -62,6 +98,10 @@ declare module 'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments' { declare module.exports: any; } +declare module 'eslint-plugin-flowtype/dist/rules/noMixed' { + declare module.exports: any; +} + declare module 'eslint-plugin-flowtype/dist/rules/noMutableArray' { declare module.exports: any; } @@ -86,14 +126,30 @@ declare module 'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter' { declare module.exports: any; } +declare module 'eslint-plugin-flowtype/dist/rules/requireCompoundTypeAlias' { + declare module.exports: any; +} + declare module 'eslint-plugin-flowtype/dist/rules/requireExactType' { declare module.exports: any; } +declare module 'eslint-plugin-flowtype/dist/rules/requireIndexerName' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/rules/requireInexactType' { + declare module.exports: any; +} + declare module 'eslint-plugin-flowtype/dist/rules/requireParameterType' { declare module.exports: any; } +declare module 'eslint-plugin-flowtype/dist/rules/requireReadonlyReactProps' { + declare module.exports: any; +} + declare module 'eslint-plugin-flowtype/dist/rules/requireReturnType' { declare module.exports: any; } @@ -130,6 +186,10 @@ declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon' { declare module.exports: any; } +declare module 'eslint-plugin-flowtype/dist/rules/spreadExactType' { + declare module.exports: any; +} + declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions' { declare module.exports: any; } @@ -154,7 +214,11 @@ declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypic declare module.exports: any; } -declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index' { +declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables' { + declare module.exports: any; +} + +declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing' { declare module.exports: any; } @@ -202,7 +266,7 @@ declare module 'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens' { declare module.exports: any; } -declare module 'eslint-plugin-flowtype/dist/utilities/index' { +declare module 'eslint-plugin-flowtype/dist/utilities' { declare module.exports: any; } @@ -227,11 +291,44 @@ declare module 'eslint-plugin-flowtype/dist/utilities/spacingFixers' { } // Filename aliases -declare module 'eslint-plugin-flowtype/bin/readmeAssertions.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/bin/readmeAssertions'>; +declare module 'eslint-plugin-flowtype/dist/bin/addAssertions.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/addAssertions'>; +} +declare module 'eslint-plugin-flowtype/dist/bin/checkDocs.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/checkDocs'>; +} +declare module 'eslint-plugin-flowtype/dist/bin/checkTests.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/checkTests'>; +} +declare module 'eslint-plugin-flowtype/dist/bin/utilities.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/bin/utilities'>; +} +declare module 'eslint-plugin-flowtype/dist/index' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist'>; } declare module 'eslint-plugin-flowtype/dist/index.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/index'>; + declare module.exports: $Exports<'eslint-plugin-flowtype/dist'>; +} +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/index' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle'>; +} +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/index.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle'>; +} +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle/isSimpleType'>; +} +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyle/needWrap'>; +} +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyleComplexType'>; +} +declare module 'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrayStyleSimpleType'>; +} +declare module 'eslint-plugin-flowtype/dist/rules/arrowParens.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/arrowParens'>; } declare module 'eslint-plugin-flowtype/dist/rules/booleanStyle.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/booleanStyle'>; @@ -257,6 +354,9 @@ declare module 'eslint-plugin-flowtype/dist/rules/noExistentialType.js' { declare module 'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noFlowFixMeComments'>; } +declare module 'eslint-plugin-flowtype/dist/rules/noMixed.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noMixed'>; +} declare module 'eslint-plugin-flowtype/dist/rules/noMutableArray.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/noMutableArray'>; } @@ -275,12 +375,24 @@ declare module 'eslint-plugin-flowtype/dist/rules/noWeakTypes.js' { declare module 'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/objectTypeDelimiter'>; } +declare module 'eslint-plugin-flowtype/dist/rules/requireCompoundTypeAlias.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireCompoundTypeAlias'>; +} declare module 'eslint-plugin-flowtype/dist/rules/requireExactType.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireExactType'>; } +declare module 'eslint-plugin-flowtype/dist/rules/requireIndexerName.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireIndexerName'>; +} +declare module 'eslint-plugin-flowtype/dist/rules/requireInexactType.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireInexactType'>; +} declare module 'eslint-plugin-flowtype/dist/rules/requireParameterType.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireParameterType'>; } +declare module 'eslint-plugin-flowtype/dist/rules/requireReadonlyReactProps.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireReadonlyReactProps'>; +} declare module 'eslint-plugin-flowtype/dist/rules/requireReturnType.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/requireReturnType'>; } @@ -308,6 +420,9 @@ declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeGenericBracket.js' declare module 'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spaceBeforeTypeColon'>; } +declare module 'eslint-plugin-flowtype/dist/rules/spreadExactType.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/spreadExactType'>; +} declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateFunctions'>; } @@ -326,8 +441,14 @@ declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypeC declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateTypical'>; } +declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables.js' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/evaluateVariables'>; +} +declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing'>; +} declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/index'>; + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing'>; } declare module 'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/rules/typeColonSpacing/reporter'>; @@ -362,8 +483,11 @@ declare module 'eslint-plugin-flowtype/dist/utilities/getTokenAfterParens.js' { declare module 'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/getTokenBeforeParens'>; } +declare module 'eslint-plugin-flowtype/dist/utilities/index' { + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities'>; +} declare module 'eslint-plugin-flowtype/dist/utilities/index.js' { - declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/index'>; + declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities'>; } declare module 'eslint-plugin-flowtype/dist/utilities/isFlowFile.js' { declare module.exports: $Exports<'eslint-plugin-flowtype/dist/utilities/isFlowFile'>; diff --git a/flow-typed/npm/eslint-plugin-import_vx.x.x.js b/flow-typed/npm/eslint-plugin-import_vx.x.x.js index 69bb480d..6d83c2ba 100644 --- a/flow-typed/npm/eslint-plugin-import_vx.x.x.js +++ b/flow-typed/npm/eslint-plugin-import_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 64321e09221e1c285292c6218401b16c -// flow-typed version: <>/eslint-plugin-import_v^2.9.0/flow_v0.66.0 +// flow-typed signature: 35d1f5958822a3d21d13ca4846f30840 +// flow-typed version: <>/eslint-plugin-import_v2.18.2/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -46,6 +46,10 @@ declare module 'eslint-plugin-import/config/stage-0' { declare module.exports: any; } +declare module 'eslint-plugin-import/config/typescript' { + declare module.exports: any; +} + declare module 'eslint-plugin-import/config/warnings' { declare module.exports: any; } @@ -70,7 +74,7 @@ declare module 'eslint-plugin-import/lib/importDeclaration' { declare module.exports: any; } -declare module 'eslint-plugin-import/lib/index' { +declare module 'eslint-plugin-import/lib' { declare module.exports: any; } @@ -78,6 +82,10 @@ declare module 'eslint-plugin-import/lib/rules/default' { declare module.exports: any; } +declare module 'eslint-plugin-import/lib/rules/dynamic-import-chunkname' { + declare module.exports: any; +} + declare module 'eslint-plugin-import/lib/rules/export' { declare module.exports: any; } @@ -134,6 +142,10 @@ declare module 'eslint-plugin-import/lib/rules/no-commonjs' { declare module.exports: any; } +declare module 'eslint-plugin-import/lib/rules/no-cycle' { + declare module.exports: any; +} + declare module 'eslint-plugin-import/lib/rules/no-default-export' { declare module.exports: any; } @@ -174,6 +186,10 @@ declare module 'eslint-plugin-import/lib/rules/no-named-default' { declare module.exports: any; } +declare module 'eslint-plugin-import/lib/rules/no-named-export' { + declare module.exports: any; +} + declare module 'eslint-plugin-import/lib/rules/no-namespace' { declare module.exports: any; } @@ -182,6 +198,10 @@ declare module 'eslint-plugin-import/lib/rules/no-nodejs-modules' { declare module.exports: any; } +declare module 'eslint-plugin-import/lib/rules/no-relative-parent-imports' { + declare module.exports: any; +} + declare module 'eslint-plugin-import/lib/rules/no-restricted-paths' { declare module.exports: any; } @@ -198,6 +218,10 @@ declare module 'eslint-plugin-import/lib/rules/no-unresolved' { declare module.exports: any; } +declare module 'eslint-plugin-import/lib/rules/no-unused-modules' { + declare module.exports: any; +} + declare module 'eslint-plugin-import/lib/rules/no-useless-path-segments' { declare module.exports: any; } @@ -218,7 +242,7 @@ declare module 'eslint-plugin-import/lib/rules/unambiguous' { declare module.exports: any; } -declare module 'eslint-plugin-import/memo-parser/index' { +declare module 'eslint-plugin-import/memo-parser' { declare module.exports: any; } @@ -241,6 +265,9 @@ declare module 'eslint-plugin-import/config/recommended.js' { declare module 'eslint-plugin-import/config/stage-0.js' { declare module.exports: $Exports<'eslint-plugin-import/config/stage-0'>; } +declare module 'eslint-plugin-import/config/typescript.js' { + declare module.exports: $Exports<'eslint-plugin-import/config/typescript'>; +} declare module 'eslint-plugin-import/config/warnings.js' { declare module.exports: $Exports<'eslint-plugin-import/config/warnings'>; } @@ -259,12 +286,18 @@ declare module 'eslint-plugin-import/lib/ExportMap.js' { declare module 'eslint-plugin-import/lib/importDeclaration.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/importDeclaration'>; } +declare module 'eslint-plugin-import/lib/index' { + declare module.exports: $Exports<'eslint-plugin-import/lib'>; +} declare module 'eslint-plugin-import/lib/index.js' { - declare module.exports: $Exports<'eslint-plugin-import/lib/index'>; + declare module.exports: $Exports<'eslint-plugin-import/lib'>; } declare module 'eslint-plugin-import/lib/rules/default.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/default'>; } +declare module 'eslint-plugin-import/lib/rules/dynamic-import-chunkname.js' { + declare module.exports: $Exports<'eslint-plugin-import/lib/rules/dynamic-import-chunkname'>; +} declare module 'eslint-plugin-import/lib/rules/export.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/export'>; } @@ -307,6 +340,9 @@ declare module 'eslint-plugin-import/lib/rules/no-anonymous-default-export.js' { declare module 'eslint-plugin-import/lib/rules/no-commonjs.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-commonjs'>; } +declare module 'eslint-plugin-import/lib/rules/no-cycle.js' { + declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-cycle'>; +} declare module 'eslint-plugin-import/lib/rules/no-default-export.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-default-export'>; } @@ -337,12 +373,18 @@ declare module 'eslint-plugin-import/lib/rules/no-named-as-default.js' { declare module 'eslint-plugin-import/lib/rules/no-named-default.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-default'>; } +declare module 'eslint-plugin-import/lib/rules/no-named-export.js' { + declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-named-export'>; +} declare module 'eslint-plugin-import/lib/rules/no-namespace.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-namespace'>; } declare module 'eslint-plugin-import/lib/rules/no-nodejs-modules.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-nodejs-modules'>; } +declare module 'eslint-plugin-import/lib/rules/no-relative-parent-imports.js' { + declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-relative-parent-imports'>; +} declare module 'eslint-plugin-import/lib/rules/no-restricted-paths.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-restricted-paths'>; } @@ -355,6 +397,9 @@ declare module 'eslint-plugin-import/lib/rules/no-unassigned-import.js' { declare module 'eslint-plugin-import/lib/rules/no-unresolved.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unresolved'>; } +declare module 'eslint-plugin-import/lib/rules/no-unused-modules.js' { + declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-unused-modules'>; +} declare module 'eslint-plugin-import/lib/rules/no-useless-path-segments.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/no-useless-path-segments'>; } @@ -370,6 +415,9 @@ declare module 'eslint-plugin-import/lib/rules/prefer-default-export.js' { declare module 'eslint-plugin-import/lib/rules/unambiguous.js' { declare module.exports: $Exports<'eslint-plugin-import/lib/rules/unambiguous'>; } -declare module 'eslint-plugin-import/memo-parser/index.js' { - declare module.exports: $Exports<'eslint-plugin-import/memo-parser/index'>; +declare module 'eslint-plugin-import/memo-parser/index' { + declare module.exports: $Exports<'eslint-plugin-import/memo-parser'>; +} +declare module 'eslint-plugin-import/memo-parser/index.js' { + declare module.exports: $Exports<'eslint-plugin-import/memo-parser'>; } diff --git a/flow-typed/npm/eslint-plugin-jest_vx.x.x.js b/flow-typed/npm/eslint-plugin-jest_vx.x.x.js index 651db704..3ad59fef 100644 --- a/flow-typed/npm/eslint-plugin-jest_vx.x.x.js +++ b/flow-typed/npm/eslint-plugin-jest_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: d769b476fb315421adc5d162ded812bc -// flow-typed version: <>/eslint-plugin-jest_v^21.13.0/flow_v0.66.0 +// flow-typed signature: 100cedf51d108f2e1dda17b3060fa172 +// flow-typed version: <>/eslint-plugin-jest_v23.0.4/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,255 +22,315 @@ declare module 'eslint-plugin-jest' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'eslint-plugin-jest/processors/__tests__/snapshot-processor.test' { +declare module 'eslint-plugin-jest/lib/__tests__/rules.test' { declare module.exports: any; } -declare module 'eslint-plugin-jest/processors/snapshot-processor' { +declare module 'eslint-plugin-jest/lib' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/consistent-test-it.test' { +declare module 'eslint-plugin-jest/lib/processors/snapshot-processor' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/lowercase-name.test' { +declare module 'eslint-plugin-jest/lib/rules/consistent-test-it' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/no-disabled-tests.test' { +declare module 'eslint-plugin-jest/lib/rules/expect-expect' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/no-focused-tests.test' { +declare module 'eslint-plugin-jest/lib/rules/lowercase-name' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/no-hooks.test' { +declare module 'eslint-plugin-jest/lib/rules/no-alias-methods' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/no-identical-title.test' { +declare module 'eslint-plugin-jest/lib/rules/no-commented-out-tests' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/no-jest-import.test' { +declare module 'eslint-plugin-jest/lib/rules/no-disabled-tests' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/no-large-snapshots.test' { +declare module 'eslint-plugin-jest/lib/rules/no-duplicate-hooks' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/no-test-prefixes.test' { +declare module 'eslint-plugin-jest/lib/rules/no-expect-resolves' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/prefer-expect-assertions.test' { +declare module 'eslint-plugin-jest/lib/rules/no-export' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/prefer-to-be-null.test' { +declare module 'eslint-plugin-jest/lib/rules/no-focused-tests' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/prefer-to-be-undefined.test' { +declare module 'eslint-plugin-jest/lib/rules/no-hooks' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/prefer-to-have-length.test' { +declare module 'eslint-plugin-jest/lib/rules/no-identical-title' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/valid-describe.test' { +declare module 'eslint-plugin-jest/lib/rules/no-if' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/valid-expect-in-promise.test' { +declare module 'eslint-plugin-jest/lib/rules/no-jasmine-globals' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/__tests__/valid-expect.test' { +declare module 'eslint-plugin-jest/lib/rules/no-jest-import' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/consistent-test-it' { +declare module 'eslint-plugin-jest/lib/rules/no-large-snapshots' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/lowercase-name' { +declare module 'eslint-plugin-jest/lib/rules/no-mocks-import' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/no-disabled-tests' { +declare module 'eslint-plugin-jest/lib/rules/no-standalone-expect' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/no-focused-tests' { +declare module 'eslint-plugin-jest/lib/rules/no-test-callback' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/no-hooks' { +declare module 'eslint-plugin-jest/lib/rules/no-test-prefixes' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/no-identical-title' { +declare module 'eslint-plugin-jest/lib/rules/no-test-return-statement' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/no-jest-import' { +declare module 'eslint-plugin-jest/lib/rules/no-truthy-falsy' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/no-large-snapshots' { +declare module 'eslint-plugin-jest/lib/rules/no-try-expect' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/no-test-prefixes' { +declare module 'eslint-plugin-jest/lib/rules/prefer-called-with' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/prefer-expect-assertions' { +declare module 'eslint-plugin-jest/lib/rules/prefer-expect-assertions' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/prefer-to-be-null' { +declare module 'eslint-plugin-jest/lib/rules/prefer-hooks-on-top' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/prefer-to-be-undefined' { +declare module 'eslint-plugin-jest/lib/rules/prefer-inline-snapshots' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/prefer-to-have-length' { +declare module 'eslint-plugin-jest/lib/rules/prefer-spy-on' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/util' { +declare module 'eslint-plugin-jest/lib/rules/prefer-strict-equal' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/valid-describe' { +declare module 'eslint-plugin-jest/lib/rules/prefer-to-be-null' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/valid-expect-in-promise' { +declare module 'eslint-plugin-jest/lib/rules/prefer-to-be-undefined' { declare module.exports: any; } -declare module 'eslint-plugin-jest/rules/valid-expect' { +declare module 'eslint-plugin-jest/lib/rules/prefer-to-contain' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jest/lib/rules/prefer-to-have-length' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jest/lib/rules/prefer-todo' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jest/lib/rules/require-to-throw-message' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jest/lib/rules/require-top-level-describe' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jest/lib/rules/utils' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jest/lib/rules/valid-describe' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jest/lib/rules/valid-expect-in-promise' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jest/lib/rules/valid-expect' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jest/lib/rules/valid-title' { declare module.exports: any; } // Filename aliases -declare module 'eslint-plugin-jest/index' { - declare module.exports: $Exports<'eslint-plugin-jest'>; +declare module 'eslint-plugin-jest/lib/__tests__/rules.test.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/__tests__/rules.test'>; } -declare module 'eslint-plugin-jest/index.js' { - declare module.exports: $Exports<'eslint-plugin-jest'>; +declare module 'eslint-plugin-jest/lib/index' { + declare module.exports: $Exports<'eslint-plugin-jest/lib'>; } -declare module 'eslint-plugin-jest/processors/__tests__/snapshot-processor.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/processors/__tests__/snapshot-processor.test'>; +declare module 'eslint-plugin-jest/lib/index.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib'>; } -declare module 'eslint-plugin-jest/processors/snapshot-processor.js' { - declare module.exports: $Exports<'eslint-plugin-jest/processors/snapshot-processor'>; +declare module 'eslint-plugin-jest/lib/processors/snapshot-processor.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/processors/snapshot-processor'>; } -declare module 'eslint-plugin-jest/rules/__tests__/consistent-test-it.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/consistent-test-it.test'>; +declare module 'eslint-plugin-jest/lib/rules/consistent-test-it.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/consistent-test-it'>; } -declare module 'eslint-plugin-jest/rules/__tests__/lowercase-name.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/lowercase-name.test'>; +declare module 'eslint-plugin-jest/lib/rules/expect-expect.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/expect-expect'>; } -declare module 'eslint-plugin-jest/rules/__tests__/no-disabled-tests.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/no-disabled-tests.test'>; +declare module 'eslint-plugin-jest/lib/rules/lowercase-name.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/lowercase-name'>; } -declare module 'eslint-plugin-jest/rules/__tests__/no-focused-tests.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/no-focused-tests.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-alias-methods.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-alias-methods'>; } -declare module 'eslint-plugin-jest/rules/__tests__/no-hooks.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/no-hooks.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-commented-out-tests.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-commented-out-tests'>; } -declare module 'eslint-plugin-jest/rules/__tests__/no-identical-title.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/no-identical-title.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-disabled-tests.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-disabled-tests'>; } -declare module 'eslint-plugin-jest/rules/__tests__/no-jest-import.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/no-jest-import.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-duplicate-hooks.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-duplicate-hooks'>; } -declare module 'eslint-plugin-jest/rules/__tests__/no-large-snapshots.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/no-large-snapshots.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-expect-resolves.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-expect-resolves'>; } -declare module 'eslint-plugin-jest/rules/__tests__/no-test-prefixes.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/no-test-prefixes.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-export.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-export'>; } -declare module 'eslint-plugin-jest/rules/__tests__/prefer-expect-assertions.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/prefer-expect-assertions.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-focused-tests.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-focused-tests'>; } -declare module 'eslint-plugin-jest/rules/__tests__/prefer-to-be-null.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/prefer-to-be-null.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-hooks.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-hooks'>; } -declare module 'eslint-plugin-jest/rules/__tests__/prefer-to-be-undefined.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/prefer-to-be-undefined.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-identical-title.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-identical-title'>; } -declare module 'eslint-plugin-jest/rules/__tests__/prefer-to-have-length.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/prefer-to-have-length.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-if.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-if'>; } -declare module 'eslint-plugin-jest/rules/__tests__/valid-describe.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/valid-describe.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-jasmine-globals.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-jasmine-globals'>; } -declare module 'eslint-plugin-jest/rules/__tests__/valid-expect-in-promise.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/valid-expect-in-promise.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-jest-import.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-jest-import'>; } -declare module 'eslint-plugin-jest/rules/__tests__/valid-expect.test.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/__tests__/valid-expect.test'>; +declare module 'eslint-plugin-jest/lib/rules/no-large-snapshots.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-large-snapshots'>; } -declare module 'eslint-plugin-jest/rules/consistent-test-it.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/consistent-test-it'>; +declare module 'eslint-plugin-jest/lib/rules/no-mocks-import.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-mocks-import'>; } -declare module 'eslint-plugin-jest/rules/lowercase-name.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/lowercase-name'>; +declare module 'eslint-plugin-jest/lib/rules/no-standalone-expect.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-standalone-expect'>; } -declare module 'eslint-plugin-jest/rules/no-disabled-tests.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/no-disabled-tests'>; +declare module 'eslint-plugin-jest/lib/rules/no-test-callback.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-test-callback'>; } -declare module 'eslint-plugin-jest/rules/no-focused-tests.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/no-focused-tests'>; +declare module 'eslint-plugin-jest/lib/rules/no-test-prefixes.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-test-prefixes'>; } -declare module 'eslint-plugin-jest/rules/no-hooks.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/no-hooks'>; +declare module 'eslint-plugin-jest/lib/rules/no-test-return-statement.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-test-return-statement'>; } -declare module 'eslint-plugin-jest/rules/no-identical-title.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/no-identical-title'>; +declare module 'eslint-plugin-jest/lib/rules/no-truthy-falsy.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-truthy-falsy'>; } -declare module 'eslint-plugin-jest/rules/no-jest-import.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/no-jest-import'>; +declare module 'eslint-plugin-jest/lib/rules/no-try-expect.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/no-try-expect'>; } -declare module 'eslint-plugin-jest/rules/no-large-snapshots.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/no-large-snapshots'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-called-with.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-called-with'>; } -declare module 'eslint-plugin-jest/rules/no-test-prefixes.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/no-test-prefixes'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-expect-assertions.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-expect-assertions'>; } -declare module 'eslint-plugin-jest/rules/prefer-expect-assertions.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/prefer-expect-assertions'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-hooks-on-top.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-hooks-on-top'>; } -declare module 'eslint-plugin-jest/rules/prefer-to-be-null.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/prefer-to-be-null'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-inline-snapshots.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-inline-snapshots'>; } -declare module 'eslint-plugin-jest/rules/prefer-to-be-undefined.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/prefer-to-be-undefined'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-spy-on.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-spy-on'>; } -declare module 'eslint-plugin-jest/rules/prefer-to-have-length.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/prefer-to-have-length'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-strict-equal.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-strict-equal'>; } -declare module 'eslint-plugin-jest/rules/util.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/util'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-to-be-null.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-to-be-null'>; } -declare module 'eslint-plugin-jest/rules/valid-describe.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/valid-describe'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-to-be-undefined.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-to-be-undefined'>; } -declare module 'eslint-plugin-jest/rules/valid-expect-in-promise.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/valid-expect-in-promise'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-to-contain.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-to-contain'>; } -declare module 'eslint-plugin-jest/rules/valid-expect.js' { - declare module.exports: $Exports<'eslint-plugin-jest/rules/valid-expect'>; +declare module 'eslint-plugin-jest/lib/rules/prefer-to-have-length.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-to-have-length'>; +} +declare module 'eslint-plugin-jest/lib/rules/prefer-todo.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/prefer-todo'>; +} +declare module 'eslint-plugin-jest/lib/rules/require-to-throw-message.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/require-to-throw-message'>; +} +declare module 'eslint-plugin-jest/lib/rules/require-top-level-describe.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/require-top-level-describe'>; +} +declare module 'eslint-plugin-jest/lib/rules/utils.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/utils'>; +} +declare module 'eslint-plugin-jest/lib/rules/valid-describe.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/valid-describe'>; +} +declare module 'eslint-plugin-jest/lib/rules/valid-expect-in-promise.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/valid-expect-in-promise'>; +} +declare module 'eslint-plugin-jest/lib/rules/valid-expect.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/valid-expect'>; +} +declare module 'eslint-plugin-jest/lib/rules/valid-title.js' { + declare module.exports: $Exports<'eslint-plugin-jest/lib/rules/valid-title'>; } diff --git a/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js b/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js index 534d6ae6..4390b5b2 100644 --- a/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js +++ b/flow-typed/npm/eslint-plugin-jsx-a11y_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 6b4d706a01880aa6905b82e37c680cce -// flow-typed version: <>/eslint-plugin-jsx-a11y_v^6.0.3/flow_v0.66.0 +// flow-typed signature: 750f6e196696e952abecdc8e96cd14ee +// flow-typed version: <>/eslint-plugin-jsx-a11y_v6.2.3/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -42,6 +42,18 @@ declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock' { declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXTextMock' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/__mocks__/LiteralMock' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/parserOptionsMapper' { declare module.exports: any; } @@ -94,6 +106,10 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/click-events-have-key declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/control-has-associated-label-test' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/heading-has-content-test' { declare module.exports: any; } @@ -114,6 +130,10 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/interactive-supports- declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-associated-control-test' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-for-test' { declare module.exports: any; } @@ -190,6 +210,18 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/attributesComparator-t declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getComputedRole-test' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getExplicitRole-test' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getImplicitRole-test' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getSuggestion-test' { declare module.exports: any; } @@ -218,6 +250,14 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isAbstractRole-test' { declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDOMElement-test' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveElement-test' { declare module.exports: any; } @@ -234,6 +274,22 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveRole-t declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonLiteralProperty-test' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isSemanticRoleElement-test' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayContainChildComponent-test' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayHaveAccessibleLabel-test' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/parserOptionsMapper-test' { declare module.exports: any; } @@ -242,7 +298,7 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/schemas-test' { declare module.exports: any; } -declare module 'eslint-plugin-jsx-a11y/lib/index' { +declare module 'eslint-plugin-jsx-a11y/lib' { declare module.exports: any; } @@ -286,6 +342,10 @@ declare module 'eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events' { declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/lib/rules/control-has-associated-label' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/lib/rules/heading-has-content' { declare module.exports: any; } @@ -306,6 +366,10 @@ declare module 'eslint-plugin-jsx-a11y/lib/rules/interactive-supports-focus' { declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-associated-control' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-for' { declare module.exports: any; } @@ -382,6 +446,14 @@ declare module 'eslint-plugin-jsx-a11y/lib/util/attributesComparator' { declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/lib/util/getComputedRole' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/lib/util/getExplicitRole' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/lib/util/getImplicitRole' { declare module.exports: any; } @@ -474,7 +546,7 @@ declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/img' { declare module.exports: any; } -declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/index' { +declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles' { declare module.exports: any; } @@ -554,6 +626,14 @@ declare module 'eslint-plugin-jsx-a11y/lib/util/isAbstractRole' { declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/lib/util/isDisabledElement' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/lib/util/isDOMElement' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/lib/util/isHiddenFromScreenReader' { declare module.exports: any; } @@ -574,10 +654,26 @@ declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveRole' { declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/lib/util/isNonLiteralProperty' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/lib/util/isPresentationRole' { declare module.exports: any; } +declare module 'eslint-plugin-jsx-a11y/lib/util/isSemanticRoleElement' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/lib/util/mayContainChildComponent' { + declare module.exports: any; +} + +declare module 'eslint-plugin-jsx-a11y/lib/util/mayHaveAccessibleLabel' { + declare module.exports: any; +} + declare module 'eslint-plugin-jsx-a11y/lib/util/schemas' { declare module.exports: any; } @@ -618,6 +714,15 @@ declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXElementMock.js' { declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXExpressionContainerMock'>; } +declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXSpreadAttributeMock'>; +} +declare module 'eslint-plugin-jsx-a11y/__mocks__/JSXTextMock.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/JSXTextMock'>; +} +declare module 'eslint-plugin-jsx-a11y/__mocks__/LiteralMock.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__mocks__/LiteralMock'>; +} declare module 'eslint-plugin-jsx-a11y/__tests__/__util__/parserOptionsMapper.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/__util__/parserOptionsMapper'>; } @@ -657,6 +762,9 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/aria-unsupported-elem declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/click-events-have-key-events-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/click-events-have-key-events-test'>; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/control-has-associated-label-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/control-has-associated-label-test'>; +} declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/heading-has-content-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/heading-has-content-test'>; } @@ -672,6 +780,9 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/img-redundant-alt-tes declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/interactive-supports-focus-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/interactive-supports-focus-test'>; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-associated-control-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-associated-control-test'>; +} declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-for-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/rules/label-has-for-test'>; } @@ -729,6 +840,15 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/rules/tabindex-no-positive- declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/attributesComparator-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/attributesComparator-test'>; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getComputedRole-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getComputedRole-test'>; +} +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getExplicitRole-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getExplicitRole-test'>; +} +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getImplicitRole-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getImplicitRole-test'>; +} declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/getSuggestion-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/getSuggestion-test'>; } @@ -750,6 +870,12 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/implicitRoles/menuitem declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isAbstractRole-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isAbstractRole-test'>; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isDisabledElement-test'>; +} +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isDOMElement-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isDOMElement-test'>; +} declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveElement-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isInteractiveElement-test'>; } @@ -762,14 +888,29 @@ declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveElemen declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveRole-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isNonInteractiveRole-test'>; } +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isNonLiteralProperty-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isNonLiteralProperty-test'>; +} +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/isSemanticRoleElement-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/isSemanticRoleElement-test'>; +} +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayContainChildComponent-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/mayContainChildComponent-test'>; +} +declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/mayHaveAccessibleLabel-test.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/mayHaveAccessibleLabel-test'>; +} declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/parserOptionsMapper-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/parserOptionsMapper-test'>; } declare module 'eslint-plugin-jsx-a11y/__tests__/src/util/schemas-test.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/__tests__/src/util/schemas-test'>; } +declare module 'eslint-plugin-jsx-a11y/lib/index' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib'>; +} declare module 'eslint-plugin-jsx-a11y/lib/index.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/index'>; + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib'>; } declare module 'eslint-plugin-jsx-a11y/lib/rules/accessible-emoji.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/accessible-emoji'>; @@ -801,6 +942,9 @@ declare module 'eslint-plugin-jsx-a11y/lib/rules/aria-unsupported-elements.js' { declare module 'eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/click-events-have-key-events'>; } +declare module 'eslint-plugin-jsx-a11y/lib/rules/control-has-associated-label.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/control-has-associated-label'>; +} declare module 'eslint-plugin-jsx-a11y/lib/rules/heading-has-content.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/heading-has-content'>; } @@ -816,6 +960,9 @@ declare module 'eslint-plugin-jsx-a11y/lib/rules/img-redundant-alt.js' { declare module 'eslint-plugin-jsx-a11y/lib/rules/interactive-supports-focus.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/interactive-supports-focus'>; } +declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-associated-control.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/label-has-associated-control'>; +} declare module 'eslint-plugin-jsx-a11y/lib/rules/label-has-for.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/rules/label-has-for'>; } @@ -873,6 +1020,12 @@ declare module 'eslint-plugin-jsx-a11y/lib/rules/tabindex-no-positive.js' { declare module 'eslint-plugin-jsx-a11y/lib/util/attributesComparator.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/attributesComparator'>; } +declare module 'eslint-plugin-jsx-a11y/lib/util/getComputedRole.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getComputedRole'>; +} +declare module 'eslint-plugin-jsx-a11y/lib/util/getExplicitRole.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getExplicitRole'>; +} declare module 'eslint-plugin-jsx-a11y/lib/util/getImplicitRole.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/getImplicitRole'>; } @@ -942,8 +1095,11 @@ declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/hr.js' { declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/img.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/img'>; } +declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/index' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles'>; +} declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/index.js' { - declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/index'>; + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles'>; } declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/input.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/implicitRoles/input'>; @@ -1002,6 +1158,12 @@ declare module 'eslint-plugin-jsx-a11y/lib/util/implicitRoles/ul.js' { declare module 'eslint-plugin-jsx-a11y/lib/util/isAbstractRole.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isAbstractRole'>; } +declare module 'eslint-plugin-jsx-a11y/lib/util/isDisabledElement.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isDisabledElement'>; +} +declare module 'eslint-plugin-jsx-a11y/lib/util/isDOMElement.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isDOMElement'>; +} declare module 'eslint-plugin-jsx-a11y/lib/util/isHiddenFromScreenReader.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isHiddenFromScreenReader'>; } @@ -1017,9 +1179,21 @@ declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveElement.js' { declare module 'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveRole.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isNonInteractiveRole'>; } +declare module 'eslint-plugin-jsx-a11y/lib/util/isNonLiteralProperty.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isNonLiteralProperty'>; +} declare module 'eslint-plugin-jsx-a11y/lib/util/isPresentationRole.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isPresentationRole'>; } +declare module 'eslint-plugin-jsx-a11y/lib/util/isSemanticRoleElement.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/isSemanticRoleElement'>; +} +declare module 'eslint-plugin-jsx-a11y/lib/util/mayContainChildComponent.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/mayContainChildComponent'>; +} +declare module 'eslint-plugin-jsx-a11y/lib/util/mayHaveAccessibleLabel.js' { + declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/mayHaveAccessibleLabel'>; +} declare module 'eslint-plugin-jsx-a11y/lib/util/schemas.js' { declare module.exports: $Exports<'eslint-plugin-jsx-a11y/lib/util/schemas'>; } diff --git a/flow-typed/npm/eslint-plugin-react_vx.x.x.js b/flow-typed/npm/eslint-plugin-react_vx.x.x.js index 2899f7d0..4bbaa6a3 100644 --- a/flow-typed/npm/eslint-plugin-react_vx.x.x.js +++ b/flow-typed/npm/eslint-plugin-react_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 2958965e42f13cf1d2e0f49ec785328f -// flow-typed version: <>/eslint-plugin-react_v^7.7.0/flow_v0.66.0 +// flow-typed signature: 2fe58e53f903d0bbe77c95a360fba4c2 +// flow-typed version: <>/eslint-plugin-react_v7.16.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -82,6 +82,10 @@ declare module 'eslint-plugin-react/lib/rules/jsx-curly-brace-presence' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/rules/jsx-curly-newline' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/rules/jsx-curly-spacing' { declare module.exports: any; } @@ -98,6 +102,10 @@ declare module 'eslint-plugin-react/lib/rules/jsx-first-prop-new-line' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/rules/jsx-fragments' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/rules/jsx-handler-names' { declare module.exports: any; } @@ -146,6 +154,10 @@ declare module 'eslint-plugin-react/lib/rules/jsx-no-undef' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/rules/jsx-no-useless-fragment' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/rules/jsx-one-expression-per-line' { declare module.exports: any; } @@ -154,6 +166,14 @@ declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces' { + declare module.exports: any; +} + +declare module 'eslint-plugin-react/lib/rules/jsx-props-no-spreading' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/rules/jsx-sort-default-props' { declare module.exports: any; } @@ -262,6 +282,10 @@ declare module 'eslint-plugin-react/lib/rules/no-unknown-property' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/rules/no-unsafe' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/rules/no-unused-prop-types' { declare module.exports: any; } @@ -278,6 +302,10 @@ declare module 'eslint-plugin-react/lib/rules/prefer-es6-class' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/rules/prefer-read-only-props' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/rules/prefer-stateless-function' { declare module.exports: any; } @@ -314,6 +342,14 @@ declare module 'eslint-plugin-react/lib/rules/sort-prop-types' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/rules/state-in-constructor' { + declare module.exports: any; +} + +declare module 'eslint-plugin-react/lib/rules/static-property-placement' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/rules/style-prop-object' { declare module.exports: any; } @@ -334,14 +370,34 @@ declare module 'eslint-plugin-react/lib/util/Components' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/util/defaultProps' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/util/docsUrl' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/util/error' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/util/jsx' { + declare module.exports: any; +} + +declare module 'eslint-plugin-react/lib/util/linkComponents' { + declare module.exports: any; +} + +declare module 'eslint-plugin-react/lib/util/log' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/util/makeNoMethodSetStateRule' { declare module.exports: any; } @@ -354,6 +410,22 @@ declare module 'eslint-plugin-react/lib/util/props' { declare module.exports: any; } +declare module 'eslint-plugin-react/lib/util/propTypes' { + declare module.exports: any; +} + +declare module 'eslint-plugin-react/lib/util/propTypesSort' { + declare module.exports: any; +} + +declare module 'eslint-plugin-react/lib/util/propWrapper' { + declare module.exports: any; +} + +declare module 'eslint-plugin-react/lib/util/usedPropTypes' { + declare module.exports: any; +} + declare module 'eslint-plugin-react/lib/util/variable' { declare module.exports: any; } @@ -414,6 +486,9 @@ declare module 'eslint-plugin-react/lib/rules/jsx-closing-tag-location.js' { declare module 'eslint-plugin-react/lib/rules/jsx-curly-brace-presence.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-brace-presence'>; } +declare module 'eslint-plugin-react/lib/rules/jsx-curly-newline.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-newline'>; +} declare module 'eslint-plugin-react/lib/rules/jsx-curly-spacing.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-curly-spacing'>; } @@ -426,6 +501,9 @@ declare module 'eslint-plugin-react/lib/rules/jsx-filename-extension.js' { declare module 'eslint-plugin-react/lib/rules/jsx-first-prop-new-line.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-first-prop-new-line'>; } +declare module 'eslint-plugin-react/lib/rules/jsx-fragments.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-fragments'>; +} declare module 'eslint-plugin-react/lib/rules/jsx-handler-names.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-handler-names'>; } @@ -462,12 +540,21 @@ declare module 'eslint-plugin-react/lib/rules/jsx-no-target-blank.js' { declare module 'eslint-plugin-react/lib/rules/jsx-no-undef.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-undef'>; } +declare module 'eslint-plugin-react/lib/rules/jsx-no-useless-fragment.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-no-useless-fragment'>; +} declare module 'eslint-plugin-react/lib/rules/jsx-one-expression-per-line.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-one-expression-per-line'>; } declare module 'eslint-plugin-react/lib/rules/jsx-pascal-case.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-pascal-case'>; } +declare module 'eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-props-no-multi-spaces'>; +} +declare module 'eslint-plugin-react/lib/rules/jsx-props-no-spreading.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-props-no-spreading'>; +} declare module 'eslint-plugin-react/lib/rules/jsx-sort-default-props.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/jsx-sort-default-props'>; } @@ -549,6 +636,9 @@ declare module 'eslint-plugin-react/lib/rules/no-unescaped-entities.js' { declare module 'eslint-plugin-react/lib/rules/no-unknown-property.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unknown-property'>; } +declare module 'eslint-plugin-react/lib/rules/no-unsafe.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unsafe'>; +} declare module 'eslint-plugin-react/lib/rules/no-unused-prop-types.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/no-unused-prop-types'>; } @@ -561,6 +651,9 @@ declare module 'eslint-plugin-react/lib/rules/no-will-update-set-state.js' { declare module 'eslint-plugin-react/lib/rules/prefer-es6-class.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-es6-class'>; } +declare module 'eslint-plugin-react/lib/rules/prefer-read-only-props.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-read-only-props'>; +} declare module 'eslint-plugin-react/lib/rules/prefer-stateless-function.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/prefer-stateless-function'>; } @@ -588,6 +681,12 @@ declare module 'eslint-plugin-react/lib/rules/sort-comp.js' { declare module 'eslint-plugin-react/lib/rules/sort-prop-types.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/sort-prop-types'>; } +declare module 'eslint-plugin-react/lib/rules/state-in-constructor.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/rules/state-in-constructor'>; +} +declare module 'eslint-plugin-react/lib/rules/static-property-placement.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/rules/static-property-placement'>; +} declare module 'eslint-plugin-react/lib/rules/style-prop-object.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/rules/style-prop-object'>; } @@ -603,12 +702,27 @@ declare module 'eslint-plugin-react/lib/util/ast.js' { declare module 'eslint-plugin-react/lib/util/Components.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/util/Components'>; } +declare module 'eslint-plugin-react/lib/util/defaultProps.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/util/defaultProps'>; +} declare module 'eslint-plugin-react/lib/util/docsUrl.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/util/docsUrl'>; } +declare module 'eslint-plugin-react/lib/util/error.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/util/error'>; +} declare module 'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/util/getTokenBeforeClosingBracket'>; } +declare module 'eslint-plugin-react/lib/util/jsx.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/util/jsx'>; +} +declare module 'eslint-plugin-react/lib/util/linkComponents.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/util/linkComponents'>; +} +declare module 'eslint-plugin-react/lib/util/log.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/util/log'>; +} declare module 'eslint-plugin-react/lib/util/makeNoMethodSetStateRule.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/util/makeNoMethodSetStateRule'>; } @@ -618,6 +732,18 @@ declare module 'eslint-plugin-react/lib/util/pragma.js' { declare module 'eslint-plugin-react/lib/util/props.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/util/props'>; } +declare module 'eslint-plugin-react/lib/util/propTypes.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/util/propTypes'>; +} +declare module 'eslint-plugin-react/lib/util/propTypesSort.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/util/propTypesSort'>; +} +declare module 'eslint-plugin-react/lib/util/propWrapper.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/util/propWrapper'>; +} +declare module 'eslint-plugin-react/lib/util/usedPropTypes.js' { + declare module.exports: $Exports<'eslint-plugin-react/lib/util/usedPropTypes'>; +} declare module 'eslint-plugin-react/lib/util/variable.js' { declare module.exports: $Exports<'eslint-plugin-react/lib/util/variable'>; } diff --git a/flow-typed/npm/eslint_vx.x.x.js b/flow-typed/npm/eslint_vx.x.x.js index 2777e35a..279240a5 100644 --- a/flow-typed/npm/eslint_vx.x.x.js +++ b/flow-typed/npm/eslint_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: a3acba03b0fccb7470394e3d61ad8ed7 -// flow-typed version: <>/eslint_v^4.18.2/flow_v0.66.0 +// flow-typed signature: 31ddc4621e3b43f217e251867068f51c +// flow-typed version: <>/eslint_v5.16.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -50,7 +50,7 @@ declare module 'eslint/lib/api' { declare module.exports: any; } -declare module 'eslint/lib/ast-utils' { +declare module 'eslint/lib/built-in-rules-index' { declare module.exports: any; } @@ -130,10 +130,6 @@ declare module 'eslint/lib/config/plugins' { declare module.exports: any; } -declare module 'eslint/lib/file-finder' { - declare module.exports: any; -} - declare module 'eslint/lib/formatters/checkstyle' { declare module.exports: any; } @@ -154,6 +150,10 @@ declare module 'eslint/lib/formatters/jslint-xml' { declare module.exports: any; } +declare module 'eslint/lib/formatters/json-with-metadata' { + declare module.exports: any; +} + declare module 'eslint/lib/formatters/json' { declare module.exports: any; } @@ -182,10 +182,6 @@ declare module 'eslint/lib/formatters/visualstudio' { declare module.exports: any; } -declare module 'eslint/lib/ignored-paths' { - declare module.exports: any; -} - declare module 'eslint/lib/linter' { declare module.exports: any; } @@ -194,18 +190,10 @@ declare module 'eslint/lib/load-rules' { declare module.exports: any; } -declare module 'eslint/lib/logging' { - declare module.exports: any; -} - declare module 'eslint/lib/options' { declare module.exports: any; } -declare module 'eslint/lib/report-translator' { - declare module.exports: any; -} - declare module 'eslint/lib/rules' { declare module.exports: any; } @@ -430,6 +418,10 @@ declare module 'eslint/lib/rules/lines-between-class-members' { declare module.exports: any; } +declare module 'eslint/lib/rules/max-classes-per-file' { + declare module.exports: any; +} + declare module 'eslint/lib/rules/max-depth' { declare module.exports: any; } @@ -438,6 +430,10 @@ declare module 'eslint/lib/rules/max-len' { declare module.exports: any; } +declare module 'eslint/lib/rules/max-lines-per-function' { + declare module.exports: any; +} + declare module 'eslint/lib/rules/max-lines' { declare module.exports: any; } @@ -494,6 +490,10 @@ declare module 'eslint/lib/rules/no-array-constructor' { declare module.exports: any; } +declare module 'eslint/lib/rules/no-async-promise-executor' { + declare module.exports: any; +} + declare module 'eslint/lib/rules/no-await-in-loop' { declare module.exports: any; } @@ -718,6 +718,10 @@ declare module 'eslint/lib/rules/no-magic-numbers' { declare module.exports: any; } +declare module 'eslint/lib/rules/no-misleading-character-class' { + declare module.exports: any; +} + declare module 'eslint/lib/rules/no-mixed-operators' { declare module.exports: any; } @@ -982,6 +986,10 @@ declare module 'eslint/lib/rules/no-useless-call' { declare module.exports: any; } +declare module 'eslint/lib/rules/no-useless-catch' { + declare module.exports: any; +} + declare module 'eslint/lib/rules/no-useless-computed-key' { declare module.exports: any; } @@ -1082,10 +1090,18 @@ declare module 'eslint/lib/rules/prefer-destructuring' { declare module.exports: any; } +declare module 'eslint/lib/rules/prefer-named-capture-group' { + declare module.exports: any; +} + declare module 'eslint/lib/rules/prefer-numeric-literals' { declare module.exports: any; } +declare module 'eslint/lib/rules/prefer-object-spread' { + declare module.exports: any; +} + declare module 'eslint/lib/rules/prefer-promise-reject-errors' { declare module.exports: any; } @@ -1118,6 +1134,10 @@ declare module 'eslint/lib/rules/radix' { declare module.exports: any; } +declare module 'eslint/lib/rules/require-atomic-updates' { + declare module.exports: any; +} + declare module 'eslint/lib/rules/require-await' { declare module.exports: any; } @@ -1126,6 +1146,10 @@ declare module 'eslint/lib/rules/require-jsdoc' { declare module.exports: any; } +declare module 'eslint/lib/rules/require-unicode-regexp' { + declare module.exports: any; +} + declare module 'eslint/lib/rules/require-yield' { declare module.exports: any; } @@ -1242,10 +1266,6 @@ declare module 'eslint/lib/testers/rule-tester' { declare module.exports: any; } -declare module 'eslint/lib/timing' { - declare module.exports: any; -} - declare module 'eslint/lib/token-store/backward-token-comment-cursor' { declare module.exports: any; } @@ -1278,7 +1298,7 @@ declare module 'eslint/lib/token-store/forward-token-cursor' { declare module.exports: any; } -declare module 'eslint/lib/token-store/index' { +declare module 'eslint/lib/token-store' { declare module.exports: any; } @@ -1306,11 +1326,23 @@ declare module 'eslint/lib/util/apply-disable-directives' { declare module.exports: any; } +declare module 'eslint/lib/util/ast-utils' { + declare module.exports: any; +} + +declare module 'eslint/lib/util/config-comment-parser' { + declare module.exports: any; +} + +declare module 'eslint/lib/util/file-finder' { + declare module.exports: any; +} + declare module 'eslint/lib/util/fix-tracker' { declare module.exports: any; } -declare module 'eslint/lib/util/glob-util' { +declare module 'eslint/lib/util/glob-utils' { declare module.exports: any; } @@ -1322,6 +1354,10 @@ declare module 'eslint/lib/util/hash' { declare module.exports: any; } +declare module 'eslint/lib/util/ignored-paths' { + declare module.exports: any; +} + declare module 'eslint/lib/util/interpolate' { declare module.exports: any; } @@ -1330,6 +1366,14 @@ declare module 'eslint/lib/util/keywords' { declare module.exports: any; } +declare module 'eslint/lib/util/lint-result-cache' { + declare module.exports: any; +} + +declare module 'eslint/lib/util/logging' { + declare module.exports: any; +} + declare module 'eslint/lib/util/module-resolver' { declare module.exports: any; } @@ -1342,11 +1386,11 @@ declare module 'eslint/lib/util/node-event-generator' { declare module.exports: any; } -declare module 'eslint/lib/util/npm-util' { +declare module 'eslint/lib/util/npm-utils' { declare module.exports: any; } -declare module 'eslint/lib/util/path-util' { +declare module 'eslint/lib/util/path-utils' { declare module.exports: any; } @@ -1354,6 +1398,10 @@ declare module 'eslint/lib/util/patterns/letters' { declare module.exports: any; } +declare module 'eslint/lib/util/report-translator' { + declare module.exports: any; +} + declare module 'eslint/lib/util/rule-fixer' { declare module.exports: any; } @@ -1366,7 +1414,7 @@ declare module 'eslint/lib/util/source-code-fixer' { declare module.exports: any; } -declare module 'eslint/lib/util/source-code-util' { +declare module 'eslint/lib/util/source-code-utils' { declare module.exports: any; } @@ -1374,10 +1422,34 @@ declare module 'eslint/lib/util/source-code' { declare module.exports: any; } +declare module 'eslint/lib/util/timing' { + declare module.exports: any; +} + declare module 'eslint/lib/util/traverser' { declare module.exports: any; } +declare module 'eslint/lib/util/unicode' { + declare module.exports: any; +} + +declare module 'eslint/lib/util/unicode/is-combining-character' { + declare module.exports: any; +} + +declare module 'eslint/lib/util/unicode/is-emoji-modifier' { + declare module.exports: any; +} + +declare module 'eslint/lib/util/unicode/is-regional-indicator-symbol' { + declare module.exports: any; +} + +declare module 'eslint/lib/util/unicode/is-surrogate-pair' { + declare module.exports: any; +} + declare module 'eslint/lib/util/xml-escape' { declare module.exports: any; } @@ -1404,8 +1476,8 @@ declare module 'eslint/conf/eslint-recommended.js' { declare module 'eslint/lib/api.js' { declare module.exports: $Exports<'eslint/lib/api'>; } -declare module 'eslint/lib/ast-utils.js' { - declare module.exports: $Exports<'eslint/lib/ast-utils'>; +declare module 'eslint/lib/built-in-rules-index.js' { + declare module.exports: $Exports<'eslint/lib/built-in-rules-index'>; } declare module 'eslint/lib/cli-engine.js' { declare module.exports: $Exports<'eslint/lib/cli-engine'>; @@ -1464,9 +1536,6 @@ declare module 'eslint/lib/config/environments.js' { declare module 'eslint/lib/config/plugins.js' { declare module.exports: $Exports<'eslint/lib/config/plugins'>; } -declare module 'eslint/lib/file-finder.js' { - declare module.exports: $Exports<'eslint/lib/file-finder'>; -} declare module 'eslint/lib/formatters/checkstyle.js' { declare module.exports: $Exports<'eslint/lib/formatters/checkstyle'>; } @@ -1482,6 +1551,9 @@ declare module 'eslint/lib/formatters/html.js' { declare module 'eslint/lib/formatters/jslint-xml.js' { declare module.exports: $Exports<'eslint/lib/formatters/jslint-xml'>; } +declare module 'eslint/lib/formatters/json-with-metadata.js' { + declare module.exports: $Exports<'eslint/lib/formatters/json-with-metadata'>; +} declare module 'eslint/lib/formatters/json.js' { declare module.exports: $Exports<'eslint/lib/formatters/json'>; } @@ -1503,24 +1575,15 @@ declare module 'eslint/lib/formatters/unix.js' { declare module 'eslint/lib/formatters/visualstudio.js' { declare module.exports: $Exports<'eslint/lib/formatters/visualstudio'>; } -declare module 'eslint/lib/ignored-paths.js' { - declare module.exports: $Exports<'eslint/lib/ignored-paths'>; -} declare module 'eslint/lib/linter.js' { declare module.exports: $Exports<'eslint/lib/linter'>; } declare module 'eslint/lib/load-rules.js' { declare module.exports: $Exports<'eslint/lib/load-rules'>; } -declare module 'eslint/lib/logging.js' { - declare module.exports: $Exports<'eslint/lib/logging'>; -} declare module 'eslint/lib/options.js' { declare module.exports: $Exports<'eslint/lib/options'>; } -declare module 'eslint/lib/report-translator.js' { - declare module.exports: $Exports<'eslint/lib/report-translator'>; -} declare module 'eslint/lib/rules.js' { declare module.exports: $Exports<'eslint/lib/rules'>; } @@ -1689,12 +1752,18 @@ declare module 'eslint/lib/rules/lines-around-directive.js' { declare module 'eslint/lib/rules/lines-between-class-members.js' { declare module.exports: $Exports<'eslint/lib/rules/lines-between-class-members'>; } +declare module 'eslint/lib/rules/max-classes-per-file.js' { + declare module.exports: $Exports<'eslint/lib/rules/max-classes-per-file'>; +} declare module 'eslint/lib/rules/max-depth.js' { declare module.exports: $Exports<'eslint/lib/rules/max-depth'>; } declare module 'eslint/lib/rules/max-len.js' { declare module.exports: $Exports<'eslint/lib/rules/max-len'>; } +declare module 'eslint/lib/rules/max-lines-per-function.js' { + declare module.exports: $Exports<'eslint/lib/rules/max-lines-per-function'>; +} declare module 'eslint/lib/rules/max-lines.js' { declare module.exports: $Exports<'eslint/lib/rules/max-lines'>; } @@ -1737,6 +1806,9 @@ declare module 'eslint/lib/rules/no-alert.js' { declare module 'eslint/lib/rules/no-array-constructor.js' { declare module.exports: $Exports<'eslint/lib/rules/no-array-constructor'>; } +declare module 'eslint/lib/rules/no-async-promise-executor.js' { + declare module.exports: $Exports<'eslint/lib/rules/no-async-promise-executor'>; +} declare module 'eslint/lib/rules/no-await-in-loop.js' { declare module.exports: $Exports<'eslint/lib/rules/no-await-in-loop'>; } @@ -1905,6 +1977,9 @@ declare module 'eslint/lib/rules/no-loop-func.js' { declare module 'eslint/lib/rules/no-magic-numbers.js' { declare module.exports: $Exports<'eslint/lib/rules/no-magic-numbers'>; } +declare module 'eslint/lib/rules/no-misleading-character-class.js' { + declare module.exports: $Exports<'eslint/lib/rules/no-misleading-character-class'>; +} declare module 'eslint/lib/rules/no-mixed-operators.js' { declare module.exports: $Exports<'eslint/lib/rules/no-mixed-operators'>; } @@ -2103,6 +2178,9 @@ declare module 'eslint/lib/rules/no-use-before-define.js' { declare module 'eslint/lib/rules/no-useless-call.js' { declare module.exports: $Exports<'eslint/lib/rules/no-useless-call'>; } +declare module 'eslint/lib/rules/no-useless-catch.js' { + declare module.exports: $Exports<'eslint/lib/rules/no-useless-catch'>; +} declare module 'eslint/lib/rules/no-useless-computed-key.js' { declare module.exports: $Exports<'eslint/lib/rules/no-useless-computed-key'>; } @@ -2178,9 +2256,15 @@ declare module 'eslint/lib/rules/prefer-const.js' { declare module 'eslint/lib/rules/prefer-destructuring.js' { declare module.exports: $Exports<'eslint/lib/rules/prefer-destructuring'>; } +declare module 'eslint/lib/rules/prefer-named-capture-group.js' { + declare module.exports: $Exports<'eslint/lib/rules/prefer-named-capture-group'>; +} declare module 'eslint/lib/rules/prefer-numeric-literals.js' { declare module.exports: $Exports<'eslint/lib/rules/prefer-numeric-literals'>; } +declare module 'eslint/lib/rules/prefer-object-spread.js' { + declare module.exports: $Exports<'eslint/lib/rules/prefer-object-spread'>; +} declare module 'eslint/lib/rules/prefer-promise-reject-errors.js' { declare module.exports: $Exports<'eslint/lib/rules/prefer-promise-reject-errors'>; } @@ -2205,12 +2289,18 @@ declare module 'eslint/lib/rules/quotes.js' { declare module 'eslint/lib/rules/radix.js' { declare module.exports: $Exports<'eslint/lib/rules/radix'>; } +declare module 'eslint/lib/rules/require-atomic-updates.js' { + declare module.exports: $Exports<'eslint/lib/rules/require-atomic-updates'>; +} declare module 'eslint/lib/rules/require-await.js' { declare module.exports: $Exports<'eslint/lib/rules/require-await'>; } declare module 'eslint/lib/rules/require-jsdoc.js' { declare module.exports: $Exports<'eslint/lib/rules/require-jsdoc'>; } +declare module 'eslint/lib/rules/require-unicode-regexp.js' { + declare module.exports: $Exports<'eslint/lib/rules/require-unicode-regexp'>; +} declare module 'eslint/lib/rules/require-yield.js' { declare module.exports: $Exports<'eslint/lib/rules/require-yield'>; } @@ -2298,9 +2388,6 @@ declare module 'eslint/lib/rules/yoda.js' { declare module 'eslint/lib/testers/rule-tester.js' { declare module.exports: $Exports<'eslint/lib/testers/rule-tester'>; } -declare module 'eslint/lib/timing.js' { - declare module.exports: $Exports<'eslint/lib/timing'>; -} declare module 'eslint/lib/token-store/backward-token-comment-cursor.js' { declare module.exports: $Exports<'eslint/lib/token-store/backward-token-comment-cursor'>; } @@ -2325,8 +2412,11 @@ declare module 'eslint/lib/token-store/forward-token-comment-cursor.js' { declare module 'eslint/lib/token-store/forward-token-cursor.js' { declare module.exports: $Exports<'eslint/lib/token-store/forward-token-cursor'>; } +declare module 'eslint/lib/token-store/index' { + declare module.exports: $Exports<'eslint/lib/token-store'>; +} declare module 'eslint/lib/token-store/index.js' { - declare module.exports: $Exports<'eslint/lib/token-store/index'>; + declare module.exports: $Exports<'eslint/lib/token-store'>; } declare module 'eslint/lib/token-store/limit-cursor.js' { declare module.exports: $Exports<'eslint/lib/token-store/limit-cursor'>; @@ -2346,11 +2436,20 @@ declare module 'eslint/lib/util/ajv.js' { declare module 'eslint/lib/util/apply-disable-directives.js' { declare module.exports: $Exports<'eslint/lib/util/apply-disable-directives'>; } +declare module 'eslint/lib/util/ast-utils.js' { + declare module.exports: $Exports<'eslint/lib/util/ast-utils'>; +} +declare module 'eslint/lib/util/config-comment-parser.js' { + declare module.exports: $Exports<'eslint/lib/util/config-comment-parser'>; +} +declare module 'eslint/lib/util/file-finder.js' { + declare module.exports: $Exports<'eslint/lib/util/file-finder'>; +} declare module 'eslint/lib/util/fix-tracker.js' { declare module.exports: $Exports<'eslint/lib/util/fix-tracker'>; } -declare module 'eslint/lib/util/glob-util.js' { - declare module.exports: $Exports<'eslint/lib/util/glob-util'>; +declare module 'eslint/lib/util/glob-utils.js' { + declare module.exports: $Exports<'eslint/lib/util/glob-utils'>; } declare module 'eslint/lib/util/glob.js' { declare module.exports: $Exports<'eslint/lib/util/glob'>; @@ -2358,12 +2457,21 @@ declare module 'eslint/lib/util/glob.js' { declare module 'eslint/lib/util/hash.js' { declare module.exports: $Exports<'eslint/lib/util/hash'>; } +declare module 'eslint/lib/util/ignored-paths.js' { + declare module.exports: $Exports<'eslint/lib/util/ignored-paths'>; +} declare module 'eslint/lib/util/interpolate.js' { declare module.exports: $Exports<'eslint/lib/util/interpolate'>; } declare module 'eslint/lib/util/keywords.js' { declare module.exports: $Exports<'eslint/lib/util/keywords'>; } +declare module 'eslint/lib/util/lint-result-cache.js' { + declare module.exports: $Exports<'eslint/lib/util/lint-result-cache'>; +} +declare module 'eslint/lib/util/logging.js' { + declare module.exports: $Exports<'eslint/lib/util/logging'>; +} declare module 'eslint/lib/util/module-resolver.js' { declare module.exports: $Exports<'eslint/lib/util/module-resolver'>; } @@ -2373,15 +2481,18 @@ declare module 'eslint/lib/util/naming.js' { declare module 'eslint/lib/util/node-event-generator.js' { declare module.exports: $Exports<'eslint/lib/util/node-event-generator'>; } -declare module 'eslint/lib/util/npm-util.js' { - declare module.exports: $Exports<'eslint/lib/util/npm-util'>; +declare module 'eslint/lib/util/npm-utils.js' { + declare module.exports: $Exports<'eslint/lib/util/npm-utils'>; } -declare module 'eslint/lib/util/path-util.js' { - declare module.exports: $Exports<'eslint/lib/util/path-util'>; +declare module 'eslint/lib/util/path-utils.js' { + declare module.exports: $Exports<'eslint/lib/util/path-utils'>; } declare module 'eslint/lib/util/patterns/letters.js' { declare module.exports: $Exports<'eslint/lib/util/patterns/letters'>; } +declare module 'eslint/lib/util/report-translator.js' { + declare module.exports: $Exports<'eslint/lib/util/report-translator'>; +} declare module 'eslint/lib/util/rule-fixer.js' { declare module.exports: $Exports<'eslint/lib/util/rule-fixer'>; } @@ -2391,15 +2502,36 @@ declare module 'eslint/lib/util/safe-emitter.js' { declare module 'eslint/lib/util/source-code-fixer.js' { declare module.exports: $Exports<'eslint/lib/util/source-code-fixer'>; } -declare module 'eslint/lib/util/source-code-util.js' { - declare module.exports: $Exports<'eslint/lib/util/source-code-util'>; +declare module 'eslint/lib/util/source-code-utils.js' { + declare module.exports: $Exports<'eslint/lib/util/source-code-utils'>; } declare module 'eslint/lib/util/source-code.js' { declare module.exports: $Exports<'eslint/lib/util/source-code'>; } +declare module 'eslint/lib/util/timing.js' { + declare module.exports: $Exports<'eslint/lib/util/timing'>; +} declare module 'eslint/lib/util/traverser.js' { declare module.exports: $Exports<'eslint/lib/util/traverser'>; } +declare module 'eslint/lib/util/unicode/index' { + declare module.exports: $Exports<'eslint/lib/util/unicode'>; +} +declare module 'eslint/lib/util/unicode/index.js' { + declare module.exports: $Exports<'eslint/lib/util/unicode'>; +} +declare module 'eslint/lib/util/unicode/is-combining-character.js' { + declare module.exports: $Exports<'eslint/lib/util/unicode/is-combining-character'>; +} +declare module 'eslint/lib/util/unicode/is-emoji-modifier.js' { + declare module.exports: $Exports<'eslint/lib/util/unicode/is-emoji-modifier'>; +} +declare module 'eslint/lib/util/unicode/is-regional-indicator-symbol.js' { + declare module.exports: $Exports<'eslint/lib/util/unicode/is-regional-indicator-symbol'>; +} +declare module 'eslint/lib/util/unicode/is-surrogate-pair.js' { + declare module.exports: $Exports<'eslint/lib/util/unicode/is-surrogate-pair'>; +} declare module 'eslint/lib/util/xml-escape.js' { declare module.exports: $Exports<'eslint/lib/util/xml-escape'>; } diff --git a/flow-typed/npm/ethereum-ens_vx.x.x.js b/flow-typed/npm/ethereum-ens_vx.x.x.js new file mode 100644 index 00000000..9998e19f --- /dev/null +++ b/flow-typed/npm/ethereum-ens_vx.x.x.js @@ -0,0 +1,52 @@ +// flow-typed signature: 4f191da9c1b2bcc9b2bc0a09bf97bae4 +// flow-typed version: <>/ethereum-ens_v0.7.8/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'ethereum-ens' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'ethereum-ens' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'ethereum-ens/src/abi' { + declare module.exports: any; +} + +declare module 'ethereum-ens/src/utils' { + declare module.exports: any; +} + +declare module 'ethereum-ens/test/test' { + declare module.exports: any; +} + +// Filename aliases +declare module 'ethereum-ens/index' { + declare module.exports: $Exports<'ethereum-ens'>; +} +declare module 'ethereum-ens/index.js' { + declare module.exports: $Exports<'ethereum-ens'>; +} +declare module 'ethereum-ens/src/abi.js' { + declare module.exports: $Exports<'ethereum-ens/src/abi'>; +} +declare module 'ethereum-ens/src/utils.js' { + declare module.exports: $Exports<'ethereum-ens/src/utils'>; +} +declare module 'ethereum-ens/test/test.js' { + declare module.exports: $Exports<'ethereum-ens/test/test'>; +} diff --git a/flow-typed/npm/ethereumjs-abi_vx.x.x.js b/flow-typed/npm/ethereumjs-abi_vx.x.x.js new file mode 100644 index 00000000..4ad4a34b --- /dev/null +++ b/flow-typed/npm/ethereumjs-abi_vx.x.x.js @@ -0,0 +1,51 @@ +// flow-typed signature: b763be656561225bc1e468340ec4af36 +// flow-typed version: <>/ethereumjs-abi_v0.6.8/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'ethereumjs-abi' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'ethereumjs-abi' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'ethereumjs-abi/lib' { + declare module.exports: any; +} + +declare module 'ethereumjs-abi/test' { + declare module.exports: any; +} + +// Filename aliases +declare module 'ethereumjs-abi/index' { + declare module.exports: $Exports<'ethereumjs-abi'>; +} +declare module 'ethereumjs-abi/index.js' { + declare module.exports: $Exports<'ethereumjs-abi'>; +} +declare module 'ethereumjs-abi/lib/index' { + declare module.exports: $Exports<'ethereumjs-abi/lib'>; +} +declare module 'ethereumjs-abi/lib/index.js' { + declare module.exports: $Exports<'ethereumjs-abi/lib'>; +} +declare module 'ethereumjs-abi/test/index' { + declare module.exports: $Exports<'ethereumjs-abi/test'>; +} +declare module 'ethereumjs-abi/test/index.js' { + declare module.exports: $Exports<'ethereumjs-abi/test'>; +} diff --git a/flow-typed/npm/extract-text-webpack-plugin_vx.x.x.js b/flow-typed/npm/extract-text-webpack-plugin_vx.x.x.js index 5ac3fa97..8d3b1548 100644 --- a/flow-typed/npm/extract-text-webpack-plugin_vx.x.x.js +++ b/flow-typed/npm/extract-text-webpack-plugin_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 50a757214c1f7d72e1e285336d91b8ab -// flow-typed version: <>/extract-text-webpack-plugin_v^4.0.0-beta.0/flow_v0.66.0 +// flow-typed signature: fd5f43aa52855989033745a6dc710ba4 +// flow-typed version: <>/extract-text-webpack-plugin_v^4.0.0-beta.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -26,7 +26,7 @@ declare module 'extract-text-webpack-plugin/dist/cjs' { declare module.exports: any; } -declare module 'extract-text-webpack-plugin/dist/index' { +declare module 'extract-text-webpack-plugin/dist' { declare module.exports: any; } @@ -54,8 +54,11 @@ declare module 'extract-text-webpack-plugin/dist/loader' { declare module 'extract-text-webpack-plugin/dist/cjs.js' { declare module.exports: $Exports<'extract-text-webpack-plugin/dist/cjs'>; } +declare module 'extract-text-webpack-plugin/dist/index' { + declare module.exports: $Exports<'extract-text-webpack-plugin/dist'>; +} declare module 'extract-text-webpack-plugin/dist/index.js' { - declare module.exports: $Exports<'extract-text-webpack-plugin/dist/index'>; + declare module.exports: $Exports<'extract-text-webpack-plugin/dist'>; } declare module 'extract-text-webpack-plugin/dist/lib/ExtractedModule.js' { declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/ExtractedModule'>; diff --git a/flow-typed/npm/file-loader_vx.x.x.js b/flow-typed/npm/file-loader_vx.x.x.js index 9658476e..0e43ff0e 100644 --- a/flow-typed/npm/file-loader_vx.x.x.js +++ b/flow-typed/npm/file-loader_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 18371f728c9fea4e9636ed2c29bbe67f -// flow-typed version: <>/file-loader_v^1.1.11/flow_v0.66.0 +// flow-typed signature: fa8d0544cabd5ba3b83bfd3117dbb40e +// flow-typed version: <>/file-loader_v4.2.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -26,7 +26,7 @@ declare module 'file-loader/dist/cjs' { declare module.exports: any; } -declare module 'file-loader/dist/index' { +declare module 'file-loader/dist' { declare module.exports: any; } @@ -34,6 +34,9 @@ declare module 'file-loader/dist/index' { declare module 'file-loader/dist/cjs.js' { declare module.exports: $Exports<'file-loader/dist/cjs'>; } -declare module 'file-loader/dist/index.js' { - declare module.exports: $Exports<'file-loader/dist/index'>; +declare module 'file-loader/dist/index' { + declare module.exports: $Exports<'file-loader/dist'>; +} +declare module 'file-loader/dist/index.js' { + declare module.exports: $Exports<'file-loader/dist'>; } diff --git a/flow-typed/npm/flow-bin_v0.x.x.js b/flow-typed/npm/flow-bin_v0.x.x.js index c538e208..fda1f290 100644 --- a/flow-typed/npm/flow-bin_v0.x.x.js +++ b/flow-typed/npm/flow-bin_v0.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 6a5610678d4b01e13bbfbbc62bdaf583 -// flow-typed version: 3817bc6980/flow-bin_v0.x.x/flow_>=v0.25.x +// flow-typed signature: 28fdff7f110e1c75efab63ff205dda30 +// flow-typed version: c6154227d1/flow-bin_v0.x.x/flow_>=v0.104.x declare module "flow-bin" { declare module.exports: string; diff --git a/flow-typed/npm/fs-extra_vx.x.x.js b/flow-typed/npm/fs-extra_vx.x.x.js index 174aa158..2373b466 100644 --- a/flow-typed/npm/fs-extra_vx.x.x.js +++ b/flow-typed/npm/fs-extra_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 688455453a87196561429877021ec2ce -// flow-typed version: <>/fs-extra_v^5.0.0/flow_v0.66.0 +// flow-typed signature: 1f85b07ff6881b7109015dc3562f578b +// flow-typed version: <>/fs-extra_v8.1.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -26,7 +26,7 @@ declare module 'fs-extra/lib/copy-sync/copy-sync' { declare module.exports: any; } -declare module 'fs-extra/lib/copy-sync/index' { +declare module 'fs-extra/lib/copy-sync' { declare module.exports: any; } @@ -34,11 +34,11 @@ declare module 'fs-extra/lib/copy/copy' { declare module.exports: any; } -declare module 'fs-extra/lib/copy/index' { +declare module 'fs-extra/lib/copy' { declare module.exports: any; } -declare module 'fs-extra/lib/empty/index' { +declare module 'fs-extra/lib/empty' { declare module.exports: any; } @@ -46,7 +46,7 @@ declare module 'fs-extra/lib/ensure/file' { declare module.exports: any; } -declare module 'fs-extra/lib/ensure/index' { +declare module 'fs-extra/lib/ensure' { declare module.exports: any; } @@ -66,15 +66,15 @@ declare module 'fs-extra/lib/ensure/symlink' { declare module.exports: any; } -declare module 'fs-extra/lib/fs/index' { +declare module 'fs-extra/lib/fs' { declare module.exports: any; } -declare module 'fs-extra/lib/index' { +declare module 'fs-extra/lib' { declare module.exports: any; } -declare module 'fs-extra/lib/json/index' { +declare module 'fs-extra/lib/json' { declare module.exports: any; } @@ -90,7 +90,7 @@ declare module 'fs-extra/lib/json/output-json' { declare module.exports: any; } -declare module 'fs-extra/lib/mkdirs/index' { +declare module 'fs-extra/lib/mkdirs' { declare module.exports: any; } @@ -106,23 +106,31 @@ declare module 'fs-extra/lib/mkdirs/win32' { declare module.exports: any; } -declare module 'fs-extra/lib/move-sync/index' { +declare module 'fs-extra/lib/move-sync' { declare module.exports: any; } -declare module 'fs-extra/lib/move/index' { +declare module 'fs-extra/lib/move-sync/move-sync' { declare module.exports: any; } -declare module 'fs-extra/lib/output/index' { +declare module 'fs-extra/lib/move' { declare module.exports: any; } -declare module 'fs-extra/lib/path-exists/index' { +declare module 'fs-extra/lib/move/move' { declare module.exports: any; } -declare module 'fs-extra/lib/remove/index' { +declare module 'fs-extra/lib/output' { + declare module.exports: any; +} + +declare module 'fs-extra/lib/path-exists' { + declare module.exports: any; +} + +declare module 'fs-extra/lib/remove' { declare module.exports: any; } @@ -130,11 +138,11 @@ declare module 'fs-extra/lib/remove/rimraf' { declare module.exports: any; } -declare module 'fs-extra/lib/util/assign' { +declare module 'fs-extra/lib/util/buffer' { declare module.exports: any; } -declare module 'fs-extra/lib/util/buffer' { +declare module 'fs-extra/lib/util/stat' { declare module.exports: any; } @@ -146,23 +154,35 @@ declare module 'fs-extra/lib/util/utimes' { declare module 'fs-extra/lib/copy-sync/copy-sync.js' { declare module.exports: $Exports<'fs-extra/lib/copy-sync/copy-sync'>; } +declare module 'fs-extra/lib/copy-sync/index' { + declare module.exports: $Exports<'fs-extra/lib/copy-sync'>; +} declare module 'fs-extra/lib/copy-sync/index.js' { - declare module.exports: $Exports<'fs-extra/lib/copy-sync/index'>; + declare module.exports: $Exports<'fs-extra/lib/copy-sync'>; } declare module 'fs-extra/lib/copy/copy.js' { declare module.exports: $Exports<'fs-extra/lib/copy/copy'>; } +declare module 'fs-extra/lib/copy/index' { + declare module.exports: $Exports<'fs-extra/lib/copy'>; +} declare module 'fs-extra/lib/copy/index.js' { - declare module.exports: $Exports<'fs-extra/lib/copy/index'>; + declare module.exports: $Exports<'fs-extra/lib/copy'>; +} +declare module 'fs-extra/lib/empty/index' { + declare module.exports: $Exports<'fs-extra/lib/empty'>; } declare module 'fs-extra/lib/empty/index.js' { - declare module.exports: $Exports<'fs-extra/lib/empty/index'>; + declare module.exports: $Exports<'fs-extra/lib/empty'>; } declare module 'fs-extra/lib/ensure/file.js' { declare module.exports: $Exports<'fs-extra/lib/ensure/file'>; } +declare module 'fs-extra/lib/ensure/index' { + declare module.exports: $Exports<'fs-extra/lib/ensure'>; +} declare module 'fs-extra/lib/ensure/index.js' { - declare module.exports: $Exports<'fs-extra/lib/ensure/index'>; + declare module.exports: $Exports<'fs-extra/lib/ensure'>; } declare module 'fs-extra/lib/ensure/link.js' { declare module.exports: $Exports<'fs-extra/lib/ensure/link'>; @@ -176,14 +196,23 @@ declare module 'fs-extra/lib/ensure/symlink-type.js' { declare module 'fs-extra/lib/ensure/symlink.js' { declare module.exports: $Exports<'fs-extra/lib/ensure/symlink'>; } +declare module 'fs-extra/lib/fs/index' { + declare module.exports: $Exports<'fs-extra/lib/fs'>; +} declare module 'fs-extra/lib/fs/index.js' { - declare module.exports: $Exports<'fs-extra/lib/fs/index'>; + declare module.exports: $Exports<'fs-extra/lib/fs'>; +} +declare module 'fs-extra/lib/index' { + declare module.exports: $Exports<'fs-extra/lib'>; } declare module 'fs-extra/lib/index.js' { - declare module.exports: $Exports<'fs-extra/lib/index'>; + declare module.exports: $Exports<'fs-extra/lib'>; +} +declare module 'fs-extra/lib/json/index' { + declare module.exports: $Exports<'fs-extra/lib/json'>; } declare module 'fs-extra/lib/json/index.js' { - declare module.exports: $Exports<'fs-extra/lib/json/index'>; + declare module.exports: $Exports<'fs-extra/lib/json'>; } declare module 'fs-extra/lib/json/jsonfile.js' { declare module.exports: $Exports<'fs-extra/lib/json/jsonfile'>; @@ -194,8 +223,11 @@ declare module 'fs-extra/lib/json/output-json-sync.js' { declare module 'fs-extra/lib/json/output-json.js' { declare module.exports: $Exports<'fs-extra/lib/json/output-json'>; } +declare module 'fs-extra/lib/mkdirs/index' { + declare module.exports: $Exports<'fs-extra/lib/mkdirs'>; +} declare module 'fs-extra/lib/mkdirs/index.js' { - declare module.exports: $Exports<'fs-extra/lib/mkdirs/index'>; + declare module.exports: $Exports<'fs-extra/lib/mkdirs'>; } declare module 'fs-extra/lib/mkdirs/mkdirs-sync.js' { declare module.exports: $Exports<'fs-extra/lib/mkdirs/mkdirs-sync'>; @@ -206,30 +238,51 @@ declare module 'fs-extra/lib/mkdirs/mkdirs.js' { declare module 'fs-extra/lib/mkdirs/win32.js' { declare module.exports: $Exports<'fs-extra/lib/mkdirs/win32'>; } +declare module 'fs-extra/lib/move-sync/index' { + declare module.exports: $Exports<'fs-extra/lib/move-sync'>; +} declare module 'fs-extra/lib/move-sync/index.js' { - declare module.exports: $Exports<'fs-extra/lib/move-sync/index'>; + declare module.exports: $Exports<'fs-extra/lib/move-sync'>; +} +declare module 'fs-extra/lib/move-sync/move-sync.js' { + declare module.exports: $Exports<'fs-extra/lib/move-sync/move-sync'>; +} +declare module 'fs-extra/lib/move/index' { + declare module.exports: $Exports<'fs-extra/lib/move'>; } declare module 'fs-extra/lib/move/index.js' { - declare module.exports: $Exports<'fs-extra/lib/move/index'>; + declare module.exports: $Exports<'fs-extra/lib/move'>; +} +declare module 'fs-extra/lib/move/move.js' { + declare module.exports: $Exports<'fs-extra/lib/move/move'>; +} +declare module 'fs-extra/lib/output/index' { + declare module.exports: $Exports<'fs-extra/lib/output'>; } declare module 'fs-extra/lib/output/index.js' { - declare module.exports: $Exports<'fs-extra/lib/output/index'>; + declare module.exports: $Exports<'fs-extra/lib/output'>; +} +declare module 'fs-extra/lib/path-exists/index' { + declare module.exports: $Exports<'fs-extra/lib/path-exists'>; } declare module 'fs-extra/lib/path-exists/index.js' { - declare module.exports: $Exports<'fs-extra/lib/path-exists/index'>; + declare module.exports: $Exports<'fs-extra/lib/path-exists'>; +} +declare module 'fs-extra/lib/remove/index' { + declare module.exports: $Exports<'fs-extra/lib/remove'>; } declare module 'fs-extra/lib/remove/index.js' { - declare module.exports: $Exports<'fs-extra/lib/remove/index'>; + declare module.exports: $Exports<'fs-extra/lib/remove'>; } declare module 'fs-extra/lib/remove/rimraf.js' { declare module.exports: $Exports<'fs-extra/lib/remove/rimraf'>; } -declare module 'fs-extra/lib/util/assign.js' { - declare module.exports: $Exports<'fs-extra/lib/util/assign'>; -} declare module 'fs-extra/lib/util/buffer.js' { declare module.exports: $Exports<'fs-extra/lib/util/buffer'>; } +declare module 'fs-extra/lib/util/stat.js' { + declare module.exports: $Exports<'fs-extra/lib/util/stat'>; +} declare module 'fs-extra/lib/util/utimes.js' { declare module.exports: $Exports<'fs-extra/lib/util/utimes'>; } diff --git a/flow-typed/npm/history_v4.10.x.js b/flow-typed/npm/history_v4.10.x.js new file mode 100644 index 00000000..e46d4e7a --- /dev/null +++ b/flow-typed/npm/history_v4.10.x.js @@ -0,0 +1,109 @@ +// flow-typed signature: 90337b03d736e9bdaa68004c36c4d3ee +// flow-typed version: 51319746df/history_v4.10.x/flow_>=v0.104.x + +declare module 'history' { + declare type Unregister = () => void; + + declare export type Action = 'PUSH' | 'REPLACE' | 'POP'; + + declare export type Location = {| + pathname: string, + search: string, + hash: string, + state: { ... }, + key: string, + |}; + + declare type History = {| + length: number, + location: HistoryLocation, + action: Action, + push: ((path: string, state?: { ... }) => void) & + ((location: $Shape) => void), + replace: ((path: string, state?: { ... }) => void) & + ((location: $Shape) => void), + go(n: number): void, + goBack(): void, + goForward(): void, + listen((location: HistoryLocation, action: Action) => void): Unregister, + block( + prompt: + | string + | boolean + | ((location: HistoryLocation, action: Action) => string | false | void) + ): Unregister, + createHref(location: $Shape): string, + |}; + + declare export type BrowserHistory = History<>; + + declare type BrowserHistoryOpts = {| + basename?: string, + forceRefresh?: boolean, + getUserConfirmation?: ( + message: string, + callback: (willContinue: boolean) => void + ) => void, + keyLength?: number, + |}; + + declare function createBrowserHistory( + opts?: BrowserHistoryOpts + ): BrowserHistory; + + declare export type MemoryHistory = {| + ...History<>, + index: number, + entries: Array, + canGo(n: number): boolean, + |}; + + declare type MemoryHistoryOpts = {| + initialEntries?: Array, + initialIndex?: number, + keyLength?: number, + getUserConfirmation?: ( + message: string, + callback: (willContinue: boolean) => void + ) => void, + |}; + + declare function createMemoryHistory(opts?: MemoryHistoryOpts): MemoryHistory; + + declare export type HashLocation = {| + ...Location, + state: void, + key: void, + |}; + + declare export type HashHistory = History; + + declare type HashHistoryOpts = {| + basename?: string, + hashType: 'slash' | 'noslash' | 'hashbang', + getUserConfirmation?: ( + message: string, + callback: (willContinue: boolean) => void + ) => void, + |}; + + declare function createHashHistory(opts?: HashHistoryOpts): HashHistory; + + // PathUtils + declare function parsePath(path: string): Location; + + declare function createPath(location: $Shape): string; + + // LocationUtils + declare function locationsAreEqual( + a: $Shape, + b: $Shape + ): boolean; + + declare function createLocation( + path: string | $Shape, + state?: { ... }, + key?: string, + currentLocation?: Location + ): Location; +} diff --git a/flow-typed/npm/history_v4.x.x.js b/flow-typed/npm/history_v4.x.x.js deleted file mode 100644 index 46688cf8..00000000 --- a/flow-typed/npm/history_v4.x.x.js +++ /dev/null @@ -1,128 +0,0 @@ -// @flow -// flow-typed signature: 984f6785a321187ac15c3434bbd7f25d -// flow-typed version: 568ec63cee/history_v4.x.x/flow_>=v0.25.x - -declare module 'history/createBrowserHistory' { - declare function Unblock(): void; - - declare export type Action = "PUSH" | "REPLACE" | "POP"; - - declare export type BrowserLocation = { - pathname: string, - search: string, - hash: string, - // Browser and Memory specific - state: string, - key: string, - }; - - declare export type BrowserHistory = { - length: number, - location: BrowserLocation, - action: Action, - push: (path: string, Array) => void, - replace: (path: string, Array) => void, - go: (n: number) => void, - goBack: () => void, - goForward: () => void, - listen: Function, - block: (message: string) => Unblock, - block: ((location: BrowserLocation, action: Action) => string) => Unblock, - push: (path: string) => void, - }; - - declare type HistoryOpts = { - basename?: string, - forceRefresh?: boolean, - getUserConfirmation?: ( - message: string, - callback: (willContinue: boolean) => void, - ) => void, - }; - - declare export default (opts?: HistoryOpts) => BrowserHistory; -} - -declare module 'history/createMemoryHistory' { - declare function Unblock(): void; - - declare export type Action = "PUSH" | "REPLACE" | "POP"; - - declare export type MemoryLocation = { - pathname: string, - search: string, - hash: string, - // Browser and Memory specific - state: string, - key: string, - }; - - declare export type MemoryHistory = { - length: number, - location: MemoryLocation, - action: Action, - index: number, - entries: Array, - push: (path: string, Array) => void, - replace: (path: string, Array) => void, - go: (n: number) => void, - goBack: () => void, - goForward: () => void, - // Memory only - canGo: (n: number) => boolean, - listen: Function, - block: (message: string) => Unblock, - block: ((location: MemoryLocation, action: Action) => string) => Unblock, - push: (path: string) => void, - }; - - declare type HistoryOpts = { - initialEntries?: Array, - initialIndex?: number, - keyLength?: number, - getUserConfirmation?: ( - message: string, - callback: (willContinue: boolean) => void, - ) => void, - }; - - declare export default (opts?: HistoryOpts) => MemoryHistory; -} - -declare module 'history/createHashHistory' { - declare function Unblock(): void; - - declare export type Action = "PUSH" | "REPLACE" | "POP"; - - declare export type HashLocation = { - pathname: string, - search: string, - hash: string, - }; - - declare export type HashHistory = { - length: number, - location: HashLocation, - action: Action, - push: (path: string, Array) => void, - replace: (path: string, Array) => void, - go: (n: number) => void, - goBack: () => void, - goForward: () => void, - listen: Function, - block: (message: string) => Unblock, - block: ((location: HashLocation, action: Action) => string) => Unblock, - push: (path: string) => void, - }; - - declare type HistoryOpts = { - basename?: string, - hashType: "slash" | "noslash" | "hashbang", - getUserConfirmation?: ( - message: string, - callback: (willContinue: boolean) => void, - ) => void, - }; - - declare export default (opts?: HistoryOpts) => HashHistory; -} diff --git a/flow-typed/npm/html-loader_vx.x.x.js b/flow-typed/npm/html-loader_vx.x.x.js index c4f0f2c3..aa42ac49 100644 --- a/flow-typed/npm/html-loader_vx.x.x.js +++ b/flow-typed/npm/html-loader_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 2724ce27fcc2935853ef95015c9d405b -// flow-typed version: <>/html-loader_v^0.5.5/flow_v0.66.0 +// flow-typed signature: 6e69fe7ef8f0314834176092cc8f3462 +// flow-typed version: <>/html-loader_v^0.5.5/flow_v0.112.0 /** * This is an autogenerated libdef stub for: diff --git a/flow-typed/npm/html-webpack-plugin_vx.x.x.js b/flow-typed/npm/html-webpack-plugin_vx.x.x.js index 96acd860..cfd342be 100644 --- a/flow-typed/npm/html-webpack-plugin_vx.x.x.js +++ b/flow-typed/npm/html-webpack-plugin_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 89649e8ec2c9812eccc5a75df9d1eb4c -// flow-typed version: <>/html-webpack-plugin_v^3.0.4/flow_v0.66.0 +// flow-typed signature: 42b18743047b1911024893301cd3465d +// flow-typed version: <>/html-webpack-plugin_v^3.2.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: diff --git a/flow-typed/npm/immortal-db_vx.x.x.js b/flow-typed/npm/immortal-db_vx.x.x.js new file mode 100644 index 00000000..1bc47f4a --- /dev/null +++ b/flow-typed/npm/immortal-db_vx.x.x.js @@ -0,0 +1,91 @@ +// flow-typed signature: 1b4028f3a45c75cbfe93b0c1e97debe7 +// flow-typed version: <>/immortal-db_v^1.0.2/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'immortal-db' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'immortal-db' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'immortal-db/dist/immortal-db' { + declare module.exports: any; +} + +declare module 'immortal-db/dist/immortal-db.min' { + declare module.exports: any; +} + +declare module 'immortal-db/src/cookie-store' { + declare module.exports: any; +} + +declare module 'immortal-db/src' { + declare module.exports: any; +} + +declare module 'immortal-db/src/indexed-db' { + declare module.exports: any; +} + +declare module 'immortal-db/src/web-storage' { + declare module.exports: any; +} + +declare module 'immortal-db/testing/safari-cross-origin-iframe/iframe' { + declare module.exports: any; +} + +declare module 'immortal-db/testing/test' { + declare module.exports: any; +} + +declare module 'immortal-db/webpack.config' { + declare module.exports: any; +} + +// Filename aliases +declare module 'immortal-db/dist/immortal-db.js' { + declare module.exports: $Exports<'immortal-db/dist/immortal-db'>; +} +declare module 'immortal-db/dist/immortal-db.min.js' { + declare module.exports: $Exports<'immortal-db/dist/immortal-db.min'>; +} +declare module 'immortal-db/src/cookie-store.js' { + declare module.exports: $Exports<'immortal-db/src/cookie-store'>; +} +declare module 'immortal-db/src/index' { + declare module.exports: $Exports<'immortal-db/src'>; +} +declare module 'immortal-db/src/index.js' { + declare module.exports: $Exports<'immortal-db/src'>; +} +declare module 'immortal-db/src/indexed-db.js' { + declare module.exports: $Exports<'immortal-db/src/indexed-db'>; +} +declare module 'immortal-db/src/web-storage.js' { + declare module.exports: $Exports<'immortal-db/src/web-storage'>; +} +declare module 'immortal-db/testing/safari-cross-origin-iframe/iframe.js' { + declare module.exports: $Exports<'immortal-db/testing/safari-cross-origin-iframe/iframe'>; +} +declare module 'immortal-db/testing/test.js' { + declare module.exports: $Exports<'immortal-db/testing/test'>; +} +declare module 'immortal-db/webpack.config.js' { + declare module.exports: $Exports<'immortal-db/webpack.config'>; +} diff --git a/flow-typed/npm/jest-dom_vx.x.x.js b/flow-typed/npm/jest-dom_vx.x.x.js new file mode 100644 index 00000000..ac6a6a74 --- /dev/null +++ b/flow-typed/npm/jest-dom_vx.x.x.js @@ -0,0 +1,38 @@ +// flow-typed signature: 34844f2d068c8f62d0db62a231ae83c5 +// flow-typed version: <>/jest-dom_v4.0.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'jest-dom' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'jest-dom' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'jest-dom/extend-expect' { + declare module.exports: any; +} + +// Filename aliases +declare module 'jest-dom/extend-expect.js' { + declare module.exports: $Exports<'jest-dom/extend-expect'>; +} +declare module 'jest-dom/index' { + declare module.exports: $Exports<'jest-dom'>; +} +declare module 'jest-dom/index.js' { + declare module.exports: $Exports<'jest-dom'>; +} diff --git a/flow-typed/npm/jest_v22.x.x.js b/flow-typed/npm/jest_v22.x.x.js deleted file mode 100644 index 493951c4..00000000 --- a/flow-typed/npm/jest_v22.x.x.js +++ /dev/null @@ -1,596 +0,0 @@ -// flow-typed signature: ebbcd423b1fcd29d6804fca91bb68879 -// flow-typed version: 7b9f6d2713/jest_v22.x.x/flow_>=v0.39.x - -type JestMockFn, TReturn> = { - (...args: TArguments): TReturn, - /** - * An object for introspecting mock calls - */ - mock: { - /** - * An array that represents all calls that have been made into this mock - * function. Each call is represented by an array of arguments that were - * passed during the call. - */ - calls: Array, - /** - * An array that contains all the object instances that have been - * instantiated from this mock function. - */ - instances: Array - }, - /** - * Resets all information stored in the mockFn.mock.calls and - * mockFn.mock.instances arrays. Often this is useful when you want to clean - * up a mock's usage data between two assertions. - */ - mockClear(): void, - /** - * Resets all information stored in the mock. This is useful when you want to - * completely restore a mock back to its initial state. - */ - mockReset(): void, - /** - * Removes the mock and restores the initial implementation. This is useful - * when you want to mock functions in certain test cases and restore the - * original implementation in others. Beware that mockFn.mockRestore only - * works when mock was created with jest.spyOn. Thus you have to take care of - * restoration yourself when manually assigning jest.fn(). - */ - mockRestore(): void, - /** - * Accepts a function that should be used as the implementation of the mock. - * The mock itself will still record all calls that go into and instances - * that come from itself -- the only difference is that the implementation - * will also be executed when the mock is called. - */ - mockImplementation( - fn: (...args: TArguments) => TReturn - ): JestMockFn, - /** - * Accepts a function that will be used as an implementation of the mock for - * one call to the mocked function. Can be chained so that multiple function - * calls produce different results. - */ - mockImplementationOnce( - fn: (...args: TArguments) => TReturn - ): JestMockFn, - /** - * Just a simple sugar function for returning `this` - */ - mockReturnThis(): void, - /** - * Deprecated: use jest.fn(() => value) instead - */ - mockReturnValue(value: TReturn): JestMockFn, - /** - * Sugar for only returning a value once inside your mock - */ - mockReturnValueOnce(value: TReturn): JestMockFn -}; - -type JestAsymmetricEqualityType = { - /** - * A custom Jasmine equality tester - */ - asymmetricMatch(value: mixed): boolean -}; - -type JestCallsType = { - allArgs(): mixed, - all(): mixed, - any(): boolean, - count(): number, - first(): mixed, - mostRecent(): mixed, - reset(): void -}; - -type JestClockType = { - install(): void, - mockDate(date: Date): void, - tick(milliseconds?: number): void, - uninstall(): void -}; - -type JestMatcherResult = { - message?: string | (() => string), - pass: boolean -}; - -type JestMatcher = (actual: any, expected: any) => JestMatcherResult; - -type JestPromiseType = { - /** - * Use rejects to unwrap the reason of a rejected promise so any other - * matcher can be chained. If the promise is fulfilled the assertion fails. - */ - rejects: JestExpectType, - /** - * Use resolves to unwrap the value of a fulfilled promise so any other - * matcher can be chained. If the promise is rejected the assertion fails. - */ - resolves: JestExpectType -}; - -/** - * Jest allows functions and classes to be used as test names in test() and - * describe() - */ -type JestTestName = string | Function; - -/** - * Plugin: jest-enzyme - */ -type EnzymeMatchersType = { - toBeChecked(): void, - toBeDisabled(): void, - toBeEmpty(): void, - toBeEmptyRender(): void, - toBePresent(): void, - toContainReact(element: React$Element): void, - toExist(): void, - toHaveClassName(className: string): void, - toHaveHTML(html: string): void, - toHaveProp: ((propKey: string, propValue?: any) => void) & ((props: Object) => void), - toHaveRef(refName: string): void, - toHaveState: ((stateKey: string, stateValue?: any) => void) & ((state: Object) => void), - toHaveStyle: ((styleKey: string, styleValue?: any) => void) & ((style: Object) => void), - toHaveTagName(tagName: string): void, - toHaveText(text: string): void, - toIncludeText(text: string): void, - toHaveValue(value: any): void, - toMatchElement(element: React$Element): void, - toMatchSelector(selector: string): void -}; - -type JestExpectType = { - not: JestExpectType & EnzymeMatchersType, - /** - * If you have a mock function, you can use .lastCalledWith to test what - * arguments it was last called with. - */ - lastCalledWith(...args: Array): void, - /** - * toBe just checks that a value is what you expect. It uses === to check - * strict equality. - */ - toBe(value: any): void, - /** - * Use .toHaveBeenCalled to ensure that a mock function got called. - */ - toBeCalled(): void, - /** - * Use .toBeCalledWith to ensure that a mock function was called with - * specific arguments. - */ - toBeCalledWith(...args: Array): void, - /** - * Using exact equality with floating point numbers is a bad idea. Rounding - * means that intuitive things fail. - */ - toBeCloseTo(num: number, delta: any): void, - /** - * Use .toBeDefined to check that a variable is not undefined. - */ - toBeDefined(): void, - /** - * Use .toBeFalsy when you don't care what a value is, you just want to - * ensure a value is false in a boolean context. - */ - toBeFalsy(): void, - /** - * To compare floating point numbers, you can use toBeGreaterThan. - */ - toBeGreaterThan(number: number): void, - /** - * To compare floating point numbers, you can use toBeGreaterThanOrEqual. - */ - toBeGreaterThanOrEqual(number: number): void, - /** - * To compare floating point numbers, you can use toBeLessThan. - */ - toBeLessThan(number: number): void, - /** - * To compare floating point numbers, you can use toBeLessThanOrEqual. - */ - toBeLessThanOrEqual(number: number): void, - /** - * Use .toBeInstanceOf(Class) to check that an object is an instance of a - * class. - */ - toBeInstanceOf(cls: Class<*>): void, - /** - * .toBeNull() is the same as .toBe(null) but the error messages are a bit - * nicer. - */ - toBeNull(): void, - /** - * Use .toBeTruthy when you don't care what a value is, you just want to - * ensure a value is true in a boolean context. - */ - toBeTruthy(): void, - /** - * Use .toBeUndefined to check that a variable is undefined. - */ - toBeUndefined(): void, - /** - * Use .toContain when you want to check that an item is in a list. For - * testing the items in the list, this uses ===, a strict equality check. - */ - toContain(item: any): void, - /** - * Use .toContainEqual when you want to check that an item is in a list. For - * testing the items in the list, this matcher recursively checks the - * equality of all fields, rather than checking for object identity. - */ - toContainEqual(item: any): void, - /** - * Use .toEqual when you want to check that two objects have the same value. - * This matcher recursively checks the equality of all fields, rather than - * checking for object identity. - */ - toEqual(value: any): void, - /** - * Use .toHaveBeenCalled to ensure that a mock function got called. - */ - toHaveBeenCalled(): void, - /** - * Use .toHaveBeenCalledTimes to ensure that a mock function got called exact - * number of times. - */ - toHaveBeenCalledTimes(number: number): void, - /** - * Use .toHaveBeenCalledWith to ensure that a mock function was called with - * specific arguments. - */ - toHaveBeenCalledWith(...args: Array): void, - /** - * Use .toHaveBeenLastCalledWith to ensure that a mock function was last called - * with specific arguments. - */ - toHaveBeenLastCalledWith(...args: Array): void, - /** - * Check that an object has a .length property and it is set to a certain - * numeric value. - */ - toHaveLength(number: number): void, - /** - * - */ - toHaveProperty(propPath: string, value?: any): void, - /** - * Use .toMatch to check that a string matches a regular expression or string. - */ - toMatch(regexpOrString: RegExp | string): void, - /** - * Use .toMatchObject to check that a javascript object matches a subset of the properties of an object. - */ - toMatchObject(object: Object | Array): void, - /** - * This ensures that a React component matches the most recent snapshot. - */ - toMatchSnapshot(name?: string): void, - /** - * Use .toThrow to test that a function throws when it is called. - * If you want to test that a specific error gets thrown, you can provide an - * argument to toThrow. The argument can be a string for the error message, - * a class for the error, or a regex that should match the error. - * - * Alias: .toThrowError - */ - toThrow(message?: string | Error | Class | RegExp): void, - toThrowError(message?: string | Error | Class | RegExp): void, - /** - * Use .toThrowErrorMatchingSnapshot to test that a function throws a error - * matching the most recent snapshot when it is called. - */ - toThrowErrorMatchingSnapshot(): void -}; - -type JestObjectType = { - /** - * Disables automatic mocking in the module loader. - * - * After this method is called, all `require()`s will return the real - * versions of each module (rather than a mocked version). - */ - disableAutomock(): JestObjectType, - /** - * An un-hoisted version of disableAutomock - */ - autoMockOff(): JestObjectType, - /** - * Enables automatic mocking in the module loader. - */ - enableAutomock(): JestObjectType, - /** - * An un-hoisted version of enableAutomock - */ - autoMockOn(): JestObjectType, - /** - * Clears the mock.calls and mock.instances properties of all mocks. - * Equivalent to calling .mockClear() on every mocked function. - */ - clearAllMocks(): JestObjectType, - /** - * Resets the state of all mocks. Equivalent to calling .mockReset() on every - * mocked function. - */ - resetAllMocks(): JestObjectType, - /** - * Restores all mocks back to their original value. - */ - restoreAllMocks(): JestObjectType, - /** - * Removes any pending timers from the timer system. - */ - clearAllTimers(): void, - /** - * The same as `mock` but not moved to the top of the expectation by - * babel-jest. - */ - doMock(moduleName: string, moduleFactory?: any): JestObjectType, - /** - * The same as `unmock` but not moved to the top of the expectation by - * babel-jest. - */ - dontMock(moduleName: string): JestObjectType, - /** - * Returns a new, unused mock function. Optionally takes a mock - * implementation. - */ - fn, TReturn>( - implementation?: (...args: TArguments) => TReturn - ): JestMockFn, - /** - * Determines if the given function is a mocked function. - */ - isMockFunction(fn: Function): boolean, - /** - * Given the name of a module, use the automatic mocking system to generate a - * mocked version of the module for you. - */ - genMockFromModule(moduleName: string): any, - /** - * Mocks a module with an auto-mocked version when it is being required. - * - * The second argument can be used to specify an explicit module factory that - * is being run instead of using Jest's automocking feature. - * - * The third argument can be used to create virtual mocks -- mocks of modules - * that don't exist anywhere in the system. - */ - mock( - moduleName: string, - moduleFactory?: any, - options?: Object - ): JestObjectType, - /** - * Returns the actual module instead of a mock, bypassing all checks on - * whether the module should receive a mock implementation or not. - */ - requireActual(moduleName: string): any, - /** - * Returns a mock module instead of the actual module, bypassing all checks - * on whether the module should be required normally or not. - */ - requireMock(moduleName: string): any, - /** - * Resets the module registry - the cache of all required modules. This is - * useful to isolate modules where local state might conflict between tests. - */ - resetModules(): JestObjectType, - /** - * Exhausts the micro-task queue (usually interfaced in node via - * process.nextTick). - */ - runAllTicks(): void, - /** - * Exhausts the macro-task queue (i.e., all tasks queued by setTimeout(), - * setInterval(), and setImmediate()). - */ - runAllTimers(): void, - /** - * Exhausts all tasks queued by setImmediate(). - */ - runAllImmediates(): void, - /** - * Executes only the macro task queue (i.e. all tasks queued by setTimeout() - * or setInterval() and setImmediate()). - */ - runTimersToTime(msToRun: number): void, - /** - * Executes only the macro-tasks that are currently pending (i.e., only the - * tasks that have been queued by setTimeout() or setInterval() up to this - * point) - */ - runOnlyPendingTimers(): void, - /** - * Explicitly supplies the mock object that the module system should return - * for the specified module. Note: It is recommended to use jest.mock() - * instead. - */ - setMock(moduleName: string, moduleExports: any): JestObjectType, - /** - * Indicates that the module system should never return a mocked version of - * the specified module from require() (e.g. that it should always return the - * real module). - */ - unmock(moduleName: string): JestObjectType, - /** - * Instructs Jest to use fake versions of the standard timer functions - * (setTimeout, setInterval, clearTimeout, clearInterval, nextTick, - * setImmediate and clearImmediate). - */ - useFakeTimers(): JestObjectType, - /** - * Instructs Jest to use the real versions of the standard timer functions. - */ - useRealTimers(): JestObjectType, - /** - * Creates a mock function similar to jest.fn but also tracks calls to - * object[methodName]. - */ - spyOn(object: Object, methodName: string): JestMockFn, - /** - * Set the default timeout interval for tests and before/after hooks in milliseconds. - * Note: The default timeout interval is 5 seconds if this method is not called. - */ - setTimeout(timeout: number): JestObjectType -}; - -type JestSpyType = { - calls: JestCallsType -}; - -/** Runs this function after every test inside this context */ -declare function afterEach( - fn: (done: () => void) => ?Promise, - timeout?: number -): void; -/** Runs this function before every test inside this context */ -declare function beforeEach( - fn: (done: () => void) => ?Promise, - timeout?: number -): void; -/** Runs this function after all tests have finished inside this context */ -declare function afterAll( - fn: (done: () => void) => ?Promise, - timeout?: number -): void; -/** Runs this function before any tests have started inside this context */ -declare function beforeAll( - fn: (done: () => void) => ?Promise, - timeout?: number -): void; - -/** A context for grouping tests together */ -declare var describe: { - /** - * Creates a block that groups together several related tests in one "test suite" - */ - (name: JestTestName, fn: () => void): void, - - /** - * Only run this describe block - */ - only(name: JestTestName, fn: () => void): void, - - /** - * Skip running this describe block - */ - skip(name: JestTestName, fn: () => void): void -}; - -/** An individual test unit */ -declare var it: { - /** - * An individual test unit - * - * @param {JestTestName} Name of Test - * @param {Function} Test - * @param {number} Timeout for the test, in milliseconds. - */ - ( - name: JestTestName, - fn?: (done: () => void) => ?Promise, - timeout?: number - ): void, - /** - * Only run this test - * - * @param {JestTestName} Name of Test - * @param {Function} Test - * @param {number} Timeout for the test, in milliseconds. - */ - only( - name: JestTestName, - fn?: (done: () => void) => ?Promise, - timeout?: number - ): void, - /** - * Skip running this test - * - * @param {JestTestName} Name of Test - * @param {Function} Test - * @param {number} Timeout for the test, in milliseconds. - */ - skip( - name: JestTestName, - fn?: (done: () => void) => ?Promise, - timeout?: number - ): void, - /** - * Run the test concurrently - * - * @param {JestTestName} Name of Test - * @param {Function} Test - * @param {number} Timeout for the test, in milliseconds. - */ - concurrent( - name: JestTestName, - fn?: (done: () => void) => ?Promise, - timeout?: number - ): void -}; -declare function fit( - name: JestTestName, - fn: (done: () => void) => ?Promise, - timeout?: number -): void; -/** An individual test unit */ -declare var test: typeof it; -/** A disabled group of tests */ -declare var xdescribe: typeof describe; -/** A focused group of tests */ -declare var fdescribe: typeof describe; -/** A disabled individual test */ -declare var xit: typeof it; -/** A disabled individual test */ -declare var xtest: typeof it; - -/** The expect function is used every time you want to test a value */ -declare var expect: { - /** The object that you want to make assertions against */ - (value: any): JestExpectType & JestPromiseType & EnzymeMatchersType, - /** Add additional Jasmine matchers to Jest's roster */ - extend(matchers: { [name: string]: JestMatcher }): void, - /** Add a module that formats application-specific data structures. */ - addSnapshotSerializer(serializer: (input: Object) => string): void, - assertions(expectedAssertions: number): void, - hasAssertions(): void, - any(value: mixed): JestAsymmetricEqualityType, - anything(): any, - arrayContaining(value: Array): Array, - objectContaining(value: Object): Object, - /** Matches any received string that contains the exact expected string. */ - stringContaining(value: string): string, - stringMatching(value: string | RegExp): string -}; - -// TODO handle return type -// http://jasmine.github.io/2.4/introduction.html#section-Spies -declare function spyOn(value: mixed, method: string): Object; - -/** Holds all functions related to manipulating test runner */ -declare var jest: JestObjectType; - -/** - * The global Jasmine object, this is generally not exposed as the public API, - * using features inside here could break in later versions of Jest. - */ -declare var jasmine: { - DEFAULT_TIMEOUT_INTERVAL: number, - any(value: mixed): JestAsymmetricEqualityType, - anything(): any, - arrayContaining(value: Array): Array, - clock(): JestClockType, - createSpy(name: string): JestSpyType, - createSpyObj( - baseName: string, - methodNames: Array - ): { [methodName: string]: JestSpyType }, - objectContaining(value: Object): Object, - stringMatching(value: string): string -}; diff --git a/flow-typed/npm/jest_v24.x.x.js b/flow-typed/npm/jest_v24.x.x.js new file mode 100644 index 00000000..f9790b5e --- /dev/null +++ b/flow-typed/npm/jest_v24.x.x.js @@ -0,0 +1,1182 @@ +// flow-typed signature: 27f8467378a99b6130bd20f54f31a644 +// flow-typed version: 6cb9e99836/jest_v24.x.x/flow_>=v0.104.x + +type JestMockFn, TReturn> = { + (...args: TArguments): TReturn, + /** + * An object for introspecting mock calls + */ + mock: { + /** + * An array that represents all calls that have been made into this mock + * function. Each call is represented by an array of arguments that were + * passed during the call. + */ + calls: Array, + /** + * An array that contains all the object instances that have been + * instantiated from this mock function. + */ + instances: Array, + /** + * An array that contains all the object results that have been + * returned by this mock function call + */ + results: Array<{ + isThrow: boolean, + value: TReturn, + ... + }>, + ... + }, + /** + * Resets all information stored in the mockFn.mock.calls and + * mockFn.mock.instances arrays. Often this is useful when you want to clean + * up a mock's usage data between two assertions. + */ + mockClear(): void, + /** + * Resets all information stored in the mock. This is useful when you want to + * completely restore a mock back to its initial state. + */ + mockReset(): void, + /** + * Removes the mock and restores the initial implementation. This is useful + * when you want to mock functions in certain test cases and restore the + * original implementation in others. Beware that mockFn.mockRestore only + * works when mock was created with jest.spyOn. Thus you have to take care of + * restoration yourself when manually assigning jest.fn(). + */ + mockRestore(): void, + /** + * Accepts a function that should be used as the implementation of the mock. + * The mock itself will still record all calls that go into and instances + * that come from itself -- the only difference is that the implementation + * will also be executed when the mock is called. + */ + mockImplementation( + fn: (...args: TArguments) => TReturn + ): JestMockFn, + /** + * Accepts a function that will be used as an implementation of the mock for + * one call to the mocked function. Can be chained so that multiple function + * calls produce different results. + */ + mockImplementationOnce( + fn: (...args: TArguments) => TReturn + ): JestMockFn, + /** + * Accepts a string to use in test result output in place of "jest.fn()" to + * indicate which mock function is being referenced. + */ + mockName(name: string): JestMockFn, + /** + * Just a simple sugar function for returning `this` + */ + mockReturnThis(): void, + /** + * Accepts a value that will be returned whenever the mock function is called. + */ + mockReturnValue(value: TReturn): JestMockFn, + /** + * Sugar for only returning a value once inside your mock + */ + mockReturnValueOnce(value: TReturn): JestMockFn, + /** + * Sugar for jest.fn().mockImplementation(() => Promise.resolve(value)) + */ + mockResolvedValue(value: TReturn): JestMockFn>, + /** + * Sugar for jest.fn().mockImplementationOnce(() => Promise.resolve(value)) + */ + mockResolvedValueOnce( + value: TReturn + ): JestMockFn>, + /** + * Sugar for jest.fn().mockImplementation(() => Promise.reject(value)) + */ + mockRejectedValue(value: TReturn): JestMockFn>, + /** + * Sugar for jest.fn().mockImplementationOnce(() => Promise.reject(value)) + */ + mockRejectedValueOnce(value: TReturn): JestMockFn>, + ... +}; + +type JestAsymmetricEqualityType = { /** + * A custom Jasmine equality tester + */ +asymmetricMatch(value: mixed): boolean, ... }; + +type JestCallsType = { + allArgs(): mixed, + all(): mixed, + any(): boolean, + count(): number, + first(): mixed, + mostRecent(): mixed, + reset(): void, + ... +}; + +type JestClockType = { + install(): void, + mockDate(date: Date): void, + tick(milliseconds?: number): void, + uninstall(): void, + ... +}; + +type JestMatcherResult = { + message?: string | (() => string), + pass: boolean, + ... +}; + +type JestMatcher = ( + received: any, + ...actual: Array +) => JestMatcherResult | Promise; + +type JestPromiseType = { + /** + * Use rejects to unwrap the reason of a rejected promise so any other + * matcher can be chained. If the promise is fulfilled the assertion fails. + */ + rejects: JestExpectType, + /** + * Use resolves to unwrap the value of a fulfilled promise so any other + * matcher can be chained. If the promise is rejected the assertion fails. + */ + resolves: JestExpectType, + ... +}; + +/** + * Jest allows functions and classes to be used as test names in test() and + * describe() + */ +type JestTestName = string | Function; + +/** + * Plugin: jest-styled-components + */ + +type JestStyledComponentsMatcherValue = + | string + | JestAsymmetricEqualityType + | RegExp + | typeof undefined; + +type JestStyledComponentsMatcherOptions = { + media?: string, + modifier?: string, + supports?: string, + ... +}; + +type JestStyledComponentsMatchersType = { toHaveStyleRule( + property: string, + value: JestStyledComponentsMatcherValue, + options?: JestStyledComponentsMatcherOptions +): void, ... }; + +/** + * Plugin: jest-enzyme + */ +type EnzymeMatchersType = { + // 5.x + toBeEmpty(): void, + toBePresent(): void, + // 6.x + toBeChecked(): void, + toBeDisabled(): void, + toBeEmptyRender(): void, + toContainMatchingElement(selector: string): void, + toContainMatchingElements(n: number, selector: string): void, + toContainExactlyOneMatchingElement(selector: string): void, + toContainReact(element: React$Element): void, + toExist(): void, + toHaveClassName(className: string): void, + toHaveHTML(html: string): void, + toHaveProp: ((propKey: string, propValue?: any) => void) & + ((props: {...}) => void), + toHaveRef(refName: string): void, + toHaveState: ((stateKey: string, stateValue?: any) => void) & + ((state: {...}) => void), + toHaveStyle: ((styleKey: string, styleValue?: any) => void) & + ((style: {...}) => void), + toHaveTagName(tagName: string): void, + toHaveText(text: string): void, + toHaveValue(value: any): void, + toIncludeText(text: string): void, + toMatchElement( + element: React$Element, + options?: {| ignoreProps?: boolean, verbose?: boolean |} + ): void, + toMatchSelector(selector: string): void, + // 7.x + toHaveDisplayName(name: string): void, + ... +}; + +// DOM testing library extensions (jest-dom) +// https://github.com/testing-library/jest-dom +type DomTestingLibraryType = { + /** + * @deprecated + */ + toBeInTheDOM(container?: HTMLElement): void, + toBeInTheDocument(): void, + toBeVisible(): void, + toBeEmpty(): void, + toBeDisabled(): void, + toBeEnabled(): void, + toBeInvalid(): void, + toBeRequired(): void, + toBeValid(): void, + toContainElement(element: HTMLElement | null): void, + toContainHTML(htmlText: string): void, + toHaveAttribute(attr: string, value?: any): void, + toHaveClass(...classNames: string[]): void, + toHaveFocus(): void, + toHaveFormValues(expectedValues: { [name: string]: any, ... }): void, + toHaveStyle(css: string): void, + toHaveTextContent( + text: string | RegExp, + options?: { normalizeWhitespace: boolean, ... } + ): void, + toHaveValue(value?: string | string[] | number): void, + ... +}; + +// Jest JQuery Matchers: https://github.com/unindented/custom-jquery-matchers +type JestJQueryMatchersType = { + toExist(): void, + toHaveLength(len: number): void, + toHaveId(id: string): void, + toHaveClass(className: string): void, + toHaveTag(tag: string): void, + toHaveAttr(key: string, val?: any): void, + toHaveProp(key: string, val?: any): void, + toHaveText(text: string | RegExp): void, + toHaveData(key: string, val?: any): void, + toHaveValue(val: any): void, + toHaveCss(css: { [key: string]: any, ... }): void, + toBeChecked(): void, + toBeDisabled(): void, + toBeEmpty(): void, + toBeHidden(): void, + toBeSelected(): void, + toBeVisible(): void, + toBeFocused(): void, + toBeInDom(): void, + toBeMatchedBy(sel: string): void, + toHaveDescendant(sel: string): void, + toHaveDescendantWithText(sel: string, text: string | RegExp): void, + ... +}; + +// Jest Extended Matchers: https://github.com/jest-community/jest-extended +type JestExtendedMatchersType = { + /** + * Note: Currently unimplemented + * Passing assertion + * + * @param {String} message + */ + // pass(message: string): void; + + /** + * Note: Currently unimplemented + * Failing assertion + * + * @param {String} message + */ + // fail(message: string): void; + + /** + * Use .toBeEmpty when checking if a String '', Array [] or Object {} is empty. + */ + toBeEmpty(): void, + /** + * Use .toBeOneOf when checking if a value is a member of a given Array. + * @param {Array.<*>} members + */ + toBeOneOf(members: any[]): void, + /** + * Use `.toBeNil` when checking a value is `null` or `undefined`. + */ + toBeNil(): void, + /** + * Use `.toSatisfy` when you want to use a custom matcher by supplying a predicate function that returns a `Boolean`. + * @param {Function} predicate + */ + toSatisfy(predicate: (n: any) => boolean): void, + /** + * Use `.toBeArray` when checking if a value is an `Array`. + */ + toBeArray(): void, + /** + * Use `.toBeArrayOfSize` when checking if a value is an `Array` of size x. + * @param {Number} x + */ + toBeArrayOfSize(x: number): void, + /** + * Use `.toIncludeAllMembers` when checking if an `Array` contains all of the same members of a given set. + * @param {Array.<*>} members + */ + toIncludeAllMembers(members: any[]): void, + /** + * Use `.toIncludeAnyMembers` when checking if an `Array` contains any of the members of a given set. + * @param {Array.<*>} members + */ + toIncludeAnyMembers(members: any[]): void, + /** + * Use `.toSatisfyAll` when you want to use a custom matcher by supplying a predicate function that returns a `Boolean` for all values in an array. + * @param {Function} predicate + */ + toSatisfyAll(predicate: (n: any) => boolean): void, + /** + * Use `.toBeBoolean` when checking if a value is a `Boolean`. + */ + toBeBoolean(): void, + /** + * Use `.toBeTrue` when checking a value is equal (===) to `true`. + */ + toBeTrue(): void, + /** + * Use `.toBeFalse` when checking a value is equal (===) to `false`. + */ + toBeFalse(): void, + /** + * Use .toBeDate when checking if a value is a Date. + */ + toBeDate(): void, + /** + * Use `.toBeFunction` when checking if a value is a `Function`. + */ + toBeFunction(): void, + /** + * Use `.toHaveBeenCalledBefore` when checking if a `Mock` was called before another `Mock`. + * + * Note: Required Jest version >22 + * Note: Your mock functions will have to be asynchronous to cause the timestamps inside of Jest to occur in a differentJS event loop, otherwise the mock timestamps will all be the same + * + * @param {Mock} mock + */ + toHaveBeenCalledBefore(mock: JestMockFn): void, + /** + * Use `.toBeNumber` when checking if a value is a `Number`. + */ + toBeNumber(): void, + /** + * Use `.toBeNaN` when checking a value is `NaN`. + */ + toBeNaN(): void, + /** + * Use `.toBeFinite` when checking if a value is a `Number`, not `NaN` or `Infinity`. + */ + toBeFinite(): void, + /** + * Use `.toBePositive` when checking if a value is a positive `Number`. + */ + toBePositive(): void, + /** + * Use `.toBeNegative` when checking if a value is a negative `Number`. + */ + toBeNegative(): void, + /** + * Use `.toBeEven` when checking if a value is an even `Number`. + */ + toBeEven(): void, + /** + * Use `.toBeOdd` when checking if a value is an odd `Number`. + */ + toBeOdd(): void, + /** + * Use `.toBeWithin` when checking if a number is in between the given bounds of: start (inclusive) and end (exclusive). + * + * @param {Number} start + * @param {Number} end + */ + toBeWithin(start: number, end: number): void, + /** + * Use `.toBeObject` when checking if a value is an `Object`. + */ + toBeObject(): void, + /** + * Use `.toContainKey` when checking if an object contains the provided key. + * + * @param {String} key + */ + toContainKey(key: string): void, + /** + * Use `.toContainKeys` when checking if an object has all of the provided keys. + * + * @param {Array.} keys + */ + toContainKeys(keys: string[]): void, + /** + * Use `.toContainAllKeys` when checking if an object only contains all of the provided keys. + * + * @param {Array.} keys + */ + toContainAllKeys(keys: string[]): void, + /** + * Use `.toContainAnyKeys` when checking if an object contains at least one of the provided keys. + * + * @param {Array.} keys + */ + toContainAnyKeys(keys: string[]): void, + /** + * Use `.toContainValue` when checking if an object contains the provided value. + * + * @param {*} value + */ + toContainValue(value: any): void, + /** + * Use `.toContainValues` when checking if an object contains all of the provided values. + * + * @param {Array.<*>} values + */ + toContainValues(values: any[]): void, + /** + * Use `.toContainAllValues` when checking if an object only contains all of the provided values. + * + * @param {Array.<*>} values + */ + toContainAllValues(values: any[]): void, + /** + * Use `.toContainAnyValues` when checking if an object contains at least one of the provided values. + * + * @param {Array.<*>} values + */ + toContainAnyValues(values: any[]): void, + /** + * Use `.toContainEntry` when checking if an object contains the provided entry. + * + * @param {Array.} entry + */ + toContainEntry(entry: [string, string]): void, + /** + * Use `.toContainEntries` when checking if an object contains all of the provided entries. + * + * @param {Array.>} entries + */ + toContainEntries(entries: [string, string][]): void, + /** + * Use `.toContainAllEntries` when checking if an object only contains all of the provided entries. + * + * @param {Array.>} entries + */ + toContainAllEntries(entries: [string, string][]): void, + /** + * Use `.toContainAnyEntries` when checking if an object contains at least one of the provided entries. + * + * @param {Array.>} entries + */ + toContainAnyEntries(entries: [string, string][]): void, + /** + * Use `.toBeExtensible` when checking if an object is extensible. + */ + toBeExtensible(): void, + /** + * Use `.toBeFrozen` when checking if an object is frozen. + */ + toBeFrozen(): void, + /** + * Use `.toBeSealed` when checking if an object is sealed. + */ + toBeSealed(): void, + /** + * Use `.toBeString` when checking if a value is a `String`. + */ + toBeString(): void, + /** + * Use `.toEqualCaseInsensitive` when checking if a string is equal (===) to another ignoring the casing of both strings. + * + * @param {String} string + */ + toEqualCaseInsensitive(string: string): void, + /** + * Use `.toStartWith` when checking if a `String` starts with a given `String` prefix. + * + * @param {String} prefix + */ + toStartWith(prefix: string): void, + /** + * Use `.toEndWith` when checking if a `String` ends with a given `String` suffix. + * + * @param {String} suffix + */ + toEndWith(suffix: string): void, + /** + * Use `.toInclude` when checking if a `String` includes the given `String` substring. + * + * @param {String} substring + */ + toInclude(substring: string): void, + /** + * Use `.toIncludeRepeated` when checking if a `String` includes the given `String` substring the correct number of times. + * + * @param {String} substring + * @param {Number} times + */ + toIncludeRepeated(substring: string, times: number): void, + /** + * Use `.toIncludeMultiple` when checking if a `String` includes all of the given substrings. + * + * @param {Array.} substring + */ + toIncludeMultiple(substring: string[]): void, + ... +}; + +interface JestExpectType { + not: JestExpectType & + EnzymeMatchersType & + DomTestingLibraryType & + JestJQueryMatchersType & + JestStyledComponentsMatchersType & + JestExtendedMatchersType; + /** + * If you have a mock function, you can use .lastCalledWith to test what + * arguments it was last called with. + */ + lastCalledWith(...args: Array): void; + /** + * toBe just checks that a value is what you expect. It uses === to check + * strict equality. + */ + toBe(value: any): void; + /** + * Use .toBeCalledWith to ensure that a mock function was called with + * specific arguments. + */ + toBeCalledWith(...args: Array): void; + /** + * Using exact equality with floating point numbers is a bad idea. Rounding + * means that intuitive things fail. + */ + toBeCloseTo(num: number, delta: any): void; + /** + * Use .toBeDefined to check that a variable is not undefined. + */ + toBeDefined(): void; + /** + * Use .toBeFalsy when you don't care what a value is, you just want to + * ensure a value is false in a boolean context. + */ + toBeFalsy(): void; + /** + * To compare floating point numbers, you can use toBeGreaterThan. + */ + toBeGreaterThan(number: number): void; + /** + * To compare floating point numbers, you can use toBeGreaterThanOrEqual. + */ + toBeGreaterThanOrEqual(number: number): void; + /** + * To compare floating point numbers, you can use toBeLessThan. + */ + toBeLessThan(number: number): void; + /** + * To compare floating point numbers, you can use toBeLessThanOrEqual. + */ + toBeLessThanOrEqual(number: number): void; + /** + * Use .toBeInstanceOf(Class) to check that an object is an instance of a + * class. + */ + toBeInstanceOf(cls: Class<*>): void; + /** + * .toBeNull() is the same as .toBe(null) but the error messages are a bit + * nicer. + */ + toBeNull(): void; + /** + * Use .toBeTruthy when you don't care what a value is, you just want to + * ensure a value is true in a boolean context. + */ + toBeTruthy(): void; + /** + * Use .toBeUndefined to check that a variable is undefined. + */ + toBeUndefined(): void; + /** + * Use .toContain when you want to check that an item is in a list. For + * testing the items in the list, this uses ===, a strict equality check. + */ + toContain(item: any): void; + /** + * Use .toContainEqual when you want to check that an item is in a list. For + * testing the items in the list, this matcher recursively checks the + * equality of all fields, rather than checking for object identity. + */ + toContainEqual(item: any): void; + /** + * Use .toEqual when you want to check that two objects have the same value. + * This matcher recursively checks the equality of all fields, rather than + * checking for object identity. + */ + toEqual(value: any): void; + /** + * Use .toHaveBeenCalled to ensure that a mock function got called. + */ + toHaveBeenCalled(): void; + toBeCalled(): void; + /** + * Use .toHaveBeenCalledTimes to ensure that a mock function got called exact + * number of times. + */ + toHaveBeenCalledTimes(number: number): void; + toBeCalledTimes(number: number): void; + /** + * + */ + toHaveBeenNthCalledWith(nthCall: number, ...args: Array): void; + nthCalledWith(nthCall: number, ...args: Array): void; + /** + * + */ + toHaveReturned(): void; + toReturn(): void; + /** + * + */ + toHaveReturnedTimes(number: number): void; + toReturnTimes(number: number): void; + /** + * + */ + toHaveReturnedWith(value: any): void; + toReturnWith(value: any): void; + /** + * + */ + toHaveLastReturnedWith(value: any): void; + lastReturnedWith(value: any): void; + /** + * + */ + toHaveNthReturnedWith(nthCall: number, value: any): void; + nthReturnedWith(nthCall: number, value: any): void; + /** + * Use .toHaveBeenCalledWith to ensure that a mock function was called with + * specific arguments. + */ + toHaveBeenCalledWith(...args: Array): void; + toBeCalledWith(...args: Array): void; + /** + * Use .toHaveBeenLastCalledWith to ensure that a mock function was last called + * with specific arguments. + */ + toHaveBeenLastCalledWith(...args: Array): void; + lastCalledWith(...args: Array): void; + /** + * Check that an object has a .length property and it is set to a certain + * numeric value. + */ + toHaveLength(number: number): void; + /** + * + */ + toHaveProperty(propPath: string | $ReadOnlyArray, value?: any): void; + /** + * Use .toMatch to check that a string matches a regular expression or string. + */ + toMatch(regexpOrString: RegExp | string): void; + /** + * Use .toMatchObject to check that a javascript object matches a subset of the properties of an object. + */ + toMatchObject(object: Object | Array): void; + /** + * Use .toStrictEqual to check that a javascript object matches a subset of the properties of an object. + */ + toStrictEqual(value: any): void; + /** + * This ensures that an Object matches the most recent snapshot. + */ + toMatchSnapshot(propertyMatchers?: any, name?: string): void; + /** + * This ensures that an Object matches the most recent snapshot. + */ + toMatchSnapshot(name: string): void; + + toMatchInlineSnapshot(snapshot?: string): void; + toMatchInlineSnapshot(propertyMatchers?: any, snapshot?: string): void; + /** + * Use .toThrow to test that a function throws when it is called. + * If you want to test that a specific error gets thrown, you can provide an + * argument to toThrow. The argument can be a string for the error message, + * a class for the error, or a regex that should match the error. + * + * Alias: .toThrowError + */ + toThrow(message?: string | Error | Class | RegExp): void; + toThrowError(message?: string | Error | Class | RegExp): void; + /** + * Use .toThrowErrorMatchingSnapshot to test that a function throws a error + * matching the most recent snapshot when it is called. + */ + toThrowErrorMatchingSnapshot(): void; + toThrowErrorMatchingInlineSnapshot(snapshot?: string): void; +} + +type JestObjectType = { + /** + * Disables automatic mocking in the module loader. + * + * After this method is called, all `require()`s will return the real + * versions of each module (rather than a mocked version). + */ + disableAutomock(): JestObjectType, + /** + * An un-hoisted version of disableAutomock + */ + autoMockOff(): JestObjectType, + /** + * Enables automatic mocking in the module loader. + */ + enableAutomock(): JestObjectType, + /** + * An un-hoisted version of enableAutomock + */ + autoMockOn(): JestObjectType, + /** + * Clears the mock.calls and mock.instances properties of all mocks. + * Equivalent to calling .mockClear() on every mocked function. + */ + clearAllMocks(): JestObjectType, + /** + * Resets the state of all mocks. Equivalent to calling .mockReset() on every + * mocked function. + */ + resetAllMocks(): JestObjectType, + /** + * Restores all mocks back to their original value. + */ + restoreAllMocks(): JestObjectType, + /** + * Removes any pending timers from the timer system. + */ + clearAllTimers(): void, + /** + * Returns the number of fake timers still left to run. + */ + getTimerCount(): number, + /** + * The same as `mock` but not moved to the top of the expectation by + * babel-jest. + */ + doMock(moduleName: string, moduleFactory?: any): JestObjectType, + /** + * The same as `unmock` but not moved to the top of the expectation by + * babel-jest. + */ + dontMock(moduleName: string): JestObjectType, + /** + * Returns a new, unused mock function. Optionally takes a mock + * implementation. + */ + fn, TReturn>( + implementation?: (...args: TArguments) => TReturn + ): JestMockFn, + /** + * Determines if the given function is a mocked function. + */ + isMockFunction(fn: Function): boolean, + /** + * Given the name of a module, use the automatic mocking system to generate a + * mocked version of the module for you. + */ + genMockFromModule(moduleName: string): any, + /** + * Mocks a module with an auto-mocked version when it is being required. + * + * The second argument can be used to specify an explicit module factory that + * is being run instead of using Jest's automocking feature. + * + * The third argument can be used to create virtual mocks -- mocks of modules + * that don't exist anywhere in the system. + */ + mock( + moduleName: string, + moduleFactory?: any, + options?: Object + ): JestObjectType, + /** + * Returns the actual module instead of a mock, bypassing all checks on + * whether the module should receive a mock implementation or not. + */ + requireActual(moduleName: string): any, + /** + * Returns a mock module instead of the actual module, bypassing all checks + * on whether the module should be required normally or not. + */ + requireMock(moduleName: string): any, + /** + * Resets the module registry - the cache of all required modules. This is + * useful to isolate modules where local state might conflict between tests. + */ + resetModules(): JestObjectType, + /** + * Creates a sandbox registry for the modules that are loaded inside the + * callback function. This is useful to isolate specific modules for every + * test so that local module state doesn't conflict between tests. + */ + isolateModules(fn: () => void): JestObjectType, + /** + * Exhausts the micro-task queue (usually interfaced in node via + * process.nextTick). + */ + runAllTicks(): void, + /** + * Exhausts the macro-task queue (i.e., all tasks queued by setTimeout(), + * setInterval(), and setImmediate()). + */ + runAllTimers(): void, + /** + * Exhausts all tasks queued by setImmediate(). + */ + runAllImmediates(): void, + /** + * Executes only the macro task queue (i.e. all tasks queued by setTimeout() + * or setInterval() and setImmediate()). + */ + advanceTimersByTime(msToRun: number): void, + /** + * Executes only the macro task queue (i.e. all tasks queued by setTimeout() + * or setInterval() and setImmediate()). + * + * Renamed to `advanceTimersByTime`. + */ + runTimersToTime(msToRun: number): void, + /** + * Executes only the macro-tasks that are currently pending (i.e., only the + * tasks that have been queued by setTimeout() or setInterval() up to this + * point) + */ + runOnlyPendingTimers(): void, + /** + * Explicitly supplies the mock object that the module system should return + * for the specified module. Note: It is recommended to use jest.mock() + * instead. + */ + setMock(moduleName: string, moduleExports: any): JestObjectType, + /** + * Indicates that the module system should never return a mocked version of + * the specified module from require() (e.g. that it should always return the + * real module). + */ + unmock(moduleName: string): JestObjectType, + /** + * Instructs Jest to use fake versions of the standard timer functions + * (setTimeout, setInterval, clearTimeout, clearInterval, nextTick, + * setImmediate and clearImmediate). + */ + useFakeTimers(): JestObjectType, + /** + * Instructs Jest to use the real versions of the standard timer functions. + */ + useRealTimers(): JestObjectType, + /** + * Creates a mock function similar to jest.fn but also tracks calls to + * object[methodName]. + */ + spyOn( + object: Object, + methodName: string, + accessType?: 'get' | 'set' + ): JestMockFn, + /** + * Set the default timeout interval for tests and before/after hooks in milliseconds. + * Note: The default timeout interval is 5 seconds if this method is not called. + */ + setTimeout(timeout: number): JestObjectType, + ... +}; + +type JestSpyType = { calls: JestCallsType, ... }; + +type JestDoneFn = {| + (): void, + fail: (error: Error) => void, +|}; + +/** Runs this function after every test inside this context */ +declare function afterEach( + fn: (done: JestDoneFn) => ?Promise, + timeout?: number +): void; +/** Runs this function before every test inside this context */ +declare function beforeEach( + fn: (done: JestDoneFn) => ?Promise, + timeout?: number +): void; +/** Runs this function after all tests have finished inside this context */ +declare function afterAll( + fn: (done: JestDoneFn) => ?Promise, + timeout?: number +): void; +/** Runs this function before any tests have started inside this context */ +declare function beforeAll( + fn: (done: JestDoneFn) => ?Promise, + timeout?: number +): void; + +/** A context for grouping tests together */ +declare var describe: { + /** + * Creates a block that groups together several related tests in one "test suite" + */ + (name: JestTestName, fn: () => void): void, + /** + * Only run this describe block + */ + only(name: JestTestName, fn: () => void): void, + /** + * Skip running this describe block + */ + skip(name: JestTestName, fn: () => void): void, + /** + * each runs this test against array of argument arrays per each run + * + * @param {table} table of Test + */ + each( + ...table: Array | mixed> | [Array, string] + ): ( + name: JestTestName, + fn?: (...args: Array) => ?Promise, + timeout?: number + ) => void, + ... +}; + +/** An individual test unit */ +declare var it: { + /** + * An individual test unit + * + * @param {JestTestName} Name of Test + * @param {Function} Test + * @param {number} Timeout for the test, in milliseconds. + */ + ( + name: JestTestName, + fn?: (done: JestDoneFn) => ?Promise, + timeout?: number + ): void, + /** + * Only run this test + * + * @param {JestTestName} Name of Test + * @param {Function} Test + * @param {number} Timeout for the test, in milliseconds. + */ + only: {| + ( + name: JestTestName, + fn?: (done: JestDoneFn) => ?Promise, + timeout?: number + ): void, + each( + ...table: Array | mixed> | [Array, string] + ): ( + name: JestTestName, + fn?: (...args: Array) => ?Promise, + timeout?: number + ) => void + |}, + /** + * Skip running this test + * + * @param {JestTestName} Name of Test + * @param {Function} Test + * @param {number} Timeout for the test, in milliseconds. + */ + skip( + name: JestTestName, + fn?: (done: JestDoneFn) => ?Promise, + timeout?: number + ): void, + /** + * Highlight planned tests in the summary output + * + * @param {String} Name of Test to do + */ + todo(name: string): void, + /** + * Run the test concurrently + * + * @param {JestTestName} Name of Test + * @param {Function} Test + * @param {number} Timeout for the test, in milliseconds. + */ + concurrent( + name: JestTestName, + fn?: (done: JestDoneFn) => ?Promise, + timeout?: number + ): void, + /** + * each runs this test against array of argument arrays per each run + * + * @param {table} table of Test + */ + each( + ...table: Array | mixed> | [Array, string] + ): ( + name: JestTestName, + fn?: (...args: Array) => ?Promise, + timeout?: number + ) => void, + ... +}; + +declare function fit( + name: JestTestName, + fn: (done: JestDoneFn) => ?Promise, + timeout?: number +): void; +/** An individual test unit */ +declare var test: typeof it; +/** A disabled group of tests */ +declare var xdescribe: typeof describe; +/** A focused group of tests */ +declare var fdescribe: typeof describe; +/** A disabled individual test */ +declare var xit: typeof it; +/** A disabled individual test */ +declare var xtest: typeof it; + +type JestPrettyFormatColors = { + comment: { + close: string, + open: string, + ... + }, + content: { + close: string, + open: string, + ... + }, + prop: { + close: string, + open: string, + ... + }, + tag: { + close: string, + open: string, + ... + }, + value: { + close: string, + open: string, + ... + }, + ... +}; + +type JestPrettyFormatIndent = string => string; +type JestPrettyFormatRefs = Array; +type JestPrettyFormatPrint = any => string; +type JestPrettyFormatStringOrNull = string | null; + +type JestPrettyFormatOptions = {| + callToJSON: boolean, + edgeSpacing: string, + escapeRegex: boolean, + highlight: boolean, + indent: number, + maxDepth: number, + min: boolean, + plugins: JestPrettyFormatPlugins, + printFunctionName: boolean, + spacing: string, + theme: {| + comment: string, + content: string, + prop: string, + tag: string, + value: string, + |}, +|}; + +type JestPrettyFormatPlugin = { + print: ( + val: any, + serialize: JestPrettyFormatPrint, + indent: JestPrettyFormatIndent, + opts: JestPrettyFormatOptions, + colors: JestPrettyFormatColors + ) => string, + test: any => boolean, + ... +}; + +type JestPrettyFormatPlugins = Array; + +/** The expect function is used every time you want to test a value */ +declare var expect: { + /** The object that you want to make assertions against */ + ( + value: any + ): JestExpectType & + JestPromiseType & + EnzymeMatchersType & + DomTestingLibraryType & + JestJQueryMatchersType & + JestStyledComponentsMatchersType & + JestExtendedMatchersType, + /** Add additional Jasmine matchers to Jest's roster */ + extend(matchers: { [name: string]: JestMatcher, ... }): void, + /** Add a module that formats application-specific data structures. */ + addSnapshotSerializer(pluginModule: JestPrettyFormatPlugin): void, + assertions(expectedAssertions: number): void, + hasAssertions(): void, + any(value: mixed): JestAsymmetricEqualityType, + anything(): any, + arrayContaining(value: Array): Array, + objectContaining(value: Object): Object, + /** Matches any received string that contains the exact expected string. */ + stringContaining(value: string): string, + stringMatching(value: string | RegExp): string, + not: { + arrayContaining: (value: $ReadOnlyArray) => Array, + objectContaining: (value: {...}) => Object, + stringContaining: (value: string) => string, + stringMatching: (value: string | RegExp) => string, + ... + }, + ... +}; + +// TODO handle return type +// http://jasmine.github.io/2.4/introduction.html#section-Spies +declare function spyOn(value: mixed, method: string): Object; + +/** Holds all functions related to manipulating test runner */ +declare var jest: JestObjectType; + +/** + * The global Jasmine object, this is generally not exposed as the public API, + * using features inside here could break in later versions of Jest. + */ +declare var jasmine: { + DEFAULT_TIMEOUT_INTERVAL: number, + any(value: mixed): JestAsymmetricEqualityType, + anything(): any, + arrayContaining(value: Array): Array, + clock(): JestClockType, + createSpy(name: string): JestSpyType, + createSpyObj( + baseName: string, + methodNames: Array + ): { [methodName: string]: JestSpyType, ... }, + objectContaining(value: Object): Object, + stringMatching(value: string): string, + ... +}; diff --git a/flow-typed/npm/json-loader_vx.x.x.js b/flow-typed/npm/json-loader_vx.x.x.js index 271f4cf6..afaf5092 100644 --- a/flow-typed/npm/json-loader_vx.x.x.js +++ b/flow-typed/npm/json-loader_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 03b5c0e56ca10c4e61dfdd469b8287a3 -// flow-typed version: <>/json-loader_v^0.5.7/flow_v0.66.0 +// flow-typed signature: 94d9b00476c3f553cdd4c60da7545b30 +// flow-typed version: <>/json-loader_v^0.5.7/flow_v0.112.0 /** * This is an autogenerated libdef stub for: diff --git a/flow-typed/npm/material-ui-icons_vx.x.x.js b/flow-typed/npm/material-ui-icons_vx.x.x.js deleted file mode 100644 index e46ef3e5..00000000 --- a/flow-typed/npm/material-ui-icons_vx.x.x.js +++ /dev/null @@ -1,13471 +0,0 @@ -// flow-typed signature: 4c404d083b74ba819879c2356588a835 -// flow-typed version: <>/material-ui-icons_v^1.0.0-beta.35/flow_v0.66.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'material-ui-icons' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'material-ui-icons' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'material-ui-icons/AccessAlarm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccessAlarms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Accessibility' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Accessible' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccessTime' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccountBalance' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccountBalanceWallet' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccountBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AccountCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AcUnit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Adb' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Add' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddAlarm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddAlert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddAPhoto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddLocation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddShoppingCart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddToPhotos' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AddToQueue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Adjust' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatFlat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatFlatAngled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatIndividualSuite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatLegroomExtra' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatLegroomNormal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatLegroomReduced' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatReclineExtra' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirlineSeatReclineNormal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirplanemodeActive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirplanemodeInactive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Airplay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AirportShuttle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Alarm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AlarmAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AlarmOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AlarmOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Album' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AllInclusive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AllOut' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Android' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Announcement' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Apps' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Archive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowBack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowDownward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowDropDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowDropDownCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowDropUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowForward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArrowUpward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ArtTrack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AspectRatio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Assessment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Assignment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentInd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentLate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentReturn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentReturned' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssignmentTurnedIn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Assistant' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AssistantPhoto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AttachFile' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Attachment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AttachMoney' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Audiotrack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Autorenew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/AvTimer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Backspace' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Backup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery20' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery50' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery60' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery80' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Battery90' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryAlert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging20' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging50' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging60' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging80' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryCharging90' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryChargingFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryStd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BatteryUnknown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BeachAccess' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Beenhere' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Block' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Bluetooth' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BluetoothAudio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BluetoothConnected' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BluetoothDisabled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BluetoothSearching' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BlurCircular' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BlurLinear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BlurOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BlurOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Book' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Bookmark' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BookmarkBorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderBottom' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderClear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderColor' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderHorizontal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderInner' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderOuter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderStyle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderTop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BorderVertical' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrandingWatermark' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness4' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness6' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brightness7' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrightnessAuto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrightnessHigh' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrightnessLow' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrightnessMedium' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BrokenImage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Brush' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BubbleChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BugReport' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Build' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BurstMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Business' { - declare module.exports: any; -} - -declare module 'material-ui-icons/BusinessCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cached' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cake' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Call' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallEnd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallMade' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallMerge' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallMissed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallMissedOutgoing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallReceived' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallSplit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CallToAction' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Camera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraEnhance' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraFront' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraRear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CameraRoll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cancel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CardGiftcard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CardMembership' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CardTravel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Casino' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cast' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CastConnected' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CenterFocusStrong' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CenterFocusWeak' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChangeHistory' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Chat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChatBubble' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChatBubbleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Check' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CheckBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CheckBoxOutlineBlank' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CheckCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChevronLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChevronRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChildCare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChildFriendly' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ChromeReaderMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Class' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Clear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ClearAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Close' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ClosedCaption' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Cloud' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudDone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudDownload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudQueue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CloudUpload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Code' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Collections' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CollectionsBookmark' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Colorize' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ColorLens' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Comment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Compare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CompareArrows' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Computer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ConfirmationNumber' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContactMail' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContactPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Contacts' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContentCopy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContentCut' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ContentPaste' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ControlPoint' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ControlPointDuplicate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Copyright' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Create' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CreateNewFolder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CreditCard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop169' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop32' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop54' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Crop75' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropDin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropFree' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropOriginal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropRotate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/CropSquare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dashboard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DataUsage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DateRange' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dehaze' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Delete' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeleteForever' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeleteSweep' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Description' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DesktopMac' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DesktopWindows' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Details' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeveloperBoard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeveloperMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DeviceHub' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Devices' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DevicesOther' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DialerSip' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dialpad' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Directions' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsBike' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsBoat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsBus' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsCar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsRailway' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsRun' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsSubway' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsTransit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DirectionsWalk' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DiscFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dns' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Domain' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Done' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoneAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoNotDisturb' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoNotDisturbAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoNotDisturbOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DoNotDisturbOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DonutLarge' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DonutSmall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Drafts' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DragHandle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/DriveEta' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Dvr' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Edit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EditLocation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Eject' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Email' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EnhancedEncryption' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Equalizer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Error' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ErrorOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AccessAlarm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AccessAlarms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Accessibility' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Accessible' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AccessTime' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AccountBalance' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AccountBalanceWallet' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AccountBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AccountCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AcUnit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Adb' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Add' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddAlarm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddAlert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddAPhoto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddLocation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddShoppingCart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddToPhotos' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AddToQueue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Adjust' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirlineSeatFlat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirlineSeatFlatAngled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirlineSeatIndividualSuite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirlineSeatLegroomExtra' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirlineSeatLegroomNormal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirlineSeatLegroomReduced' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirlineSeatReclineExtra' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirlineSeatReclineNormal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirplanemodeActive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirplanemodeInactive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Airplay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AirportShuttle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Alarm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AlarmAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AlarmOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AlarmOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Album' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AllInclusive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AllOut' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Android' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Announcement' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Apps' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Archive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ArrowBack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ArrowDownward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ArrowDropDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ArrowDropDownCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ArrowDropUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ArrowForward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ArrowUpward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ArtTrack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AspectRatio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Assessment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Assignment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AssignmentInd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AssignmentLate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AssignmentReturn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AssignmentReturned' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AssignmentTurnedIn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Assistant' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AssistantPhoto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AttachFile' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Attachment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AttachMoney' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Audiotrack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Autorenew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/AvTimer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Backspace' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Backup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Battery20' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Battery30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Battery50' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Battery60' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Battery80' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Battery90' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryAlert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryCharging20' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryCharging30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryCharging50' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryCharging60' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryCharging80' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryCharging90' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryChargingFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryStd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BatteryUnknown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BeachAccess' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Beenhere' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Block' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Bluetooth' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BluetoothAudio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BluetoothConnected' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BluetoothDisabled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BluetoothSearching' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BlurCircular' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BlurLinear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BlurOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BlurOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Book' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Bookmark' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BookmarkBorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderBottom' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderClear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderColor' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderHorizontal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderInner' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderOuter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderStyle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderTop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BorderVertical' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BrandingWatermark' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Brightness1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Brightness2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Brightness3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Brightness4' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Brightness5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Brightness6' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Brightness7' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BrightnessAuto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BrightnessHigh' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BrightnessLow' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BrightnessMedium' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BrokenImage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Brush' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BubbleChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BugReport' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Build' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BurstMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Business' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/BusinessCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Cached' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Cake' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Call' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CallEnd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CallMade' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CallMerge' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CallMissed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CallMissedOutgoing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CallReceived' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CallSplit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CallToAction' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Camera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CameraAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CameraEnhance' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CameraFront' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CameraRear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CameraRoll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Cancel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CardGiftcard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CardMembership' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CardTravel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Casino' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Cast' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CastConnected' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CenterFocusStrong' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CenterFocusWeak' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ChangeHistory' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Chat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ChatBubble' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ChatBubbleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Check' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CheckBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CheckBoxOutlineBlank' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CheckCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ChevronLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ChevronRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ChildCare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ChildFriendly' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ChromeReaderMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Class' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Clear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ClearAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Close' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ClosedCaption' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Cloud' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CloudCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CloudDone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CloudDownload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CloudOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CloudQueue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CloudUpload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Code' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Collections' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CollectionsBookmark' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Colorize' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ColorLens' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Comment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Compare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CompareArrows' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Computer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ConfirmationNumber' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ContactMail' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ContactPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Contacts' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ContentCopy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ContentCut' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ContentPaste' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ControlPoint' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ControlPointDuplicate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Copyright' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Create' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CreateNewFolder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CreditCard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Crop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Crop169' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Crop32' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Crop54' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Crop75' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CropDin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CropFree' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CropLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CropOriginal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CropPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CropRotate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/CropSquare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Dashboard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DataUsage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DateRange' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Dehaze' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Delete' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DeleteForever' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DeleteSweep' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Description' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DesktopMac' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DesktopWindows' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Details' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DeveloperBoard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DeveloperMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DeviceHub' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Devices' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DevicesOther' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DialerSip' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Dialpad' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Directions' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DirectionsBike' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DirectionsBoat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DirectionsBus' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DirectionsCar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DirectionsRailway' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DirectionsRun' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DirectionsSubway' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DirectionsTransit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DirectionsWalk' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DiscFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Dns' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Dock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Domain' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Done' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DoneAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DoNotDisturb' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DoNotDisturbAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DoNotDisturbOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DoNotDisturbOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DonutLarge' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DonutSmall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Drafts' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DragHandle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/DriveEta' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Dvr' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Edit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/EditLocation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Eject' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Email' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/EnhancedEncryption' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Equalizer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Error' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ErrorOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/EuroSymbol' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Event' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/EventAvailable' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/EventBusy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/EventNote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/EventSeat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/EvStation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ExitToApp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ExpandLess' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ExpandMore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Explicit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Explore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Exposure' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ExposureNeg1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ExposureNeg2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ExposurePlus1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ExposurePlus2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ExposureZero' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Extension' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Face' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FastForward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FastRewind' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Favorite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FavoriteBorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FeaturedPlayList' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FeaturedVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Feedback' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FiberDvr' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FiberManualRecord' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FiberNew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FiberPin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FiberSmartRecord' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FileDownload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FileUpload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter4' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter6' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter7' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter8' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter9' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Filter9Plus' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FilterBAndW' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FilterCenterFocus' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FilterDrama' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FilterFrames' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FilterHdr' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FilterList' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FilterNone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FilterTiltShift' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FilterVintage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FindInPage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FindReplace' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Fingerprint' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FirstPage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FitnessCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Flag' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Flare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FlashAuto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FlashOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FlashOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Flight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FlightLand' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FlightTakeoff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Flip' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FlipToBack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FlipToFront' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Folder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FolderOpen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FolderShared' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FolderSpecial' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FontDownload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatAlignCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatAlignJustify' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatAlignLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatAlignRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatBold' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatClear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatColorFill' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatColorReset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatColorText' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatIndentDecrease' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatIndentIncrease' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatItalic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatLineSpacing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatListBulleted' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatListNumbered' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatPaint' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatQuote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatShapes' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatSize' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatStrikethrough' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatTextdirectionLToR' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatTextdirectionRToL' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FormatUnderlined' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Forum' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Forward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Forward10' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Forward30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Forward5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FreeBreakfast' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Fullscreen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/FullscreenExit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Functions' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Gamepad' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Games' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Gavel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Gesture' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GetApp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Gif' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GolfCourse' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GpsFixed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GpsNotFixed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GpsOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Grade' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Gradient' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Grain' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GraphicEq' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GridOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GridOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Group' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GroupAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GroupWork' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/GTranslate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Hd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HdrOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HdrOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HdrStrong' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HdrWeak' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Headset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HeadsetMic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Healing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Hearing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Help' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HelpOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Highlight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HighlightOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HighQuality' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/History' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Home' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Hotel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HotTub' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HourglassEmpty' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/HourglassFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Http' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Https' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Image' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ImageAspectRatio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ImportantDevices' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ImportContacts' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ImportExport' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Inbox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/IndeterminateCheckBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/index' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Info' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InfoOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Input' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InsertChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InsertComment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InsertDriveFile' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InsertEmoticon' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InsertInvitation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InsertLink' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InsertPhoto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InvertColors' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/InvertColorsOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Iso' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Keyboard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardArrowDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardArrowLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardArrowRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardArrowUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardBackspace' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardCapslock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardHide' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardReturn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardTab' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/KeyboardVoice' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Kitchen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Label' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LabelOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Landscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Language' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Laptop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LaptopChromebook' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LaptopMac' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LaptopWindows' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LastPage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Launch' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Layers' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LayersClear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LeakAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LeakRemove' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Lens' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LibraryAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LibraryBooks' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LibraryMusic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LightbulbOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LinearScale' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LineStyle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LineWeight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Link' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LinkedCamera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/List' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LiveHelp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LiveTv' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalActivity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalAirport' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalAtm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalBar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalCafe' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalCarWash' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalConvenienceStore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalDining' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalDrink' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalFlorist' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalGasStation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalGroceryStore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalHospital' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalHotel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalLaundryService' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalLibrary' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalMall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalMovies' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalOffer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalParking' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalPharmacy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalPizza' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalPlay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalPostOffice' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalPrintshop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalSee' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalShipping' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocalTaxi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocationCity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocationDisabled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocationOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocationOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LocationSearching' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Lock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LockOpen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LockOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Looks' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Looks3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Looks4' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Looks5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Looks6' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LooksOne' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LooksTwo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Loop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Loupe' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/LowPriority' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Loyalty' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Mail' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MailOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Map' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Markunread' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MarkunreadMailbox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Memory' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Menu' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MergeType' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Message' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Mic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MicNone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MicOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Mms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ModeComment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ModeEdit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MonetizationOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MoneyOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MonochromePhotos' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Mood' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MoodBad' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/More' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MoreHoriz' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MoreVert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Motorcycle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Mouse' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MoveToInbox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Movie' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MovieCreation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MovieFilter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MultilineChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MusicNote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MusicVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/MyLocation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Nature' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NaturePeople' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NavigateBefore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NavigateNext' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Navigation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NearMe' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NetworkCell' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NetworkCheck' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NetworkLocked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NetworkWifi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NewReleases' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NextWeek' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Nfc' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NoEncryption' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NoSim' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Note' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NoteAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Notifications' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NotificationsActive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NotificationsNone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NotificationsOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NotificationsPaused' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/NotInterested' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/OfflinePin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/OndemandVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Opacity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/OpenInBrowser' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/OpenInNew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/OpenWith' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Pages' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Pageview' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Palette' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Panorama' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PanoramaFishEye' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PanoramaHorizontal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PanoramaVertical' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PanoramaWideAngle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PanTool' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PartyMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Pause' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PauseCircleFilled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PauseCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Payment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/People' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PeopleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PermCameraMic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PermContactCalendar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PermDataSetting' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PermDeviceInformation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PermIdentity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PermMedia' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PermPhoneMsg' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PermScanWifi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Person' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PersonAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PersonalVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PersonOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PersonPin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PersonPinCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Pets' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Phone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhoneAndroid' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhoneBluetoothSpeaker' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhoneForwarded' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhoneInTalk' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhoneIphone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Phonelink' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhonelinkErase' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhonelinkLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhonelinkOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhonelinkRing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhonelinkSetup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhoneLocked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhoneMissed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhonePaused' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Photo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhotoAlbum' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhotoCamera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhotoFilter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhotoLibrary' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhotoSizeSelectActual' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhotoSizeSelectLarge' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PhotoSizeSelectSmall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PictureAsPdf' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PictureInPicture' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PictureInPictureAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PieChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PieChartOutlined' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PinDrop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Place' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PlayArrow' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PlayCircleFilled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PlayCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PlayForWork' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PlaylistAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PlaylistAddCheck' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PlaylistPlay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PlusOne' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Poll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Polymer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Pool' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PortableWifiOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Portrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Power' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PowerInput' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PowerSettingsNew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PregnantWoman' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PresentToAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Print' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/PriorityHigh' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Public' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Publish' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/QueryBuilder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/QuestionAnswer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Queue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/QueueMusic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/QueuePlayNext' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Radio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RadioButtonChecked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RadioButtonUnchecked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RateReview' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Receipt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RecentActors' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RecordVoiceOver' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Redeem' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Redo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Refresh' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Remove' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RemoveCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RemoveCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RemoveFromQueue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RemoveRedEye' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RemoveShoppingCart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Reorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Repeat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RepeatOne' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Replay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Replay10' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Replay30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Replay5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Reply' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ReplyAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Report' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ReportProblem' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Restaurant' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RestaurantMenu' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Restore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RestorePage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RingVolume' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Room' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RoomService' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Rotate90DegreesCcw' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RotateLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RotateRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RoundedCorner' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Router' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Rowing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RssFeed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/RvHookup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Satellite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Save' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Scanner' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Schedule' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/School' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ScreenLockLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ScreenLockPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ScreenLockRotation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ScreenRotation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ScreenShare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SdCard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SdStorage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Search' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Security' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SelectAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Send' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SentimentDissatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SentimentNeutral' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SentimentSatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SentimentVeryDissatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SentimentVerySatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Settings' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsApplications' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsBackupRestore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsBluetooth' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsBrightness' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsCell' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsEthernet' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsInputAntenna' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsInputComponent' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsInputComposite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsInputHdmi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsInputSvideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsOverscan' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsPower' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsRemote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsSystemDaydream' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SettingsVoice' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Share' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Shop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ShoppingBasket' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ShoppingCart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ShopTwo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ShortText' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ShowChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Shuffle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellular0Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellular1Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellular2Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellular3Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellular4Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet0Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet1Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet2Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet3Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet4Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellularNoSim' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellularNull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalCellularOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifi0Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifi1Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifi1BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifi2Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifi2BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifi3Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifi3BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifi4Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifi4BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SignalWifiOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SimCard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SimCardAlert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SkipNext' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SkipPrevious' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Slideshow' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SlowMotionVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Smartphone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SmokeFree' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SmokingRooms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Sms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SmsFailed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Snooze' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Sort' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SortByAlpha' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Spa' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SpaceBar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Speaker' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SpeakerGroup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SpeakerNotes' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SpeakerNotesOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SpeakerPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Spellcheck' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Star' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/StarBorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/StarHalf' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Stars' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/StayCurrentLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/StayCurrentPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/StayPrimaryLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/StayPrimaryPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Stop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/StopScreenShare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Storage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Store' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/StoreMallDirectory' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Straighten' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Streetview' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/StrikethroughS' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Style' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SubdirectoryArrowLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SubdirectoryArrowRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Subject' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Subscriptions' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Subtitles' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Subway' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SupervisorAccount' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SurroundSound' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SwapCalls' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SwapHoriz' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SwapVert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SwapVerticalCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SwitchCamera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SwitchVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Sync' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SyncDisabled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SyncProblem' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SystemUpdate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/SystemUpdateAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Tab' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Tablet' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TabletAndroid' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TabletMac' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TabUnselected' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TagFaces' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TapAndPlay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Terrain' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TextFields' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TextFormat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Textsms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Texture' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Theaters' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ThreeDRotation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ThumbDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ThumbsUpDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ThumbUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Timelapse' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Timeline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Timer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Timer10' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Timer3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TimerOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TimeToLeave' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Title' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Toc' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Today' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Toll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Tonality' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TouchApp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Toys' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TrackChanges' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Traffic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Train' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Tram' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TransferWithinAStation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Transform' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Translate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TrendingDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TrendingFlat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TrendingUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Tune' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TurnedIn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/TurnedInNot' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Tv' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Unarchive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Undo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/UnfoldLess' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/UnfoldMore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Update' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Usb' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VerifiedUser' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VerticalAlignBottom' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VerticalAlignCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VerticalAlignTop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Vibration' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VideoCall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Videocam' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VideocamOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VideogameAsset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VideoLabel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VideoLibrary' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewAgenda' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewArray' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewCarousel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewColumn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewComfy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewCompact' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewDay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewHeadline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewList' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewModule' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewQuilt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewStream' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ViewWeek' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Vignette' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Visibility' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VisibilityOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VoiceChat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Voicemail' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VolumeDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VolumeMute' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VolumeOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VolumeUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VpnKey' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/VpnLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Wallpaper' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Warning' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Watch' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WatchLater' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WbAuto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WbCloudy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WbIncandescent' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WbIridescent' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WbSunny' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Wc' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Web' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WebAsset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Weekend' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Whatshot' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Widgets' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Wifi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WifiLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WifiTethering' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/Work' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/WrapText' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/YoutubeSearchedFor' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ZoomIn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ZoomOut' { - declare module.exports: any; -} - -declare module 'material-ui-icons/es/ZoomOutMap' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EuroSymbol' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Event' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EventAvailable' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EventBusy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EventNote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EventSeat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/EvStation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExitToApp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExpandLess' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExpandMore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Explicit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Explore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Exposure' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposureNeg1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposureNeg2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposurePlus1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposurePlus2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ExposureZero' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Extension' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Face' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FastForward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FastRewind' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Favorite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FavoriteBorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FeaturedPlayList' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FeaturedVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Feedback' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberDvr' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberManualRecord' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberNew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberPin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FiberSmartRecord' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FileDownload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FileUpload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter1' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter2' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter4' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter6' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter7' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter8' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter9' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Filter9Plus' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterBAndW' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterCenterFocus' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterDrama' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterFrames' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterHdr' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterList' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterNone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterTiltShift' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FilterVintage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FindInPage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FindReplace' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Fingerprint' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FirstPage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FitnessCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Flag' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Flare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlashAuto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlashOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlashOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Flight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlightLand' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlightTakeoff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Flip' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlipToBack' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FlipToFront' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Folder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FolderOpen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FolderShared' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FolderSpecial' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FontDownload' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatAlignCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatAlignJustify' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatAlignLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatAlignRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatBold' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatClear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatColorFill' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatColorReset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatColorText' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatIndentDecrease' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatIndentIncrease' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatItalic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatLineSpacing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatListBulleted' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatListNumbered' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatPaint' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatQuote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatShapes' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatSize' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatStrikethrough' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatTextdirectionLToR' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatTextdirectionRToL' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FormatUnderlined' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forum' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forward' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forward10' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forward30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Forward5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FreeBreakfast' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Fullscreen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/FullscreenExit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Functions' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gamepad' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Games' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gavel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gesture' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GetApp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gif' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GolfCourse' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GpsFixed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GpsNotFixed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GpsOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Grade' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Gradient' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Grain' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GraphicEq' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GridOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GridOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Group' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GroupAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GroupWork' { - declare module.exports: any; -} - -declare module 'material-ui-icons/GTranslate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Hd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HdrOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HdrOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HdrStrong' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HdrWeak' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Headset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HeadsetMic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Healing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Hearing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Help' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HelpOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Highlight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HighlightOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HighQuality' { - declare module.exports: any; -} - -declare module 'material-ui-icons/History' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Home' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Hotel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HotTub' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HourglassEmpty' { - declare module.exports: any; -} - -declare module 'material-ui-icons/HourglassFull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Http' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Https' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Image' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ImageAspectRatio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ImportantDevices' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ImportContacts' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ImportExport' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Inbox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/IndeterminateCheckBox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/index.es' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Info' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InfoOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Input' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertComment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertDriveFile' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertEmoticon' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertInvitation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertLink' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InsertPhoto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InvertColors' { - declare module.exports: any; -} - -declare module 'material-ui-icons/InvertColorsOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Iso' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Keyboard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardArrowDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardArrowLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardArrowRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardArrowUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardBackspace' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardCapslock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardHide' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardReturn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardTab' { - declare module.exports: any; -} - -declare module 'material-ui-icons/KeyboardVoice' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Kitchen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Label' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LabelOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Landscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Language' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Laptop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LaptopChromebook' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LaptopMac' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LaptopWindows' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LastPage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Launch' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Layers' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LayersClear' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LeakAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LeakRemove' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Lens' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LibraryAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LibraryBooks' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LibraryMusic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LightbulbOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LinearScale' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LineStyle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LineWeight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Link' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LinkedCamera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/List' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LiveHelp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LiveTv' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalActivity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalAirport' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalAtm' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalBar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalCafe' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalCarWash' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalConvenienceStore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalDining' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalDrink' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalFlorist' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalGasStation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalGroceryStore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalHospital' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalHotel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalLaundryService' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalLibrary' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalMall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalMovies' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalOffer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalParking' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPharmacy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPizza' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPlay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPostOffice' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalPrintshop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalSee' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalShipping' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocalTaxi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationCity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationDisabled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LocationSearching' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Lock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LockOpen' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LockOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks4' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Looks6' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LooksOne' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LooksTwo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Loop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Loupe' { - declare module.exports: any; -} - -declare module 'material-ui-icons/LowPriority' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Loyalty' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mail' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MailOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Map' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Markunread' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MarkunreadMailbox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Memory' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Menu' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MergeType' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Message' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MicNone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MicOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ModeComment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ModeEdit' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MonetizationOn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoneyOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MonochromePhotos' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mood' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoodBad' { - declare module.exports: any; -} - -declare module 'material-ui-icons/More' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoreHoriz' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoreVert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Motorcycle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Mouse' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MoveToInbox' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Movie' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MovieCreation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MovieFilter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MultilineChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MusicNote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MusicVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/MyLocation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Nature' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NaturePeople' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NavigateBefore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NavigateNext' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Navigation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NearMe' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NetworkCell' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NetworkCheck' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NetworkLocked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NetworkWifi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NewReleases' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NextWeek' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Nfc' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NoEncryption' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NoSim' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Note' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NoteAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Notifications' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotificationsActive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotificationsNone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotificationsOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotificationsPaused' { - declare module.exports: any; -} - -declare module 'material-ui-icons/NotInterested' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OfflinePin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OndemandVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Opacity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OpenInBrowser' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OpenInNew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/OpenWith' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pages' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pageview' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Palette' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Panorama' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanoramaFishEye' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanoramaHorizontal' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanoramaVertical' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanoramaWideAngle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PanTool' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PartyMode' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pause' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PauseCircleFilled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PauseCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Payment' { - declare module.exports: any; -} - -declare module 'material-ui-icons/People' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PeopleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermCameraMic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermContactCalendar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermDataSetting' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermDeviceInformation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermIdentity' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermMedia' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermPhoneMsg' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PermScanWifi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Person' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonalVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonPin' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PersonPinCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pets' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Phone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneAndroid' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneBluetoothSpeaker' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneForwarded' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneInTalk' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneIphone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Phonelink' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkErase' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkRing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonelinkSetup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneLocked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhoneMissed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhonePaused' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Photo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoAlbum' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoCamera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoFilter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoLibrary' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoSizeSelectActual' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoSizeSelectLarge' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PhotoSizeSelectSmall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PictureAsPdf' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PictureInPicture' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PictureInPictureAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PieChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PieChartOutlined' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PinDrop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Place' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlayArrow' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlayCircleFilled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlayCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlayForWork' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlaylistAdd' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlaylistAddCheck' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlaylistPlay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PlusOne' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Poll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Polymer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Pool' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PortableWifiOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Portrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Power' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PowerInput' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PowerSettingsNew' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PregnantWoman' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PresentToAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Print' { - declare module.exports: any; -} - -declare module 'material-ui-icons/PriorityHigh' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Public' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Publish' { - declare module.exports: any; -} - -declare module 'material-ui-icons/QueryBuilder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/QuestionAnswer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Queue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/QueueMusic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/QueuePlayNext' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Radio' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RadioButtonChecked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RadioButtonUnchecked' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RateReview' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Receipt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RecentActors' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RecordVoiceOver' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Redeem' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Redo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Refresh' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Remove' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveCircleOutline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveFromQueue' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveRedEye' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RemoveShoppingCart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Reorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Repeat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RepeatOne' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Replay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Replay10' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Replay30' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Replay5' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Reply' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ReplyAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Report' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ReportProblem' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Restaurant' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RestaurantMenu' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Restore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RestorePage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RingVolume' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Room' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RoomService' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Rotate90DegreesCcw' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RotateLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RotateRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RoundedCorner' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Router' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Rowing' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RssFeed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/RvHookup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Satellite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Save' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Scanner' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Schedule' { - declare module.exports: any; -} - -declare module 'material-ui-icons/School' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenLockLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenLockPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenLockRotation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenRotation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ScreenShare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SdCard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SdStorage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Search' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Security' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SelectAll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Send' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentDissatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentNeutral' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentSatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentVeryDissatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SentimentVerySatisfied' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Settings' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsApplications' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsBackupRestore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsBluetooth' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsBrightness' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsCell' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsEthernet' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputAntenna' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputComponent' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputComposite' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputHdmi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsInputSvideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsOverscan' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsPower' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsRemote' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsSystemDaydream' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SettingsVoice' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Share' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Shop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShoppingBasket' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShoppingCart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShopTwo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShortText' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ShowChart' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Shuffle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular0Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular1Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular2Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular3Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellular4Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet0Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet1Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet2Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet3Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularConnectedNoInternet4Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularNoSim' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularNull' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalCellularOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi0Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi1Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi1BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi2Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi2BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi3Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi3BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi4Bar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifi4BarLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SignalWifiOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SimCard' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SimCardAlert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SkipNext' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SkipPrevious' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Slideshow' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SlowMotionVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Smartphone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SmokeFree' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SmokingRooms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Sms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SmsFailed' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Snooze' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Sort' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SortByAlpha' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Spa' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpaceBar' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Speaker' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpeakerGroup' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpeakerNotes' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpeakerNotesOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SpeakerPhone' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Spellcheck' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Star' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StarBorder' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StarHalf' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Stars' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StayCurrentLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StayCurrentPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StayPrimaryLandscape' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StayPrimaryPortrait' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Stop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StopScreenShare' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Storage' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Store' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StoreMallDirectory' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Straighten' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Streetview' { - declare module.exports: any; -} - -declare module 'material-ui-icons/StrikethroughS' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Style' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SubdirectoryArrowLeft' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SubdirectoryArrowRight' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Subject' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Subscriptions' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Subtitles' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Subway' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SupervisorAccount' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SurroundSound' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwapCalls' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwapHoriz' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwapVert' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwapVerticalCircle' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwitchCamera' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SwitchVideo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Sync' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SyncDisabled' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SyncProblem' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SystemUpdate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/SystemUpdateAlt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tab' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tablet' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TabletAndroid' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TabletMac' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TabUnselected' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TagFaces' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TapAndPlay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Terrain' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TextFields' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TextFormat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Textsms' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Texture' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Theaters' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ThreeDRotation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ThumbDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ThumbsUpDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ThumbUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timelapse' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timeline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timer' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timer10' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Timer3' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TimerOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TimeToLeave' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Title' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Toc' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Today' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Toll' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tonality' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TouchApp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Toys' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TrackChanges' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Traffic' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Train' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tram' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TransferWithinAStation' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Transform' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Translate' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TrendingDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TrendingFlat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TrendingUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tune' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TurnedIn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/TurnedInNot' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Tv' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Unarchive' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Undo' { - declare module.exports: any; -} - -declare module 'material-ui-icons/UnfoldLess' { - declare module.exports: any; -} - -declare module 'material-ui-icons/UnfoldMore' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Update' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Usb' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VerifiedUser' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VerticalAlignBottom' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VerticalAlignCenter' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VerticalAlignTop' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Vibration' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideoCall' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Videocam' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideocamOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideogameAsset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideoLabel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VideoLibrary' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewAgenda' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewArray' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewCarousel' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewColumn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewComfy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewCompact' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewDay' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewHeadline' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewList' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewModule' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewQuilt' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewStream' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ViewWeek' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Vignette' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Visibility' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VisibilityOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VoiceChat' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Voicemail' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VolumeDown' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VolumeMute' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VolumeOff' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VolumeUp' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VpnKey' { - declare module.exports: any; -} - -declare module 'material-ui-icons/VpnLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Wallpaper' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Warning' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Watch' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WatchLater' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbAuto' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbCloudy' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbIncandescent' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbIridescent' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WbSunny' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Wc' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Web' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WebAsset' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Weekend' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Whatshot' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Widgets' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Wifi' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WifiLock' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WifiTethering' { - declare module.exports: any; -} - -declare module 'material-ui-icons/Work' { - declare module.exports: any; -} - -declare module 'material-ui-icons/WrapText' { - declare module.exports: any; -} - -declare module 'material-ui-icons/YoutubeSearchedFor' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ZoomIn' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ZoomOut' { - declare module.exports: any; -} - -declare module 'material-ui-icons/ZoomOutMap' { - declare module.exports: any; -} - -// Filename aliases -declare module 'material-ui-icons/AccessAlarm.js' { - declare module.exports: $Exports<'material-ui-icons/AccessAlarm'>; -} -declare module 'material-ui-icons/AccessAlarms.js' { - declare module.exports: $Exports<'material-ui-icons/AccessAlarms'>; -} -declare module 'material-ui-icons/Accessibility.js' { - declare module.exports: $Exports<'material-ui-icons/Accessibility'>; -} -declare module 'material-ui-icons/Accessible.js' { - declare module.exports: $Exports<'material-ui-icons/Accessible'>; -} -declare module 'material-ui-icons/AccessTime.js' { - declare module.exports: $Exports<'material-ui-icons/AccessTime'>; -} -declare module 'material-ui-icons/AccountBalance.js' { - declare module.exports: $Exports<'material-ui-icons/AccountBalance'>; -} -declare module 'material-ui-icons/AccountBalanceWallet.js' { - declare module.exports: $Exports<'material-ui-icons/AccountBalanceWallet'>; -} -declare module 'material-ui-icons/AccountBox.js' { - declare module.exports: $Exports<'material-ui-icons/AccountBox'>; -} -declare module 'material-ui-icons/AccountCircle.js' { - declare module.exports: $Exports<'material-ui-icons/AccountCircle'>; -} -declare module 'material-ui-icons/AcUnit.js' { - declare module.exports: $Exports<'material-ui-icons/AcUnit'>; -} -declare module 'material-ui-icons/Adb.js' { - declare module.exports: $Exports<'material-ui-icons/Adb'>; -} -declare module 'material-ui-icons/Add.js' { - declare module.exports: $Exports<'material-ui-icons/Add'>; -} -declare module 'material-ui-icons/AddAlarm.js' { - declare module.exports: $Exports<'material-ui-icons/AddAlarm'>; -} -declare module 'material-ui-icons/AddAlert.js' { - declare module.exports: $Exports<'material-ui-icons/AddAlert'>; -} -declare module 'material-ui-icons/AddAPhoto.js' { - declare module.exports: $Exports<'material-ui-icons/AddAPhoto'>; -} -declare module 'material-ui-icons/AddBox.js' { - declare module.exports: $Exports<'material-ui-icons/AddBox'>; -} -declare module 'material-ui-icons/AddCircle.js' { - declare module.exports: $Exports<'material-ui-icons/AddCircle'>; -} -declare module 'material-ui-icons/AddCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/AddCircleOutline'>; -} -declare module 'material-ui-icons/AddLocation.js' { - declare module.exports: $Exports<'material-ui-icons/AddLocation'>; -} -declare module 'material-ui-icons/AddShoppingCart.js' { - declare module.exports: $Exports<'material-ui-icons/AddShoppingCart'>; -} -declare module 'material-ui-icons/AddToPhotos.js' { - declare module.exports: $Exports<'material-ui-icons/AddToPhotos'>; -} -declare module 'material-ui-icons/AddToQueue.js' { - declare module.exports: $Exports<'material-ui-icons/AddToQueue'>; -} -declare module 'material-ui-icons/Adjust.js' { - declare module.exports: $Exports<'material-ui-icons/Adjust'>; -} -declare module 'material-ui-icons/AirlineSeatFlat.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatFlat'>; -} -declare module 'material-ui-icons/AirlineSeatFlatAngled.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatFlatAngled'>; -} -declare module 'material-ui-icons/AirlineSeatIndividualSuite.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatIndividualSuite'>; -} -declare module 'material-ui-icons/AirlineSeatLegroomExtra.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatLegroomExtra'>; -} -declare module 'material-ui-icons/AirlineSeatLegroomNormal.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatLegroomNormal'>; -} -declare module 'material-ui-icons/AirlineSeatLegroomReduced.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatLegroomReduced'>; -} -declare module 'material-ui-icons/AirlineSeatReclineExtra.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatReclineExtra'>; -} -declare module 'material-ui-icons/AirlineSeatReclineNormal.js' { - declare module.exports: $Exports<'material-ui-icons/AirlineSeatReclineNormal'>; -} -declare module 'material-ui-icons/AirplanemodeActive.js' { - declare module.exports: $Exports<'material-ui-icons/AirplanemodeActive'>; -} -declare module 'material-ui-icons/AirplanemodeInactive.js' { - declare module.exports: $Exports<'material-ui-icons/AirplanemodeInactive'>; -} -declare module 'material-ui-icons/Airplay.js' { - declare module.exports: $Exports<'material-ui-icons/Airplay'>; -} -declare module 'material-ui-icons/AirportShuttle.js' { - declare module.exports: $Exports<'material-ui-icons/AirportShuttle'>; -} -declare module 'material-ui-icons/Alarm.js' { - declare module.exports: $Exports<'material-ui-icons/Alarm'>; -} -declare module 'material-ui-icons/AlarmAdd.js' { - declare module.exports: $Exports<'material-ui-icons/AlarmAdd'>; -} -declare module 'material-ui-icons/AlarmOff.js' { - declare module.exports: $Exports<'material-ui-icons/AlarmOff'>; -} -declare module 'material-ui-icons/AlarmOn.js' { - declare module.exports: $Exports<'material-ui-icons/AlarmOn'>; -} -declare module 'material-ui-icons/Album.js' { - declare module.exports: $Exports<'material-ui-icons/Album'>; -} -declare module 'material-ui-icons/AllInclusive.js' { - declare module.exports: $Exports<'material-ui-icons/AllInclusive'>; -} -declare module 'material-ui-icons/AllOut.js' { - declare module.exports: $Exports<'material-ui-icons/AllOut'>; -} -declare module 'material-ui-icons/Android.js' { - declare module.exports: $Exports<'material-ui-icons/Android'>; -} -declare module 'material-ui-icons/Announcement.js' { - declare module.exports: $Exports<'material-ui-icons/Announcement'>; -} -declare module 'material-ui-icons/Apps.js' { - declare module.exports: $Exports<'material-ui-icons/Apps'>; -} -declare module 'material-ui-icons/Archive.js' { - declare module.exports: $Exports<'material-ui-icons/Archive'>; -} -declare module 'material-ui-icons/ArrowBack.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowBack'>; -} -declare module 'material-ui-icons/ArrowDownward.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowDownward'>; -} -declare module 'material-ui-icons/ArrowDropDown.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowDropDown'>; -} -declare module 'material-ui-icons/ArrowDropDownCircle.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowDropDownCircle'>; -} -declare module 'material-ui-icons/ArrowDropUp.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowDropUp'>; -} -declare module 'material-ui-icons/ArrowForward.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowForward'>; -} -declare module 'material-ui-icons/ArrowUpward.js' { - declare module.exports: $Exports<'material-ui-icons/ArrowUpward'>; -} -declare module 'material-ui-icons/ArtTrack.js' { - declare module.exports: $Exports<'material-ui-icons/ArtTrack'>; -} -declare module 'material-ui-icons/AspectRatio.js' { - declare module.exports: $Exports<'material-ui-icons/AspectRatio'>; -} -declare module 'material-ui-icons/Assessment.js' { - declare module.exports: $Exports<'material-ui-icons/Assessment'>; -} -declare module 'material-ui-icons/Assignment.js' { - declare module.exports: $Exports<'material-ui-icons/Assignment'>; -} -declare module 'material-ui-icons/AssignmentInd.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentInd'>; -} -declare module 'material-ui-icons/AssignmentLate.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentLate'>; -} -declare module 'material-ui-icons/AssignmentReturn.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentReturn'>; -} -declare module 'material-ui-icons/AssignmentReturned.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentReturned'>; -} -declare module 'material-ui-icons/AssignmentTurnedIn.js' { - declare module.exports: $Exports<'material-ui-icons/AssignmentTurnedIn'>; -} -declare module 'material-ui-icons/Assistant.js' { - declare module.exports: $Exports<'material-ui-icons/Assistant'>; -} -declare module 'material-ui-icons/AssistantPhoto.js' { - declare module.exports: $Exports<'material-ui-icons/AssistantPhoto'>; -} -declare module 'material-ui-icons/AttachFile.js' { - declare module.exports: $Exports<'material-ui-icons/AttachFile'>; -} -declare module 'material-ui-icons/Attachment.js' { - declare module.exports: $Exports<'material-ui-icons/Attachment'>; -} -declare module 'material-ui-icons/AttachMoney.js' { - declare module.exports: $Exports<'material-ui-icons/AttachMoney'>; -} -declare module 'material-ui-icons/Audiotrack.js' { - declare module.exports: $Exports<'material-ui-icons/Audiotrack'>; -} -declare module 'material-ui-icons/Autorenew.js' { - declare module.exports: $Exports<'material-ui-icons/Autorenew'>; -} -declare module 'material-ui-icons/AvTimer.js' { - declare module.exports: $Exports<'material-ui-icons/AvTimer'>; -} -declare module 'material-ui-icons/Backspace.js' { - declare module.exports: $Exports<'material-ui-icons/Backspace'>; -} -declare module 'material-ui-icons/Backup.js' { - declare module.exports: $Exports<'material-ui-icons/Backup'>; -} -declare module 'material-ui-icons/Battery20.js' { - declare module.exports: $Exports<'material-ui-icons/Battery20'>; -} -declare module 'material-ui-icons/Battery30.js' { - declare module.exports: $Exports<'material-ui-icons/Battery30'>; -} -declare module 'material-ui-icons/Battery50.js' { - declare module.exports: $Exports<'material-ui-icons/Battery50'>; -} -declare module 'material-ui-icons/Battery60.js' { - declare module.exports: $Exports<'material-ui-icons/Battery60'>; -} -declare module 'material-ui-icons/Battery80.js' { - declare module.exports: $Exports<'material-ui-icons/Battery80'>; -} -declare module 'material-ui-icons/Battery90.js' { - declare module.exports: $Exports<'material-ui-icons/Battery90'>; -} -declare module 'material-ui-icons/BatteryAlert.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryAlert'>; -} -declare module 'material-ui-icons/BatteryCharging20.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging20'>; -} -declare module 'material-ui-icons/BatteryCharging30.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging30'>; -} -declare module 'material-ui-icons/BatteryCharging50.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging50'>; -} -declare module 'material-ui-icons/BatteryCharging60.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging60'>; -} -declare module 'material-ui-icons/BatteryCharging80.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging80'>; -} -declare module 'material-ui-icons/BatteryCharging90.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryCharging90'>; -} -declare module 'material-ui-icons/BatteryChargingFull.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryChargingFull'>; -} -declare module 'material-ui-icons/BatteryFull.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryFull'>; -} -declare module 'material-ui-icons/BatteryStd.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryStd'>; -} -declare module 'material-ui-icons/BatteryUnknown.js' { - declare module.exports: $Exports<'material-ui-icons/BatteryUnknown'>; -} -declare module 'material-ui-icons/BeachAccess.js' { - declare module.exports: $Exports<'material-ui-icons/BeachAccess'>; -} -declare module 'material-ui-icons/Beenhere.js' { - declare module.exports: $Exports<'material-ui-icons/Beenhere'>; -} -declare module 'material-ui-icons/Block.js' { - declare module.exports: $Exports<'material-ui-icons/Block'>; -} -declare module 'material-ui-icons/Bluetooth.js' { - declare module.exports: $Exports<'material-ui-icons/Bluetooth'>; -} -declare module 'material-ui-icons/BluetoothAudio.js' { - declare module.exports: $Exports<'material-ui-icons/BluetoothAudio'>; -} -declare module 'material-ui-icons/BluetoothConnected.js' { - declare module.exports: $Exports<'material-ui-icons/BluetoothConnected'>; -} -declare module 'material-ui-icons/BluetoothDisabled.js' { - declare module.exports: $Exports<'material-ui-icons/BluetoothDisabled'>; -} -declare module 'material-ui-icons/BluetoothSearching.js' { - declare module.exports: $Exports<'material-ui-icons/BluetoothSearching'>; -} -declare module 'material-ui-icons/BlurCircular.js' { - declare module.exports: $Exports<'material-ui-icons/BlurCircular'>; -} -declare module 'material-ui-icons/BlurLinear.js' { - declare module.exports: $Exports<'material-ui-icons/BlurLinear'>; -} -declare module 'material-ui-icons/BlurOff.js' { - declare module.exports: $Exports<'material-ui-icons/BlurOff'>; -} -declare module 'material-ui-icons/BlurOn.js' { - declare module.exports: $Exports<'material-ui-icons/BlurOn'>; -} -declare module 'material-ui-icons/Book.js' { - declare module.exports: $Exports<'material-ui-icons/Book'>; -} -declare module 'material-ui-icons/Bookmark.js' { - declare module.exports: $Exports<'material-ui-icons/Bookmark'>; -} -declare module 'material-ui-icons/BookmarkBorder.js' { - declare module.exports: $Exports<'material-ui-icons/BookmarkBorder'>; -} -declare module 'material-ui-icons/BorderAll.js' { - declare module.exports: $Exports<'material-ui-icons/BorderAll'>; -} -declare module 'material-ui-icons/BorderBottom.js' { - declare module.exports: $Exports<'material-ui-icons/BorderBottom'>; -} -declare module 'material-ui-icons/BorderClear.js' { - declare module.exports: $Exports<'material-ui-icons/BorderClear'>; -} -declare module 'material-ui-icons/BorderColor.js' { - declare module.exports: $Exports<'material-ui-icons/BorderColor'>; -} -declare module 'material-ui-icons/BorderHorizontal.js' { - declare module.exports: $Exports<'material-ui-icons/BorderHorizontal'>; -} -declare module 'material-ui-icons/BorderInner.js' { - declare module.exports: $Exports<'material-ui-icons/BorderInner'>; -} -declare module 'material-ui-icons/BorderLeft.js' { - declare module.exports: $Exports<'material-ui-icons/BorderLeft'>; -} -declare module 'material-ui-icons/BorderOuter.js' { - declare module.exports: $Exports<'material-ui-icons/BorderOuter'>; -} -declare module 'material-ui-icons/BorderRight.js' { - declare module.exports: $Exports<'material-ui-icons/BorderRight'>; -} -declare module 'material-ui-icons/BorderStyle.js' { - declare module.exports: $Exports<'material-ui-icons/BorderStyle'>; -} -declare module 'material-ui-icons/BorderTop.js' { - declare module.exports: $Exports<'material-ui-icons/BorderTop'>; -} -declare module 'material-ui-icons/BorderVertical.js' { - declare module.exports: $Exports<'material-ui-icons/BorderVertical'>; -} -declare module 'material-ui-icons/BrandingWatermark.js' { - declare module.exports: $Exports<'material-ui-icons/BrandingWatermark'>; -} -declare module 'material-ui-icons/Brightness1.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness1'>; -} -declare module 'material-ui-icons/Brightness2.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness2'>; -} -declare module 'material-ui-icons/Brightness3.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness3'>; -} -declare module 'material-ui-icons/Brightness4.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness4'>; -} -declare module 'material-ui-icons/Brightness5.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness5'>; -} -declare module 'material-ui-icons/Brightness6.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness6'>; -} -declare module 'material-ui-icons/Brightness7.js' { - declare module.exports: $Exports<'material-ui-icons/Brightness7'>; -} -declare module 'material-ui-icons/BrightnessAuto.js' { - declare module.exports: $Exports<'material-ui-icons/BrightnessAuto'>; -} -declare module 'material-ui-icons/BrightnessHigh.js' { - declare module.exports: $Exports<'material-ui-icons/BrightnessHigh'>; -} -declare module 'material-ui-icons/BrightnessLow.js' { - declare module.exports: $Exports<'material-ui-icons/BrightnessLow'>; -} -declare module 'material-ui-icons/BrightnessMedium.js' { - declare module.exports: $Exports<'material-ui-icons/BrightnessMedium'>; -} -declare module 'material-ui-icons/BrokenImage.js' { - declare module.exports: $Exports<'material-ui-icons/BrokenImage'>; -} -declare module 'material-ui-icons/Brush.js' { - declare module.exports: $Exports<'material-ui-icons/Brush'>; -} -declare module 'material-ui-icons/BubbleChart.js' { - declare module.exports: $Exports<'material-ui-icons/BubbleChart'>; -} -declare module 'material-ui-icons/BugReport.js' { - declare module.exports: $Exports<'material-ui-icons/BugReport'>; -} -declare module 'material-ui-icons/Build.js' { - declare module.exports: $Exports<'material-ui-icons/Build'>; -} -declare module 'material-ui-icons/BurstMode.js' { - declare module.exports: $Exports<'material-ui-icons/BurstMode'>; -} -declare module 'material-ui-icons/Business.js' { - declare module.exports: $Exports<'material-ui-icons/Business'>; -} -declare module 'material-ui-icons/BusinessCenter.js' { - declare module.exports: $Exports<'material-ui-icons/BusinessCenter'>; -} -declare module 'material-ui-icons/Cached.js' { - declare module.exports: $Exports<'material-ui-icons/Cached'>; -} -declare module 'material-ui-icons/Cake.js' { - declare module.exports: $Exports<'material-ui-icons/Cake'>; -} -declare module 'material-ui-icons/Call.js' { - declare module.exports: $Exports<'material-ui-icons/Call'>; -} -declare module 'material-ui-icons/CallEnd.js' { - declare module.exports: $Exports<'material-ui-icons/CallEnd'>; -} -declare module 'material-ui-icons/CallMade.js' { - declare module.exports: $Exports<'material-ui-icons/CallMade'>; -} -declare module 'material-ui-icons/CallMerge.js' { - declare module.exports: $Exports<'material-ui-icons/CallMerge'>; -} -declare module 'material-ui-icons/CallMissed.js' { - declare module.exports: $Exports<'material-ui-icons/CallMissed'>; -} -declare module 'material-ui-icons/CallMissedOutgoing.js' { - declare module.exports: $Exports<'material-ui-icons/CallMissedOutgoing'>; -} -declare module 'material-ui-icons/CallReceived.js' { - declare module.exports: $Exports<'material-ui-icons/CallReceived'>; -} -declare module 'material-ui-icons/CallSplit.js' { - declare module.exports: $Exports<'material-ui-icons/CallSplit'>; -} -declare module 'material-ui-icons/CallToAction.js' { - declare module.exports: $Exports<'material-ui-icons/CallToAction'>; -} -declare module 'material-ui-icons/Camera.js' { - declare module.exports: $Exports<'material-ui-icons/Camera'>; -} -declare module 'material-ui-icons/CameraAlt.js' { - declare module.exports: $Exports<'material-ui-icons/CameraAlt'>; -} -declare module 'material-ui-icons/CameraEnhance.js' { - declare module.exports: $Exports<'material-ui-icons/CameraEnhance'>; -} -declare module 'material-ui-icons/CameraFront.js' { - declare module.exports: $Exports<'material-ui-icons/CameraFront'>; -} -declare module 'material-ui-icons/CameraRear.js' { - declare module.exports: $Exports<'material-ui-icons/CameraRear'>; -} -declare module 'material-ui-icons/CameraRoll.js' { - declare module.exports: $Exports<'material-ui-icons/CameraRoll'>; -} -declare module 'material-ui-icons/Cancel.js' { - declare module.exports: $Exports<'material-ui-icons/Cancel'>; -} -declare module 'material-ui-icons/CardGiftcard.js' { - declare module.exports: $Exports<'material-ui-icons/CardGiftcard'>; -} -declare module 'material-ui-icons/CardMembership.js' { - declare module.exports: $Exports<'material-ui-icons/CardMembership'>; -} -declare module 'material-ui-icons/CardTravel.js' { - declare module.exports: $Exports<'material-ui-icons/CardTravel'>; -} -declare module 'material-ui-icons/Casino.js' { - declare module.exports: $Exports<'material-ui-icons/Casino'>; -} -declare module 'material-ui-icons/Cast.js' { - declare module.exports: $Exports<'material-ui-icons/Cast'>; -} -declare module 'material-ui-icons/CastConnected.js' { - declare module.exports: $Exports<'material-ui-icons/CastConnected'>; -} -declare module 'material-ui-icons/CenterFocusStrong.js' { - declare module.exports: $Exports<'material-ui-icons/CenterFocusStrong'>; -} -declare module 'material-ui-icons/CenterFocusWeak.js' { - declare module.exports: $Exports<'material-ui-icons/CenterFocusWeak'>; -} -declare module 'material-ui-icons/ChangeHistory.js' { - declare module.exports: $Exports<'material-ui-icons/ChangeHistory'>; -} -declare module 'material-ui-icons/Chat.js' { - declare module.exports: $Exports<'material-ui-icons/Chat'>; -} -declare module 'material-ui-icons/ChatBubble.js' { - declare module.exports: $Exports<'material-ui-icons/ChatBubble'>; -} -declare module 'material-ui-icons/ChatBubbleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/ChatBubbleOutline'>; -} -declare module 'material-ui-icons/Check.js' { - declare module.exports: $Exports<'material-ui-icons/Check'>; -} -declare module 'material-ui-icons/CheckBox.js' { - declare module.exports: $Exports<'material-ui-icons/CheckBox'>; -} -declare module 'material-ui-icons/CheckBoxOutlineBlank.js' { - declare module.exports: $Exports<'material-ui-icons/CheckBoxOutlineBlank'>; -} -declare module 'material-ui-icons/CheckCircle.js' { - declare module.exports: $Exports<'material-ui-icons/CheckCircle'>; -} -declare module 'material-ui-icons/ChevronLeft.js' { - declare module.exports: $Exports<'material-ui-icons/ChevronLeft'>; -} -declare module 'material-ui-icons/ChevronRight.js' { - declare module.exports: $Exports<'material-ui-icons/ChevronRight'>; -} -declare module 'material-ui-icons/ChildCare.js' { - declare module.exports: $Exports<'material-ui-icons/ChildCare'>; -} -declare module 'material-ui-icons/ChildFriendly.js' { - declare module.exports: $Exports<'material-ui-icons/ChildFriendly'>; -} -declare module 'material-ui-icons/ChromeReaderMode.js' { - declare module.exports: $Exports<'material-ui-icons/ChromeReaderMode'>; -} -declare module 'material-ui-icons/Class.js' { - declare module.exports: $Exports<'material-ui-icons/Class'>; -} -declare module 'material-ui-icons/Clear.js' { - declare module.exports: $Exports<'material-ui-icons/Clear'>; -} -declare module 'material-ui-icons/ClearAll.js' { - declare module.exports: $Exports<'material-ui-icons/ClearAll'>; -} -declare module 'material-ui-icons/Close.js' { - declare module.exports: $Exports<'material-ui-icons/Close'>; -} -declare module 'material-ui-icons/ClosedCaption.js' { - declare module.exports: $Exports<'material-ui-icons/ClosedCaption'>; -} -declare module 'material-ui-icons/Cloud.js' { - declare module.exports: $Exports<'material-ui-icons/Cloud'>; -} -declare module 'material-ui-icons/CloudCircle.js' { - declare module.exports: $Exports<'material-ui-icons/CloudCircle'>; -} -declare module 'material-ui-icons/CloudDone.js' { - declare module.exports: $Exports<'material-ui-icons/CloudDone'>; -} -declare module 'material-ui-icons/CloudDownload.js' { - declare module.exports: $Exports<'material-ui-icons/CloudDownload'>; -} -declare module 'material-ui-icons/CloudOff.js' { - declare module.exports: $Exports<'material-ui-icons/CloudOff'>; -} -declare module 'material-ui-icons/CloudQueue.js' { - declare module.exports: $Exports<'material-ui-icons/CloudQueue'>; -} -declare module 'material-ui-icons/CloudUpload.js' { - declare module.exports: $Exports<'material-ui-icons/CloudUpload'>; -} -declare module 'material-ui-icons/Code.js' { - declare module.exports: $Exports<'material-ui-icons/Code'>; -} -declare module 'material-ui-icons/Collections.js' { - declare module.exports: $Exports<'material-ui-icons/Collections'>; -} -declare module 'material-ui-icons/CollectionsBookmark.js' { - declare module.exports: $Exports<'material-ui-icons/CollectionsBookmark'>; -} -declare module 'material-ui-icons/Colorize.js' { - declare module.exports: $Exports<'material-ui-icons/Colorize'>; -} -declare module 'material-ui-icons/ColorLens.js' { - declare module.exports: $Exports<'material-ui-icons/ColorLens'>; -} -declare module 'material-ui-icons/Comment.js' { - declare module.exports: $Exports<'material-ui-icons/Comment'>; -} -declare module 'material-ui-icons/Compare.js' { - declare module.exports: $Exports<'material-ui-icons/Compare'>; -} -declare module 'material-ui-icons/CompareArrows.js' { - declare module.exports: $Exports<'material-ui-icons/CompareArrows'>; -} -declare module 'material-ui-icons/Computer.js' { - declare module.exports: $Exports<'material-ui-icons/Computer'>; -} -declare module 'material-ui-icons/ConfirmationNumber.js' { - declare module.exports: $Exports<'material-ui-icons/ConfirmationNumber'>; -} -declare module 'material-ui-icons/ContactMail.js' { - declare module.exports: $Exports<'material-ui-icons/ContactMail'>; -} -declare module 'material-ui-icons/ContactPhone.js' { - declare module.exports: $Exports<'material-ui-icons/ContactPhone'>; -} -declare module 'material-ui-icons/Contacts.js' { - declare module.exports: $Exports<'material-ui-icons/Contacts'>; -} -declare module 'material-ui-icons/ContentCopy.js' { - declare module.exports: $Exports<'material-ui-icons/ContentCopy'>; -} -declare module 'material-ui-icons/ContentCut.js' { - declare module.exports: $Exports<'material-ui-icons/ContentCut'>; -} -declare module 'material-ui-icons/ContentPaste.js' { - declare module.exports: $Exports<'material-ui-icons/ContentPaste'>; -} -declare module 'material-ui-icons/ControlPoint.js' { - declare module.exports: $Exports<'material-ui-icons/ControlPoint'>; -} -declare module 'material-ui-icons/ControlPointDuplicate.js' { - declare module.exports: $Exports<'material-ui-icons/ControlPointDuplicate'>; -} -declare module 'material-ui-icons/Copyright.js' { - declare module.exports: $Exports<'material-ui-icons/Copyright'>; -} -declare module 'material-ui-icons/Create.js' { - declare module.exports: $Exports<'material-ui-icons/Create'>; -} -declare module 'material-ui-icons/CreateNewFolder.js' { - declare module.exports: $Exports<'material-ui-icons/CreateNewFolder'>; -} -declare module 'material-ui-icons/CreditCard.js' { - declare module.exports: $Exports<'material-ui-icons/CreditCard'>; -} -declare module 'material-ui-icons/Crop.js' { - declare module.exports: $Exports<'material-ui-icons/Crop'>; -} -declare module 'material-ui-icons/Crop169.js' { - declare module.exports: $Exports<'material-ui-icons/Crop169'>; -} -declare module 'material-ui-icons/Crop32.js' { - declare module.exports: $Exports<'material-ui-icons/Crop32'>; -} -declare module 'material-ui-icons/Crop54.js' { - declare module.exports: $Exports<'material-ui-icons/Crop54'>; -} -declare module 'material-ui-icons/Crop75.js' { - declare module.exports: $Exports<'material-ui-icons/Crop75'>; -} -declare module 'material-ui-icons/CropDin.js' { - declare module.exports: $Exports<'material-ui-icons/CropDin'>; -} -declare module 'material-ui-icons/CropFree.js' { - declare module.exports: $Exports<'material-ui-icons/CropFree'>; -} -declare module 'material-ui-icons/CropLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/CropLandscape'>; -} -declare module 'material-ui-icons/CropOriginal.js' { - declare module.exports: $Exports<'material-ui-icons/CropOriginal'>; -} -declare module 'material-ui-icons/CropPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/CropPortrait'>; -} -declare module 'material-ui-icons/CropRotate.js' { - declare module.exports: $Exports<'material-ui-icons/CropRotate'>; -} -declare module 'material-ui-icons/CropSquare.js' { - declare module.exports: $Exports<'material-ui-icons/CropSquare'>; -} -declare module 'material-ui-icons/Dashboard.js' { - declare module.exports: $Exports<'material-ui-icons/Dashboard'>; -} -declare module 'material-ui-icons/DataUsage.js' { - declare module.exports: $Exports<'material-ui-icons/DataUsage'>; -} -declare module 'material-ui-icons/DateRange.js' { - declare module.exports: $Exports<'material-ui-icons/DateRange'>; -} -declare module 'material-ui-icons/Dehaze.js' { - declare module.exports: $Exports<'material-ui-icons/Dehaze'>; -} -declare module 'material-ui-icons/Delete.js' { - declare module.exports: $Exports<'material-ui-icons/Delete'>; -} -declare module 'material-ui-icons/DeleteForever.js' { - declare module.exports: $Exports<'material-ui-icons/DeleteForever'>; -} -declare module 'material-ui-icons/DeleteSweep.js' { - declare module.exports: $Exports<'material-ui-icons/DeleteSweep'>; -} -declare module 'material-ui-icons/Description.js' { - declare module.exports: $Exports<'material-ui-icons/Description'>; -} -declare module 'material-ui-icons/DesktopMac.js' { - declare module.exports: $Exports<'material-ui-icons/DesktopMac'>; -} -declare module 'material-ui-icons/DesktopWindows.js' { - declare module.exports: $Exports<'material-ui-icons/DesktopWindows'>; -} -declare module 'material-ui-icons/Details.js' { - declare module.exports: $Exports<'material-ui-icons/Details'>; -} -declare module 'material-ui-icons/DeveloperBoard.js' { - declare module.exports: $Exports<'material-ui-icons/DeveloperBoard'>; -} -declare module 'material-ui-icons/DeveloperMode.js' { - declare module.exports: $Exports<'material-ui-icons/DeveloperMode'>; -} -declare module 'material-ui-icons/DeviceHub.js' { - declare module.exports: $Exports<'material-ui-icons/DeviceHub'>; -} -declare module 'material-ui-icons/Devices.js' { - declare module.exports: $Exports<'material-ui-icons/Devices'>; -} -declare module 'material-ui-icons/DevicesOther.js' { - declare module.exports: $Exports<'material-ui-icons/DevicesOther'>; -} -declare module 'material-ui-icons/DialerSip.js' { - declare module.exports: $Exports<'material-ui-icons/DialerSip'>; -} -declare module 'material-ui-icons/Dialpad.js' { - declare module.exports: $Exports<'material-ui-icons/Dialpad'>; -} -declare module 'material-ui-icons/Directions.js' { - declare module.exports: $Exports<'material-ui-icons/Directions'>; -} -declare module 'material-ui-icons/DirectionsBike.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsBike'>; -} -declare module 'material-ui-icons/DirectionsBoat.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsBoat'>; -} -declare module 'material-ui-icons/DirectionsBus.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsBus'>; -} -declare module 'material-ui-icons/DirectionsCar.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsCar'>; -} -declare module 'material-ui-icons/DirectionsRailway.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsRailway'>; -} -declare module 'material-ui-icons/DirectionsRun.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsRun'>; -} -declare module 'material-ui-icons/DirectionsSubway.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsSubway'>; -} -declare module 'material-ui-icons/DirectionsTransit.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsTransit'>; -} -declare module 'material-ui-icons/DirectionsWalk.js' { - declare module.exports: $Exports<'material-ui-icons/DirectionsWalk'>; -} -declare module 'material-ui-icons/DiscFull.js' { - declare module.exports: $Exports<'material-ui-icons/DiscFull'>; -} -declare module 'material-ui-icons/Dns.js' { - declare module.exports: $Exports<'material-ui-icons/Dns'>; -} -declare module 'material-ui-icons/Dock.js' { - declare module.exports: $Exports<'material-ui-icons/Dock'>; -} -declare module 'material-ui-icons/Domain.js' { - declare module.exports: $Exports<'material-ui-icons/Domain'>; -} -declare module 'material-ui-icons/Done.js' { - declare module.exports: $Exports<'material-ui-icons/Done'>; -} -declare module 'material-ui-icons/DoneAll.js' { - declare module.exports: $Exports<'material-ui-icons/DoneAll'>; -} -declare module 'material-ui-icons/DoNotDisturb.js' { - declare module.exports: $Exports<'material-ui-icons/DoNotDisturb'>; -} -declare module 'material-ui-icons/DoNotDisturbAlt.js' { - declare module.exports: $Exports<'material-ui-icons/DoNotDisturbAlt'>; -} -declare module 'material-ui-icons/DoNotDisturbOff.js' { - declare module.exports: $Exports<'material-ui-icons/DoNotDisturbOff'>; -} -declare module 'material-ui-icons/DoNotDisturbOn.js' { - declare module.exports: $Exports<'material-ui-icons/DoNotDisturbOn'>; -} -declare module 'material-ui-icons/DonutLarge.js' { - declare module.exports: $Exports<'material-ui-icons/DonutLarge'>; -} -declare module 'material-ui-icons/DonutSmall.js' { - declare module.exports: $Exports<'material-ui-icons/DonutSmall'>; -} -declare module 'material-ui-icons/Drafts.js' { - declare module.exports: $Exports<'material-ui-icons/Drafts'>; -} -declare module 'material-ui-icons/DragHandle.js' { - declare module.exports: $Exports<'material-ui-icons/DragHandle'>; -} -declare module 'material-ui-icons/DriveEta.js' { - declare module.exports: $Exports<'material-ui-icons/DriveEta'>; -} -declare module 'material-ui-icons/Dvr.js' { - declare module.exports: $Exports<'material-ui-icons/Dvr'>; -} -declare module 'material-ui-icons/Edit.js' { - declare module.exports: $Exports<'material-ui-icons/Edit'>; -} -declare module 'material-ui-icons/EditLocation.js' { - declare module.exports: $Exports<'material-ui-icons/EditLocation'>; -} -declare module 'material-ui-icons/Eject.js' { - declare module.exports: $Exports<'material-ui-icons/Eject'>; -} -declare module 'material-ui-icons/Email.js' { - declare module.exports: $Exports<'material-ui-icons/Email'>; -} -declare module 'material-ui-icons/EnhancedEncryption.js' { - declare module.exports: $Exports<'material-ui-icons/EnhancedEncryption'>; -} -declare module 'material-ui-icons/Equalizer.js' { - declare module.exports: $Exports<'material-ui-icons/Equalizer'>; -} -declare module 'material-ui-icons/Error.js' { - declare module.exports: $Exports<'material-ui-icons/Error'>; -} -declare module 'material-ui-icons/ErrorOutline.js' { - declare module.exports: $Exports<'material-ui-icons/ErrorOutline'>; -} -declare module 'material-ui-icons/es/AccessAlarm.js' { - declare module.exports: $Exports<'material-ui-icons/es/AccessAlarm'>; -} -declare module 'material-ui-icons/es/AccessAlarms.js' { - declare module.exports: $Exports<'material-ui-icons/es/AccessAlarms'>; -} -declare module 'material-ui-icons/es/Accessibility.js' { - declare module.exports: $Exports<'material-ui-icons/es/Accessibility'>; -} -declare module 'material-ui-icons/es/Accessible.js' { - declare module.exports: $Exports<'material-ui-icons/es/Accessible'>; -} -declare module 'material-ui-icons/es/AccessTime.js' { - declare module.exports: $Exports<'material-ui-icons/es/AccessTime'>; -} -declare module 'material-ui-icons/es/AccountBalance.js' { - declare module.exports: $Exports<'material-ui-icons/es/AccountBalance'>; -} -declare module 'material-ui-icons/es/AccountBalanceWallet.js' { - declare module.exports: $Exports<'material-ui-icons/es/AccountBalanceWallet'>; -} -declare module 'material-ui-icons/es/AccountBox.js' { - declare module.exports: $Exports<'material-ui-icons/es/AccountBox'>; -} -declare module 'material-ui-icons/es/AccountCircle.js' { - declare module.exports: $Exports<'material-ui-icons/es/AccountCircle'>; -} -declare module 'material-ui-icons/es/AcUnit.js' { - declare module.exports: $Exports<'material-ui-icons/es/AcUnit'>; -} -declare module 'material-ui-icons/es/Adb.js' { - declare module.exports: $Exports<'material-ui-icons/es/Adb'>; -} -declare module 'material-ui-icons/es/Add.js' { - declare module.exports: $Exports<'material-ui-icons/es/Add'>; -} -declare module 'material-ui-icons/es/AddAlarm.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddAlarm'>; -} -declare module 'material-ui-icons/es/AddAlert.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddAlert'>; -} -declare module 'material-ui-icons/es/AddAPhoto.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddAPhoto'>; -} -declare module 'material-ui-icons/es/AddBox.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddBox'>; -} -declare module 'material-ui-icons/es/AddCircle.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddCircle'>; -} -declare module 'material-ui-icons/es/AddCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddCircleOutline'>; -} -declare module 'material-ui-icons/es/AddLocation.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddLocation'>; -} -declare module 'material-ui-icons/es/AddShoppingCart.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddShoppingCart'>; -} -declare module 'material-ui-icons/es/AddToPhotos.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddToPhotos'>; -} -declare module 'material-ui-icons/es/AddToQueue.js' { - declare module.exports: $Exports<'material-ui-icons/es/AddToQueue'>; -} -declare module 'material-ui-icons/es/Adjust.js' { - declare module.exports: $Exports<'material-ui-icons/es/Adjust'>; -} -declare module 'material-ui-icons/es/AirlineSeatFlat.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirlineSeatFlat'>; -} -declare module 'material-ui-icons/es/AirlineSeatFlatAngled.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirlineSeatFlatAngled'>; -} -declare module 'material-ui-icons/es/AirlineSeatIndividualSuite.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirlineSeatIndividualSuite'>; -} -declare module 'material-ui-icons/es/AirlineSeatLegroomExtra.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirlineSeatLegroomExtra'>; -} -declare module 'material-ui-icons/es/AirlineSeatLegroomNormal.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirlineSeatLegroomNormal'>; -} -declare module 'material-ui-icons/es/AirlineSeatLegroomReduced.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirlineSeatLegroomReduced'>; -} -declare module 'material-ui-icons/es/AirlineSeatReclineExtra.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirlineSeatReclineExtra'>; -} -declare module 'material-ui-icons/es/AirlineSeatReclineNormal.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirlineSeatReclineNormal'>; -} -declare module 'material-ui-icons/es/AirplanemodeActive.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirplanemodeActive'>; -} -declare module 'material-ui-icons/es/AirplanemodeInactive.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirplanemodeInactive'>; -} -declare module 'material-ui-icons/es/Airplay.js' { - declare module.exports: $Exports<'material-ui-icons/es/Airplay'>; -} -declare module 'material-ui-icons/es/AirportShuttle.js' { - declare module.exports: $Exports<'material-ui-icons/es/AirportShuttle'>; -} -declare module 'material-ui-icons/es/Alarm.js' { - declare module.exports: $Exports<'material-ui-icons/es/Alarm'>; -} -declare module 'material-ui-icons/es/AlarmAdd.js' { - declare module.exports: $Exports<'material-ui-icons/es/AlarmAdd'>; -} -declare module 'material-ui-icons/es/AlarmOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/AlarmOff'>; -} -declare module 'material-ui-icons/es/AlarmOn.js' { - declare module.exports: $Exports<'material-ui-icons/es/AlarmOn'>; -} -declare module 'material-ui-icons/es/Album.js' { - declare module.exports: $Exports<'material-ui-icons/es/Album'>; -} -declare module 'material-ui-icons/es/AllInclusive.js' { - declare module.exports: $Exports<'material-ui-icons/es/AllInclusive'>; -} -declare module 'material-ui-icons/es/AllOut.js' { - declare module.exports: $Exports<'material-ui-icons/es/AllOut'>; -} -declare module 'material-ui-icons/es/Android.js' { - declare module.exports: $Exports<'material-ui-icons/es/Android'>; -} -declare module 'material-ui-icons/es/Announcement.js' { - declare module.exports: $Exports<'material-ui-icons/es/Announcement'>; -} -declare module 'material-ui-icons/es/Apps.js' { - declare module.exports: $Exports<'material-ui-icons/es/Apps'>; -} -declare module 'material-ui-icons/es/Archive.js' { - declare module.exports: $Exports<'material-ui-icons/es/Archive'>; -} -declare module 'material-ui-icons/es/ArrowBack.js' { - declare module.exports: $Exports<'material-ui-icons/es/ArrowBack'>; -} -declare module 'material-ui-icons/es/ArrowDownward.js' { - declare module.exports: $Exports<'material-ui-icons/es/ArrowDownward'>; -} -declare module 'material-ui-icons/es/ArrowDropDown.js' { - declare module.exports: $Exports<'material-ui-icons/es/ArrowDropDown'>; -} -declare module 'material-ui-icons/es/ArrowDropDownCircle.js' { - declare module.exports: $Exports<'material-ui-icons/es/ArrowDropDownCircle'>; -} -declare module 'material-ui-icons/es/ArrowDropUp.js' { - declare module.exports: $Exports<'material-ui-icons/es/ArrowDropUp'>; -} -declare module 'material-ui-icons/es/ArrowForward.js' { - declare module.exports: $Exports<'material-ui-icons/es/ArrowForward'>; -} -declare module 'material-ui-icons/es/ArrowUpward.js' { - declare module.exports: $Exports<'material-ui-icons/es/ArrowUpward'>; -} -declare module 'material-ui-icons/es/ArtTrack.js' { - declare module.exports: $Exports<'material-ui-icons/es/ArtTrack'>; -} -declare module 'material-ui-icons/es/AspectRatio.js' { - declare module.exports: $Exports<'material-ui-icons/es/AspectRatio'>; -} -declare module 'material-ui-icons/es/Assessment.js' { - declare module.exports: $Exports<'material-ui-icons/es/Assessment'>; -} -declare module 'material-ui-icons/es/Assignment.js' { - declare module.exports: $Exports<'material-ui-icons/es/Assignment'>; -} -declare module 'material-ui-icons/es/AssignmentInd.js' { - declare module.exports: $Exports<'material-ui-icons/es/AssignmentInd'>; -} -declare module 'material-ui-icons/es/AssignmentLate.js' { - declare module.exports: $Exports<'material-ui-icons/es/AssignmentLate'>; -} -declare module 'material-ui-icons/es/AssignmentReturn.js' { - declare module.exports: $Exports<'material-ui-icons/es/AssignmentReturn'>; -} -declare module 'material-ui-icons/es/AssignmentReturned.js' { - declare module.exports: $Exports<'material-ui-icons/es/AssignmentReturned'>; -} -declare module 'material-ui-icons/es/AssignmentTurnedIn.js' { - declare module.exports: $Exports<'material-ui-icons/es/AssignmentTurnedIn'>; -} -declare module 'material-ui-icons/es/Assistant.js' { - declare module.exports: $Exports<'material-ui-icons/es/Assistant'>; -} -declare module 'material-ui-icons/es/AssistantPhoto.js' { - declare module.exports: $Exports<'material-ui-icons/es/AssistantPhoto'>; -} -declare module 'material-ui-icons/es/AttachFile.js' { - declare module.exports: $Exports<'material-ui-icons/es/AttachFile'>; -} -declare module 'material-ui-icons/es/Attachment.js' { - declare module.exports: $Exports<'material-ui-icons/es/Attachment'>; -} -declare module 'material-ui-icons/es/AttachMoney.js' { - declare module.exports: $Exports<'material-ui-icons/es/AttachMoney'>; -} -declare module 'material-ui-icons/es/Audiotrack.js' { - declare module.exports: $Exports<'material-ui-icons/es/Audiotrack'>; -} -declare module 'material-ui-icons/es/Autorenew.js' { - declare module.exports: $Exports<'material-ui-icons/es/Autorenew'>; -} -declare module 'material-ui-icons/es/AvTimer.js' { - declare module.exports: $Exports<'material-ui-icons/es/AvTimer'>; -} -declare module 'material-ui-icons/es/Backspace.js' { - declare module.exports: $Exports<'material-ui-icons/es/Backspace'>; -} -declare module 'material-ui-icons/es/Backup.js' { - declare module.exports: $Exports<'material-ui-icons/es/Backup'>; -} -declare module 'material-ui-icons/es/Battery20.js' { - declare module.exports: $Exports<'material-ui-icons/es/Battery20'>; -} -declare module 'material-ui-icons/es/Battery30.js' { - declare module.exports: $Exports<'material-ui-icons/es/Battery30'>; -} -declare module 'material-ui-icons/es/Battery50.js' { - declare module.exports: $Exports<'material-ui-icons/es/Battery50'>; -} -declare module 'material-ui-icons/es/Battery60.js' { - declare module.exports: $Exports<'material-ui-icons/es/Battery60'>; -} -declare module 'material-ui-icons/es/Battery80.js' { - declare module.exports: $Exports<'material-ui-icons/es/Battery80'>; -} -declare module 'material-ui-icons/es/Battery90.js' { - declare module.exports: $Exports<'material-ui-icons/es/Battery90'>; -} -declare module 'material-ui-icons/es/BatteryAlert.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryAlert'>; -} -declare module 'material-ui-icons/es/BatteryCharging20.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryCharging20'>; -} -declare module 'material-ui-icons/es/BatteryCharging30.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryCharging30'>; -} -declare module 'material-ui-icons/es/BatteryCharging50.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryCharging50'>; -} -declare module 'material-ui-icons/es/BatteryCharging60.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryCharging60'>; -} -declare module 'material-ui-icons/es/BatteryCharging80.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryCharging80'>; -} -declare module 'material-ui-icons/es/BatteryCharging90.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryCharging90'>; -} -declare module 'material-ui-icons/es/BatteryChargingFull.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryChargingFull'>; -} -declare module 'material-ui-icons/es/BatteryFull.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryFull'>; -} -declare module 'material-ui-icons/es/BatteryStd.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryStd'>; -} -declare module 'material-ui-icons/es/BatteryUnknown.js' { - declare module.exports: $Exports<'material-ui-icons/es/BatteryUnknown'>; -} -declare module 'material-ui-icons/es/BeachAccess.js' { - declare module.exports: $Exports<'material-ui-icons/es/BeachAccess'>; -} -declare module 'material-ui-icons/es/Beenhere.js' { - declare module.exports: $Exports<'material-ui-icons/es/Beenhere'>; -} -declare module 'material-ui-icons/es/Block.js' { - declare module.exports: $Exports<'material-ui-icons/es/Block'>; -} -declare module 'material-ui-icons/es/Bluetooth.js' { - declare module.exports: $Exports<'material-ui-icons/es/Bluetooth'>; -} -declare module 'material-ui-icons/es/BluetoothAudio.js' { - declare module.exports: $Exports<'material-ui-icons/es/BluetoothAudio'>; -} -declare module 'material-ui-icons/es/BluetoothConnected.js' { - declare module.exports: $Exports<'material-ui-icons/es/BluetoothConnected'>; -} -declare module 'material-ui-icons/es/BluetoothDisabled.js' { - declare module.exports: $Exports<'material-ui-icons/es/BluetoothDisabled'>; -} -declare module 'material-ui-icons/es/BluetoothSearching.js' { - declare module.exports: $Exports<'material-ui-icons/es/BluetoothSearching'>; -} -declare module 'material-ui-icons/es/BlurCircular.js' { - declare module.exports: $Exports<'material-ui-icons/es/BlurCircular'>; -} -declare module 'material-ui-icons/es/BlurLinear.js' { - declare module.exports: $Exports<'material-ui-icons/es/BlurLinear'>; -} -declare module 'material-ui-icons/es/BlurOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/BlurOff'>; -} -declare module 'material-ui-icons/es/BlurOn.js' { - declare module.exports: $Exports<'material-ui-icons/es/BlurOn'>; -} -declare module 'material-ui-icons/es/Book.js' { - declare module.exports: $Exports<'material-ui-icons/es/Book'>; -} -declare module 'material-ui-icons/es/Bookmark.js' { - declare module.exports: $Exports<'material-ui-icons/es/Bookmark'>; -} -declare module 'material-ui-icons/es/BookmarkBorder.js' { - declare module.exports: $Exports<'material-ui-icons/es/BookmarkBorder'>; -} -declare module 'material-ui-icons/es/BorderAll.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderAll'>; -} -declare module 'material-ui-icons/es/BorderBottom.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderBottom'>; -} -declare module 'material-ui-icons/es/BorderClear.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderClear'>; -} -declare module 'material-ui-icons/es/BorderColor.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderColor'>; -} -declare module 'material-ui-icons/es/BorderHorizontal.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderHorizontal'>; -} -declare module 'material-ui-icons/es/BorderInner.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderInner'>; -} -declare module 'material-ui-icons/es/BorderLeft.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderLeft'>; -} -declare module 'material-ui-icons/es/BorderOuter.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderOuter'>; -} -declare module 'material-ui-icons/es/BorderRight.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderRight'>; -} -declare module 'material-ui-icons/es/BorderStyle.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderStyle'>; -} -declare module 'material-ui-icons/es/BorderTop.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderTop'>; -} -declare module 'material-ui-icons/es/BorderVertical.js' { - declare module.exports: $Exports<'material-ui-icons/es/BorderVertical'>; -} -declare module 'material-ui-icons/es/BrandingWatermark.js' { - declare module.exports: $Exports<'material-ui-icons/es/BrandingWatermark'>; -} -declare module 'material-ui-icons/es/Brightness1.js' { - declare module.exports: $Exports<'material-ui-icons/es/Brightness1'>; -} -declare module 'material-ui-icons/es/Brightness2.js' { - declare module.exports: $Exports<'material-ui-icons/es/Brightness2'>; -} -declare module 'material-ui-icons/es/Brightness3.js' { - declare module.exports: $Exports<'material-ui-icons/es/Brightness3'>; -} -declare module 'material-ui-icons/es/Brightness4.js' { - declare module.exports: $Exports<'material-ui-icons/es/Brightness4'>; -} -declare module 'material-ui-icons/es/Brightness5.js' { - declare module.exports: $Exports<'material-ui-icons/es/Brightness5'>; -} -declare module 'material-ui-icons/es/Brightness6.js' { - declare module.exports: $Exports<'material-ui-icons/es/Brightness6'>; -} -declare module 'material-ui-icons/es/Brightness7.js' { - declare module.exports: $Exports<'material-ui-icons/es/Brightness7'>; -} -declare module 'material-ui-icons/es/BrightnessAuto.js' { - declare module.exports: $Exports<'material-ui-icons/es/BrightnessAuto'>; -} -declare module 'material-ui-icons/es/BrightnessHigh.js' { - declare module.exports: $Exports<'material-ui-icons/es/BrightnessHigh'>; -} -declare module 'material-ui-icons/es/BrightnessLow.js' { - declare module.exports: $Exports<'material-ui-icons/es/BrightnessLow'>; -} -declare module 'material-ui-icons/es/BrightnessMedium.js' { - declare module.exports: $Exports<'material-ui-icons/es/BrightnessMedium'>; -} -declare module 'material-ui-icons/es/BrokenImage.js' { - declare module.exports: $Exports<'material-ui-icons/es/BrokenImage'>; -} -declare module 'material-ui-icons/es/Brush.js' { - declare module.exports: $Exports<'material-ui-icons/es/Brush'>; -} -declare module 'material-ui-icons/es/BubbleChart.js' { - declare module.exports: $Exports<'material-ui-icons/es/BubbleChart'>; -} -declare module 'material-ui-icons/es/BugReport.js' { - declare module.exports: $Exports<'material-ui-icons/es/BugReport'>; -} -declare module 'material-ui-icons/es/Build.js' { - declare module.exports: $Exports<'material-ui-icons/es/Build'>; -} -declare module 'material-ui-icons/es/BurstMode.js' { - declare module.exports: $Exports<'material-ui-icons/es/BurstMode'>; -} -declare module 'material-ui-icons/es/Business.js' { - declare module.exports: $Exports<'material-ui-icons/es/Business'>; -} -declare module 'material-ui-icons/es/BusinessCenter.js' { - declare module.exports: $Exports<'material-ui-icons/es/BusinessCenter'>; -} -declare module 'material-ui-icons/es/Cached.js' { - declare module.exports: $Exports<'material-ui-icons/es/Cached'>; -} -declare module 'material-ui-icons/es/Cake.js' { - declare module.exports: $Exports<'material-ui-icons/es/Cake'>; -} -declare module 'material-ui-icons/es/Call.js' { - declare module.exports: $Exports<'material-ui-icons/es/Call'>; -} -declare module 'material-ui-icons/es/CallEnd.js' { - declare module.exports: $Exports<'material-ui-icons/es/CallEnd'>; -} -declare module 'material-ui-icons/es/CallMade.js' { - declare module.exports: $Exports<'material-ui-icons/es/CallMade'>; -} -declare module 'material-ui-icons/es/CallMerge.js' { - declare module.exports: $Exports<'material-ui-icons/es/CallMerge'>; -} -declare module 'material-ui-icons/es/CallMissed.js' { - declare module.exports: $Exports<'material-ui-icons/es/CallMissed'>; -} -declare module 'material-ui-icons/es/CallMissedOutgoing.js' { - declare module.exports: $Exports<'material-ui-icons/es/CallMissedOutgoing'>; -} -declare module 'material-ui-icons/es/CallReceived.js' { - declare module.exports: $Exports<'material-ui-icons/es/CallReceived'>; -} -declare module 'material-ui-icons/es/CallSplit.js' { - declare module.exports: $Exports<'material-ui-icons/es/CallSplit'>; -} -declare module 'material-ui-icons/es/CallToAction.js' { - declare module.exports: $Exports<'material-ui-icons/es/CallToAction'>; -} -declare module 'material-ui-icons/es/Camera.js' { - declare module.exports: $Exports<'material-ui-icons/es/Camera'>; -} -declare module 'material-ui-icons/es/CameraAlt.js' { - declare module.exports: $Exports<'material-ui-icons/es/CameraAlt'>; -} -declare module 'material-ui-icons/es/CameraEnhance.js' { - declare module.exports: $Exports<'material-ui-icons/es/CameraEnhance'>; -} -declare module 'material-ui-icons/es/CameraFront.js' { - declare module.exports: $Exports<'material-ui-icons/es/CameraFront'>; -} -declare module 'material-ui-icons/es/CameraRear.js' { - declare module.exports: $Exports<'material-ui-icons/es/CameraRear'>; -} -declare module 'material-ui-icons/es/CameraRoll.js' { - declare module.exports: $Exports<'material-ui-icons/es/CameraRoll'>; -} -declare module 'material-ui-icons/es/Cancel.js' { - declare module.exports: $Exports<'material-ui-icons/es/Cancel'>; -} -declare module 'material-ui-icons/es/CardGiftcard.js' { - declare module.exports: $Exports<'material-ui-icons/es/CardGiftcard'>; -} -declare module 'material-ui-icons/es/CardMembership.js' { - declare module.exports: $Exports<'material-ui-icons/es/CardMembership'>; -} -declare module 'material-ui-icons/es/CardTravel.js' { - declare module.exports: $Exports<'material-ui-icons/es/CardTravel'>; -} -declare module 'material-ui-icons/es/Casino.js' { - declare module.exports: $Exports<'material-ui-icons/es/Casino'>; -} -declare module 'material-ui-icons/es/Cast.js' { - declare module.exports: $Exports<'material-ui-icons/es/Cast'>; -} -declare module 'material-ui-icons/es/CastConnected.js' { - declare module.exports: $Exports<'material-ui-icons/es/CastConnected'>; -} -declare module 'material-ui-icons/es/CenterFocusStrong.js' { - declare module.exports: $Exports<'material-ui-icons/es/CenterFocusStrong'>; -} -declare module 'material-ui-icons/es/CenterFocusWeak.js' { - declare module.exports: $Exports<'material-ui-icons/es/CenterFocusWeak'>; -} -declare module 'material-ui-icons/es/ChangeHistory.js' { - declare module.exports: $Exports<'material-ui-icons/es/ChangeHistory'>; -} -declare module 'material-ui-icons/es/Chat.js' { - declare module.exports: $Exports<'material-ui-icons/es/Chat'>; -} -declare module 'material-ui-icons/es/ChatBubble.js' { - declare module.exports: $Exports<'material-ui-icons/es/ChatBubble'>; -} -declare module 'material-ui-icons/es/ChatBubbleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/ChatBubbleOutline'>; -} -declare module 'material-ui-icons/es/Check.js' { - declare module.exports: $Exports<'material-ui-icons/es/Check'>; -} -declare module 'material-ui-icons/es/CheckBox.js' { - declare module.exports: $Exports<'material-ui-icons/es/CheckBox'>; -} -declare module 'material-ui-icons/es/CheckBoxOutlineBlank.js' { - declare module.exports: $Exports<'material-ui-icons/es/CheckBoxOutlineBlank'>; -} -declare module 'material-ui-icons/es/CheckCircle.js' { - declare module.exports: $Exports<'material-ui-icons/es/CheckCircle'>; -} -declare module 'material-ui-icons/es/ChevronLeft.js' { - declare module.exports: $Exports<'material-ui-icons/es/ChevronLeft'>; -} -declare module 'material-ui-icons/es/ChevronRight.js' { - declare module.exports: $Exports<'material-ui-icons/es/ChevronRight'>; -} -declare module 'material-ui-icons/es/ChildCare.js' { - declare module.exports: $Exports<'material-ui-icons/es/ChildCare'>; -} -declare module 'material-ui-icons/es/ChildFriendly.js' { - declare module.exports: $Exports<'material-ui-icons/es/ChildFriendly'>; -} -declare module 'material-ui-icons/es/ChromeReaderMode.js' { - declare module.exports: $Exports<'material-ui-icons/es/ChromeReaderMode'>; -} -declare module 'material-ui-icons/es/Class.js' { - declare module.exports: $Exports<'material-ui-icons/es/Class'>; -} -declare module 'material-ui-icons/es/Clear.js' { - declare module.exports: $Exports<'material-ui-icons/es/Clear'>; -} -declare module 'material-ui-icons/es/ClearAll.js' { - declare module.exports: $Exports<'material-ui-icons/es/ClearAll'>; -} -declare module 'material-ui-icons/es/Close.js' { - declare module.exports: $Exports<'material-ui-icons/es/Close'>; -} -declare module 'material-ui-icons/es/ClosedCaption.js' { - declare module.exports: $Exports<'material-ui-icons/es/ClosedCaption'>; -} -declare module 'material-ui-icons/es/Cloud.js' { - declare module.exports: $Exports<'material-ui-icons/es/Cloud'>; -} -declare module 'material-ui-icons/es/CloudCircle.js' { - declare module.exports: $Exports<'material-ui-icons/es/CloudCircle'>; -} -declare module 'material-ui-icons/es/CloudDone.js' { - declare module.exports: $Exports<'material-ui-icons/es/CloudDone'>; -} -declare module 'material-ui-icons/es/CloudDownload.js' { - declare module.exports: $Exports<'material-ui-icons/es/CloudDownload'>; -} -declare module 'material-ui-icons/es/CloudOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/CloudOff'>; -} -declare module 'material-ui-icons/es/CloudQueue.js' { - declare module.exports: $Exports<'material-ui-icons/es/CloudQueue'>; -} -declare module 'material-ui-icons/es/CloudUpload.js' { - declare module.exports: $Exports<'material-ui-icons/es/CloudUpload'>; -} -declare module 'material-ui-icons/es/Code.js' { - declare module.exports: $Exports<'material-ui-icons/es/Code'>; -} -declare module 'material-ui-icons/es/Collections.js' { - declare module.exports: $Exports<'material-ui-icons/es/Collections'>; -} -declare module 'material-ui-icons/es/CollectionsBookmark.js' { - declare module.exports: $Exports<'material-ui-icons/es/CollectionsBookmark'>; -} -declare module 'material-ui-icons/es/Colorize.js' { - declare module.exports: $Exports<'material-ui-icons/es/Colorize'>; -} -declare module 'material-ui-icons/es/ColorLens.js' { - declare module.exports: $Exports<'material-ui-icons/es/ColorLens'>; -} -declare module 'material-ui-icons/es/Comment.js' { - declare module.exports: $Exports<'material-ui-icons/es/Comment'>; -} -declare module 'material-ui-icons/es/Compare.js' { - declare module.exports: $Exports<'material-ui-icons/es/Compare'>; -} -declare module 'material-ui-icons/es/CompareArrows.js' { - declare module.exports: $Exports<'material-ui-icons/es/CompareArrows'>; -} -declare module 'material-ui-icons/es/Computer.js' { - declare module.exports: $Exports<'material-ui-icons/es/Computer'>; -} -declare module 'material-ui-icons/es/ConfirmationNumber.js' { - declare module.exports: $Exports<'material-ui-icons/es/ConfirmationNumber'>; -} -declare module 'material-ui-icons/es/ContactMail.js' { - declare module.exports: $Exports<'material-ui-icons/es/ContactMail'>; -} -declare module 'material-ui-icons/es/ContactPhone.js' { - declare module.exports: $Exports<'material-ui-icons/es/ContactPhone'>; -} -declare module 'material-ui-icons/es/Contacts.js' { - declare module.exports: $Exports<'material-ui-icons/es/Contacts'>; -} -declare module 'material-ui-icons/es/ContentCopy.js' { - declare module.exports: $Exports<'material-ui-icons/es/ContentCopy'>; -} -declare module 'material-ui-icons/es/ContentCut.js' { - declare module.exports: $Exports<'material-ui-icons/es/ContentCut'>; -} -declare module 'material-ui-icons/es/ContentPaste.js' { - declare module.exports: $Exports<'material-ui-icons/es/ContentPaste'>; -} -declare module 'material-ui-icons/es/ControlPoint.js' { - declare module.exports: $Exports<'material-ui-icons/es/ControlPoint'>; -} -declare module 'material-ui-icons/es/ControlPointDuplicate.js' { - declare module.exports: $Exports<'material-ui-icons/es/ControlPointDuplicate'>; -} -declare module 'material-ui-icons/es/Copyright.js' { - declare module.exports: $Exports<'material-ui-icons/es/Copyright'>; -} -declare module 'material-ui-icons/es/Create.js' { - declare module.exports: $Exports<'material-ui-icons/es/Create'>; -} -declare module 'material-ui-icons/es/CreateNewFolder.js' { - declare module.exports: $Exports<'material-ui-icons/es/CreateNewFolder'>; -} -declare module 'material-ui-icons/es/CreditCard.js' { - declare module.exports: $Exports<'material-ui-icons/es/CreditCard'>; -} -declare module 'material-ui-icons/es/Crop.js' { - declare module.exports: $Exports<'material-ui-icons/es/Crop'>; -} -declare module 'material-ui-icons/es/Crop169.js' { - declare module.exports: $Exports<'material-ui-icons/es/Crop169'>; -} -declare module 'material-ui-icons/es/Crop32.js' { - declare module.exports: $Exports<'material-ui-icons/es/Crop32'>; -} -declare module 'material-ui-icons/es/Crop54.js' { - declare module.exports: $Exports<'material-ui-icons/es/Crop54'>; -} -declare module 'material-ui-icons/es/Crop75.js' { - declare module.exports: $Exports<'material-ui-icons/es/Crop75'>; -} -declare module 'material-ui-icons/es/CropDin.js' { - declare module.exports: $Exports<'material-ui-icons/es/CropDin'>; -} -declare module 'material-ui-icons/es/CropFree.js' { - declare module.exports: $Exports<'material-ui-icons/es/CropFree'>; -} -declare module 'material-ui-icons/es/CropLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/es/CropLandscape'>; -} -declare module 'material-ui-icons/es/CropOriginal.js' { - declare module.exports: $Exports<'material-ui-icons/es/CropOriginal'>; -} -declare module 'material-ui-icons/es/CropPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/es/CropPortrait'>; -} -declare module 'material-ui-icons/es/CropRotate.js' { - declare module.exports: $Exports<'material-ui-icons/es/CropRotate'>; -} -declare module 'material-ui-icons/es/CropSquare.js' { - declare module.exports: $Exports<'material-ui-icons/es/CropSquare'>; -} -declare module 'material-ui-icons/es/Dashboard.js' { - declare module.exports: $Exports<'material-ui-icons/es/Dashboard'>; -} -declare module 'material-ui-icons/es/DataUsage.js' { - declare module.exports: $Exports<'material-ui-icons/es/DataUsage'>; -} -declare module 'material-ui-icons/es/DateRange.js' { - declare module.exports: $Exports<'material-ui-icons/es/DateRange'>; -} -declare module 'material-ui-icons/es/Dehaze.js' { - declare module.exports: $Exports<'material-ui-icons/es/Dehaze'>; -} -declare module 'material-ui-icons/es/Delete.js' { - declare module.exports: $Exports<'material-ui-icons/es/Delete'>; -} -declare module 'material-ui-icons/es/DeleteForever.js' { - declare module.exports: $Exports<'material-ui-icons/es/DeleteForever'>; -} -declare module 'material-ui-icons/es/DeleteSweep.js' { - declare module.exports: $Exports<'material-ui-icons/es/DeleteSweep'>; -} -declare module 'material-ui-icons/es/Description.js' { - declare module.exports: $Exports<'material-ui-icons/es/Description'>; -} -declare module 'material-ui-icons/es/DesktopMac.js' { - declare module.exports: $Exports<'material-ui-icons/es/DesktopMac'>; -} -declare module 'material-ui-icons/es/DesktopWindows.js' { - declare module.exports: $Exports<'material-ui-icons/es/DesktopWindows'>; -} -declare module 'material-ui-icons/es/Details.js' { - declare module.exports: $Exports<'material-ui-icons/es/Details'>; -} -declare module 'material-ui-icons/es/DeveloperBoard.js' { - declare module.exports: $Exports<'material-ui-icons/es/DeveloperBoard'>; -} -declare module 'material-ui-icons/es/DeveloperMode.js' { - declare module.exports: $Exports<'material-ui-icons/es/DeveloperMode'>; -} -declare module 'material-ui-icons/es/DeviceHub.js' { - declare module.exports: $Exports<'material-ui-icons/es/DeviceHub'>; -} -declare module 'material-ui-icons/es/Devices.js' { - declare module.exports: $Exports<'material-ui-icons/es/Devices'>; -} -declare module 'material-ui-icons/es/DevicesOther.js' { - declare module.exports: $Exports<'material-ui-icons/es/DevicesOther'>; -} -declare module 'material-ui-icons/es/DialerSip.js' { - declare module.exports: $Exports<'material-ui-icons/es/DialerSip'>; -} -declare module 'material-ui-icons/es/Dialpad.js' { - declare module.exports: $Exports<'material-ui-icons/es/Dialpad'>; -} -declare module 'material-ui-icons/es/Directions.js' { - declare module.exports: $Exports<'material-ui-icons/es/Directions'>; -} -declare module 'material-ui-icons/es/DirectionsBike.js' { - declare module.exports: $Exports<'material-ui-icons/es/DirectionsBike'>; -} -declare module 'material-ui-icons/es/DirectionsBoat.js' { - declare module.exports: $Exports<'material-ui-icons/es/DirectionsBoat'>; -} -declare module 'material-ui-icons/es/DirectionsBus.js' { - declare module.exports: $Exports<'material-ui-icons/es/DirectionsBus'>; -} -declare module 'material-ui-icons/es/DirectionsCar.js' { - declare module.exports: $Exports<'material-ui-icons/es/DirectionsCar'>; -} -declare module 'material-ui-icons/es/DirectionsRailway.js' { - declare module.exports: $Exports<'material-ui-icons/es/DirectionsRailway'>; -} -declare module 'material-ui-icons/es/DirectionsRun.js' { - declare module.exports: $Exports<'material-ui-icons/es/DirectionsRun'>; -} -declare module 'material-ui-icons/es/DirectionsSubway.js' { - declare module.exports: $Exports<'material-ui-icons/es/DirectionsSubway'>; -} -declare module 'material-ui-icons/es/DirectionsTransit.js' { - declare module.exports: $Exports<'material-ui-icons/es/DirectionsTransit'>; -} -declare module 'material-ui-icons/es/DirectionsWalk.js' { - declare module.exports: $Exports<'material-ui-icons/es/DirectionsWalk'>; -} -declare module 'material-ui-icons/es/DiscFull.js' { - declare module.exports: $Exports<'material-ui-icons/es/DiscFull'>; -} -declare module 'material-ui-icons/es/Dns.js' { - declare module.exports: $Exports<'material-ui-icons/es/Dns'>; -} -declare module 'material-ui-icons/es/Dock.js' { - declare module.exports: $Exports<'material-ui-icons/es/Dock'>; -} -declare module 'material-ui-icons/es/Domain.js' { - declare module.exports: $Exports<'material-ui-icons/es/Domain'>; -} -declare module 'material-ui-icons/es/Done.js' { - declare module.exports: $Exports<'material-ui-icons/es/Done'>; -} -declare module 'material-ui-icons/es/DoneAll.js' { - declare module.exports: $Exports<'material-ui-icons/es/DoneAll'>; -} -declare module 'material-ui-icons/es/DoNotDisturb.js' { - declare module.exports: $Exports<'material-ui-icons/es/DoNotDisturb'>; -} -declare module 'material-ui-icons/es/DoNotDisturbAlt.js' { - declare module.exports: $Exports<'material-ui-icons/es/DoNotDisturbAlt'>; -} -declare module 'material-ui-icons/es/DoNotDisturbOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/DoNotDisturbOff'>; -} -declare module 'material-ui-icons/es/DoNotDisturbOn.js' { - declare module.exports: $Exports<'material-ui-icons/es/DoNotDisturbOn'>; -} -declare module 'material-ui-icons/es/DonutLarge.js' { - declare module.exports: $Exports<'material-ui-icons/es/DonutLarge'>; -} -declare module 'material-ui-icons/es/DonutSmall.js' { - declare module.exports: $Exports<'material-ui-icons/es/DonutSmall'>; -} -declare module 'material-ui-icons/es/Drafts.js' { - declare module.exports: $Exports<'material-ui-icons/es/Drafts'>; -} -declare module 'material-ui-icons/es/DragHandle.js' { - declare module.exports: $Exports<'material-ui-icons/es/DragHandle'>; -} -declare module 'material-ui-icons/es/DriveEta.js' { - declare module.exports: $Exports<'material-ui-icons/es/DriveEta'>; -} -declare module 'material-ui-icons/es/Dvr.js' { - declare module.exports: $Exports<'material-ui-icons/es/Dvr'>; -} -declare module 'material-ui-icons/es/Edit.js' { - declare module.exports: $Exports<'material-ui-icons/es/Edit'>; -} -declare module 'material-ui-icons/es/EditLocation.js' { - declare module.exports: $Exports<'material-ui-icons/es/EditLocation'>; -} -declare module 'material-ui-icons/es/Eject.js' { - declare module.exports: $Exports<'material-ui-icons/es/Eject'>; -} -declare module 'material-ui-icons/es/Email.js' { - declare module.exports: $Exports<'material-ui-icons/es/Email'>; -} -declare module 'material-ui-icons/es/EnhancedEncryption.js' { - declare module.exports: $Exports<'material-ui-icons/es/EnhancedEncryption'>; -} -declare module 'material-ui-icons/es/Equalizer.js' { - declare module.exports: $Exports<'material-ui-icons/es/Equalizer'>; -} -declare module 'material-ui-icons/es/Error.js' { - declare module.exports: $Exports<'material-ui-icons/es/Error'>; -} -declare module 'material-ui-icons/es/ErrorOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/ErrorOutline'>; -} -declare module 'material-ui-icons/es/EuroSymbol.js' { - declare module.exports: $Exports<'material-ui-icons/es/EuroSymbol'>; -} -declare module 'material-ui-icons/es/Event.js' { - declare module.exports: $Exports<'material-ui-icons/es/Event'>; -} -declare module 'material-ui-icons/es/EventAvailable.js' { - declare module.exports: $Exports<'material-ui-icons/es/EventAvailable'>; -} -declare module 'material-ui-icons/es/EventBusy.js' { - declare module.exports: $Exports<'material-ui-icons/es/EventBusy'>; -} -declare module 'material-ui-icons/es/EventNote.js' { - declare module.exports: $Exports<'material-ui-icons/es/EventNote'>; -} -declare module 'material-ui-icons/es/EventSeat.js' { - declare module.exports: $Exports<'material-ui-icons/es/EventSeat'>; -} -declare module 'material-ui-icons/es/EvStation.js' { - declare module.exports: $Exports<'material-ui-icons/es/EvStation'>; -} -declare module 'material-ui-icons/es/ExitToApp.js' { - declare module.exports: $Exports<'material-ui-icons/es/ExitToApp'>; -} -declare module 'material-ui-icons/es/ExpandLess.js' { - declare module.exports: $Exports<'material-ui-icons/es/ExpandLess'>; -} -declare module 'material-ui-icons/es/ExpandMore.js' { - declare module.exports: $Exports<'material-ui-icons/es/ExpandMore'>; -} -declare module 'material-ui-icons/es/Explicit.js' { - declare module.exports: $Exports<'material-ui-icons/es/Explicit'>; -} -declare module 'material-ui-icons/es/Explore.js' { - declare module.exports: $Exports<'material-ui-icons/es/Explore'>; -} -declare module 'material-ui-icons/es/Exposure.js' { - declare module.exports: $Exports<'material-ui-icons/es/Exposure'>; -} -declare module 'material-ui-icons/es/ExposureNeg1.js' { - declare module.exports: $Exports<'material-ui-icons/es/ExposureNeg1'>; -} -declare module 'material-ui-icons/es/ExposureNeg2.js' { - declare module.exports: $Exports<'material-ui-icons/es/ExposureNeg2'>; -} -declare module 'material-ui-icons/es/ExposurePlus1.js' { - declare module.exports: $Exports<'material-ui-icons/es/ExposurePlus1'>; -} -declare module 'material-ui-icons/es/ExposurePlus2.js' { - declare module.exports: $Exports<'material-ui-icons/es/ExposurePlus2'>; -} -declare module 'material-ui-icons/es/ExposureZero.js' { - declare module.exports: $Exports<'material-ui-icons/es/ExposureZero'>; -} -declare module 'material-ui-icons/es/Extension.js' { - declare module.exports: $Exports<'material-ui-icons/es/Extension'>; -} -declare module 'material-ui-icons/es/Face.js' { - declare module.exports: $Exports<'material-ui-icons/es/Face'>; -} -declare module 'material-ui-icons/es/FastForward.js' { - declare module.exports: $Exports<'material-ui-icons/es/FastForward'>; -} -declare module 'material-ui-icons/es/FastRewind.js' { - declare module.exports: $Exports<'material-ui-icons/es/FastRewind'>; -} -declare module 'material-ui-icons/es/Favorite.js' { - declare module.exports: $Exports<'material-ui-icons/es/Favorite'>; -} -declare module 'material-ui-icons/es/FavoriteBorder.js' { - declare module.exports: $Exports<'material-ui-icons/es/FavoriteBorder'>; -} -declare module 'material-ui-icons/es/FeaturedPlayList.js' { - declare module.exports: $Exports<'material-ui-icons/es/FeaturedPlayList'>; -} -declare module 'material-ui-icons/es/FeaturedVideo.js' { - declare module.exports: $Exports<'material-ui-icons/es/FeaturedVideo'>; -} -declare module 'material-ui-icons/es/Feedback.js' { - declare module.exports: $Exports<'material-ui-icons/es/Feedback'>; -} -declare module 'material-ui-icons/es/FiberDvr.js' { - declare module.exports: $Exports<'material-ui-icons/es/FiberDvr'>; -} -declare module 'material-ui-icons/es/FiberManualRecord.js' { - declare module.exports: $Exports<'material-ui-icons/es/FiberManualRecord'>; -} -declare module 'material-ui-icons/es/FiberNew.js' { - declare module.exports: $Exports<'material-ui-icons/es/FiberNew'>; -} -declare module 'material-ui-icons/es/FiberPin.js' { - declare module.exports: $Exports<'material-ui-icons/es/FiberPin'>; -} -declare module 'material-ui-icons/es/FiberSmartRecord.js' { - declare module.exports: $Exports<'material-ui-icons/es/FiberSmartRecord'>; -} -declare module 'material-ui-icons/es/FileDownload.js' { - declare module.exports: $Exports<'material-ui-icons/es/FileDownload'>; -} -declare module 'material-ui-icons/es/FileUpload.js' { - declare module.exports: $Exports<'material-ui-icons/es/FileUpload'>; -} -declare module 'material-ui-icons/es/Filter.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter'>; -} -declare module 'material-ui-icons/es/Filter1.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter1'>; -} -declare module 'material-ui-icons/es/Filter2.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter2'>; -} -declare module 'material-ui-icons/es/Filter3.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter3'>; -} -declare module 'material-ui-icons/es/Filter4.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter4'>; -} -declare module 'material-ui-icons/es/Filter5.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter5'>; -} -declare module 'material-ui-icons/es/Filter6.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter6'>; -} -declare module 'material-ui-icons/es/Filter7.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter7'>; -} -declare module 'material-ui-icons/es/Filter8.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter8'>; -} -declare module 'material-ui-icons/es/Filter9.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter9'>; -} -declare module 'material-ui-icons/es/Filter9Plus.js' { - declare module.exports: $Exports<'material-ui-icons/es/Filter9Plus'>; -} -declare module 'material-ui-icons/es/FilterBAndW.js' { - declare module.exports: $Exports<'material-ui-icons/es/FilterBAndW'>; -} -declare module 'material-ui-icons/es/FilterCenterFocus.js' { - declare module.exports: $Exports<'material-ui-icons/es/FilterCenterFocus'>; -} -declare module 'material-ui-icons/es/FilterDrama.js' { - declare module.exports: $Exports<'material-ui-icons/es/FilterDrama'>; -} -declare module 'material-ui-icons/es/FilterFrames.js' { - declare module.exports: $Exports<'material-ui-icons/es/FilterFrames'>; -} -declare module 'material-ui-icons/es/FilterHdr.js' { - declare module.exports: $Exports<'material-ui-icons/es/FilterHdr'>; -} -declare module 'material-ui-icons/es/FilterList.js' { - declare module.exports: $Exports<'material-ui-icons/es/FilterList'>; -} -declare module 'material-ui-icons/es/FilterNone.js' { - declare module.exports: $Exports<'material-ui-icons/es/FilterNone'>; -} -declare module 'material-ui-icons/es/FilterTiltShift.js' { - declare module.exports: $Exports<'material-ui-icons/es/FilterTiltShift'>; -} -declare module 'material-ui-icons/es/FilterVintage.js' { - declare module.exports: $Exports<'material-ui-icons/es/FilterVintage'>; -} -declare module 'material-ui-icons/es/FindInPage.js' { - declare module.exports: $Exports<'material-ui-icons/es/FindInPage'>; -} -declare module 'material-ui-icons/es/FindReplace.js' { - declare module.exports: $Exports<'material-ui-icons/es/FindReplace'>; -} -declare module 'material-ui-icons/es/Fingerprint.js' { - declare module.exports: $Exports<'material-ui-icons/es/Fingerprint'>; -} -declare module 'material-ui-icons/es/FirstPage.js' { - declare module.exports: $Exports<'material-ui-icons/es/FirstPage'>; -} -declare module 'material-ui-icons/es/FitnessCenter.js' { - declare module.exports: $Exports<'material-ui-icons/es/FitnessCenter'>; -} -declare module 'material-ui-icons/es/Flag.js' { - declare module.exports: $Exports<'material-ui-icons/es/Flag'>; -} -declare module 'material-ui-icons/es/Flare.js' { - declare module.exports: $Exports<'material-ui-icons/es/Flare'>; -} -declare module 'material-ui-icons/es/FlashAuto.js' { - declare module.exports: $Exports<'material-ui-icons/es/FlashAuto'>; -} -declare module 'material-ui-icons/es/FlashOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/FlashOff'>; -} -declare module 'material-ui-icons/es/FlashOn.js' { - declare module.exports: $Exports<'material-ui-icons/es/FlashOn'>; -} -declare module 'material-ui-icons/es/Flight.js' { - declare module.exports: $Exports<'material-ui-icons/es/Flight'>; -} -declare module 'material-ui-icons/es/FlightLand.js' { - declare module.exports: $Exports<'material-ui-icons/es/FlightLand'>; -} -declare module 'material-ui-icons/es/FlightTakeoff.js' { - declare module.exports: $Exports<'material-ui-icons/es/FlightTakeoff'>; -} -declare module 'material-ui-icons/es/Flip.js' { - declare module.exports: $Exports<'material-ui-icons/es/Flip'>; -} -declare module 'material-ui-icons/es/FlipToBack.js' { - declare module.exports: $Exports<'material-ui-icons/es/FlipToBack'>; -} -declare module 'material-ui-icons/es/FlipToFront.js' { - declare module.exports: $Exports<'material-ui-icons/es/FlipToFront'>; -} -declare module 'material-ui-icons/es/Folder.js' { - declare module.exports: $Exports<'material-ui-icons/es/Folder'>; -} -declare module 'material-ui-icons/es/FolderOpen.js' { - declare module.exports: $Exports<'material-ui-icons/es/FolderOpen'>; -} -declare module 'material-ui-icons/es/FolderShared.js' { - declare module.exports: $Exports<'material-ui-icons/es/FolderShared'>; -} -declare module 'material-ui-icons/es/FolderSpecial.js' { - declare module.exports: $Exports<'material-ui-icons/es/FolderSpecial'>; -} -declare module 'material-ui-icons/es/FontDownload.js' { - declare module.exports: $Exports<'material-ui-icons/es/FontDownload'>; -} -declare module 'material-ui-icons/es/FormatAlignCenter.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatAlignCenter'>; -} -declare module 'material-ui-icons/es/FormatAlignJustify.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatAlignJustify'>; -} -declare module 'material-ui-icons/es/FormatAlignLeft.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatAlignLeft'>; -} -declare module 'material-ui-icons/es/FormatAlignRight.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatAlignRight'>; -} -declare module 'material-ui-icons/es/FormatBold.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatBold'>; -} -declare module 'material-ui-icons/es/FormatClear.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatClear'>; -} -declare module 'material-ui-icons/es/FormatColorFill.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatColorFill'>; -} -declare module 'material-ui-icons/es/FormatColorReset.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatColorReset'>; -} -declare module 'material-ui-icons/es/FormatColorText.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatColorText'>; -} -declare module 'material-ui-icons/es/FormatIndentDecrease.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatIndentDecrease'>; -} -declare module 'material-ui-icons/es/FormatIndentIncrease.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatIndentIncrease'>; -} -declare module 'material-ui-icons/es/FormatItalic.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatItalic'>; -} -declare module 'material-ui-icons/es/FormatLineSpacing.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatLineSpacing'>; -} -declare module 'material-ui-icons/es/FormatListBulleted.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatListBulleted'>; -} -declare module 'material-ui-icons/es/FormatListNumbered.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatListNumbered'>; -} -declare module 'material-ui-icons/es/FormatPaint.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatPaint'>; -} -declare module 'material-ui-icons/es/FormatQuote.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatQuote'>; -} -declare module 'material-ui-icons/es/FormatShapes.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatShapes'>; -} -declare module 'material-ui-icons/es/FormatSize.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatSize'>; -} -declare module 'material-ui-icons/es/FormatStrikethrough.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatStrikethrough'>; -} -declare module 'material-ui-icons/es/FormatTextdirectionLToR.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatTextdirectionLToR'>; -} -declare module 'material-ui-icons/es/FormatTextdirectionRToL.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatTextdirectionRToL'>; -} -declare module 'material-ui-icons/es/FormatUnderlined.js' { - declare module.exports: $Exports<'material-ui-icons/es/FormatUnderlined'>; -} -declare module 'material-ui-icons/es/Forum.js' { - declare module.exports: $Exports<'material-ui-icons/es/Forum'>; -} -declare module 'material-ui-icons/es/Forward.js' { - declare module.exports: $Exports<'material-ui-icons/es/Forward'>; -} -declare module 'material-ui-icons/es/Forward10.js' { - declare module.exports: $Exports<'material-ui-icons/es/Forward10'>; -} -declare module 'material-ui-icons/es/Forward30.js' { - declare module.exports: $Exports<'material-ui-icons/es/Forward30'>; -} -declare module 'material-ui-icons/es/Forward5.js' { - declare module.exports: $Exports<'material-ui-icons/es/Forward5'>; -} -declare module 'material-ui-icons/es/FreeBreakfast.js' { - declare module.exports: $Exports<'material-ui-icons/es/FreeBreakfast'>; -} -declare module 'material-ui-icons/es/Fullscreen.js' { - declare module.exports: $Exports<'material-ui-icons/es/Fullscreen'>; -} -declare module 'material-ui-icons/es/FullscreenExit.js' { - declare module.exports: $Exports<'material-ui-icons/es/FullscreenExit'>; -} -declare module 'material-ui-icons/es/Functions.js' { - declare module.exports: $Exports<'material-ui-icons/es/Functions'>; -} -declare module 'material-ui-icons/es/Gamepad.js' { - declare module.exports: $Exports<'material-ui-icons/es/Gamepad'>; -} -declare module 'material-ui-icons/es/Games.js' { - declare module.exports: $Exports<'material-ui-icons/es/Games'>; -} -declare module 'material-ui-icons/es/Gavel.js' { - declare module.exports: $Exports<'material-ui-icons/es/Gavel'>; -} -declare module 'material-ui-icons/es/Gesture.js' { - declare module.exports: $Exports<'material-ui-icons/es/Gesture'>; -} -declare module 'material-ui-icons/es/GetApp.js' { - declare module.exports: $Exports<'material-ui-icons/es/GetApp'>; -} -declare module 'material-ui-icons/es/Gif.js' { - declare module.exports: $Exports<'material-ui-icons/es/Gif'>; -} -declare module 'material-ui-icons/es/GolfCourse.js' { - declare module.exports: $Exports<'material-ui-icons/es/GolfCourse'>; -} -declare module 'material-ui-icons/es/GpsFixed.js' { - declare module.exports: $Exports<'material-ui-icons/es/GpsFixed'>; -} -declare module 'material-ui-icons/es/GpsNotFixed.js' { - declare module.exports: $Exports<'material-ui-icons/es/GpsNotFixed'>; -} -declare module 'material-ui-icons/es/GpsOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/GpsOff'>; -} -declare module 'material-ui-icons/es/Grade.js' { - declare module.exports: $Exports<'material-ui-icons/es/Grade'>; -} -declare module 'material-ui-icons/es/Gradient.js' { - declare module.exports: $Exports<'material-ui-icons/es/Gradient'>; -} -declare module 'material-ui-icons/es/Grain.js' { - declare module.exports: $Exports<'material-ui-icons/es/Grain'>; -} -declare module 'material-ui-icons/es/GraphicEq.js' { - declare module.exports: $Exports<'material-ui-icons/es/GraphicEq'>; -} -declare module 'material-ui-icons/es/GridOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/GridOff'>; -} -declare module 'material-ui-icons/es/GridOn.js' { - declare module.exports: $Exports<'material-ui-icons/es/GridOn'>; -} -declare module 'material-ui-icons/es/Group.js' { - declare module.exports: $Exports<'material-ui-icons/es/Group'>; -} -declare module 'material-ui-icons/es/GroupAdd.js' { - declare module.exports: $Exports<'material-ui-icons/es/GroupAdd'>; -} -declare module 'material-ui-icons/es/GroupWork.js' { - declare module.exports: $Exports<'material-ui-icons/es/GroupWork'>; -} -declare module 'material-ui-icons/es/GTranslate.js' { - declare module.exports: $Exports<'material-ui-icons/es/GTranslate'>; -} -declare module 'material-ui-icons/es/Hd.js' { - declare module.exports: $Exports<'material-ui-icons/es/Hd'>; -} -declare module 'material-ui-icons/es/HdrOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/HdrOff'>; -} -declare module 'material-ui-icons/es/HdrOn.js' { - declare module.exports: $Exports<'material-ui-icons/es/HdrOn'>; -} -declare module 'material-ui-icons/es/HdrStrong.js' { - declare module.exports: $Exports<'material-ui-icons/es/HdrStrong'>; -} -declare module 'material-ui-icons/es/HdrWeak.js' { - declare module.exports: $Exports<'material-ui-icons/es/HdrWeak'>; -} -declare module 'material-ui-icons/es/Headset.js' { - declare module.exports: $Exports<'material-ui-icons/es/Headset'>; -} -declare module 'material-ui-icons/es/HeadsetMic.js' { - declare module.exports: $Exports<'material-ui-icons/es/HeadsetMic'>; -} -declare module 'material-ui-icons/es/Healing.js' { - declare module.exports: $Exports<'material-ui-icons/es/Healing'>; -} -declare module 'material-ui-icons/es/Hearing.js' { - declare module.exports: $Exports<'material-ui-icons/es/Hearing'>; -} -declare module 'material-ui-icons/es/Help.js' { - declare module.exports: $Exports<'material-ui-icons/es/Help'>; -} -declare module 'material-ui-icons/es/HelpOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/HelpOutline'>; -} -declare module 'material-ui-icons/es/Highlight.js' { - declare module.exports: $Exports<'material-ui-icons/es/Highlight'>; -} -declare module 'material-ui-icons/es/HighlightOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/HighlightOff'>; -} -declare module 'material-ui-icons/es/HighQuality.js' { - declare module.exports: $Exports<'material-ui-icons/es/HighQuality'>; -} -declare module 'material-ui-icons/es/History.js' { - declare module.exports: $Exports<'material-ui-icons/es/History'>; -} -declare module 'material-ui-icons/es/Home.js' { - declare module.exports: $Exports<'material-ui-icons/es/Home'>; -} -declare module 'material-ui-icons/es/Hotel.js' { - declare module.exports: $Exports<'material-ui-icons/es/Hotel'>; -} -declare module 'material-ui-icons/es/HotTub.js' { - declare module.exports: $Exports<'material-ui-icons/es/HotTub'>; -} -declare module 'material-ui-icons/es/HourglassEmpty.js' { - declare module.exports: $Exports<'material-ui-icons/es/HourglassEmpty'>; -} -declare module 'material-ui-icons/es/HourglassFull.js' { - declare module.exports: $Exports<'material-ui-icons/es/HourglassFull'>; -} -declare module 'material-ui-icons/es/Http.js' { - declare module.exports: $Exports<'material-ui-icons/es/Http'>; -} -declare module 'material-ui-icons/es/Https.js' { - declare module.exports: $Exports<'material-ui-icons/es/Https'>; -} -declare module 'material-ui-icons/es/Image.js' { - declare module.exports: $Exports<'material-ui-icons/es/Image'>; -} -declare module 'material-ui-icons/es/ImageAspectRatio.js' { - declare module.exports: $Exports<'material-ui-icons/es/ImageAspectRatio'>; -} -declare module 'material-ui-icons/es/ImportantDevices.js' { - declare module.exports: $Exports<'material-ui-icons/es/ImportantDevices'>; -} -declare module 'material-ui-icons/es/ImportContacts.js' { - declare module.exports: $Exports<'material-ui-icons/es/ImportContacts'>; -} -declare module 'material-ui-icons/es/ImportExport.js' { - declare module.exports: $Exports<'material-ui-icons/es/ImportExport'>; -} -declare module 'material-ui-icons/es/Inbox.js' { - declare module.exports: $Exports<'material-ui-icons/es/Inbox'>; -} -declare module 'material-ui-icons/es/IndeterminateCheckBox.js' { - declare module.exports: $Exports<'material-ui-icons/es/IndeterminateCheckBox'>; -} -declare module 'material-ui-icons/es/index.js' { - declare module.exports: $Exports<'material-ui-icons/es/index'>; -} -declare module 'material-ui-icons/es/Info.js' { - declare module.exports: $Exports<'material-ui-icons/es/Info'>; -} -declare module 'material-ui-icons/es/InfoOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/InfoOutline'>; -} -declare module 'material-ui-icons/es/Input.js' { - declare module.exports: $Exports<'material-ui-icons/es/Input'>; -} -declare module 'material-ui-icons/es/InsertChart.js' { - declare module.exports: $Exports<'material-ui-icons/es/InsertChart'>; -} -declare module 'material-ui-icons/es/InsertComment.js' { - declare module.exports: $Exports<'material-ui-icons/es/InsertComment'>; -} -declare module 'material-ui-icons/es/InsertDriveFile.js' { - declare module.exports: $Exports<'material-ui-icons/es/InsertDriveFile'>; -} -declare module 'material-ui-icons/es/InsertEmoticon.js' { - declare module.exports: $Exports<'material-ui-icons/es/InsertEmoticon'>; -} -declare module 'material-ui-icons/es/InsertInvitation.js' { - declare module.exports: $Exports<'material-ui-icons/es/InsertInvitation'>; -} -declare module 'material-ui-icons/es/InsertLink.js' { - declare module.exports: $Exports<'material-ui-icons/es/InsertLink'>; -} -declare module 'material-ui-icons/es/InsertPhoto.js' { - declare module.exports: $Exports<'material-ui-icons/es/InsertPhoto'>; -} -declare module 'material-ui-icons/es/InvertColors.js' { - declare module.exports: $Exports<'material-ui-icons/es/InvertColors'>; -} -declare module 'material-ui-icons/es/InvertColorsOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/InvertColorsOff'>; -} -declare module 'material-ui-icons/es/Iso.js' { - declare module.exports: $Exports<'material-ui-icons/es/Iso'>; -} -declare module 'material-ui-icons/es/Keyboard.js' { - declare module.exports: $Exports<'material-ui-icons/es/Keyboard'>; -} -declare module 'material-ui-icons/es/KeyboardArrowDown.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardArrowDown'>; -} -declare module 'material-ui-icons/es/KeyboardArrowLeft.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardArrowLeft'>; -} -declare module 'material-ui-icons/es/KeyboardArrowRight.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardArrowRight'>; -} -declare module 'material-ui-icons/es/KeyboardArrowUp.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardArrowUp'>; -} -declare module 'material-ui-icons/es/KeyboardBackspace.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardBackspace'>; -} -declare module 'material-ui-icons/es/KeyboardCapslock.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardCapslock'>; -} -declare module 'material-ui-icons/es/KeyboardHide.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardHide'>; -} -declare module 'material-ui-icons/es/KeyboardReturn.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardReturn'>; -} -declare module 'material-ui-icons/es/KeyboardTab.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardTab'>; -} -declare module 'material-ui-icons/es/KeyboardVoice.js' { - declare module.exports: $Exports<'material-ui-icons/es/KeyboardVoice'>; -} -declare module 'material-ui-icons/es/Kitchen.js' { - declare module.exports: $Exports<'material-ui-icons/es/Kitchen'>; -} -declare module 'material-ui-icons/es/Label.js' { - declare module.exports: $Exports<'material-ui-icons/es/Label'>; -} -declare module 'material-ui-icons/es/LabelOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/LabelOutline'>; -} -declare module 'material-ui-icons/es/Landscape.js' { - declare module.exports: $Exports<'material-ui-icons/es/Landscape'>; -} -declare module 'material-ui-icons/es/Language.js' { - declare module.exports: $Exports<'material-ui-icons/es/Language'>; -} -declare module 'material-ui-icons/es/Laptop.js' { - declare module.exports: $Exports<'material-ui-icons/es/Laptop'>; -} -declare module 'material-ui-icons/es/LaptopChromebook.js' { - declare module.exports: $Exports<'material-ui-icons/es/LaptopChromebook'>; -} -declare module 'material-ui-icons/es/LaptopMac.js' { - declare module.exports: $Exports<'material-ui-icons/es/LaptopMac'>; -} -declare module 'material-ui-icons/es/LaptopWindows.js' { - declare module.exports: $Exports<'material-ui-icons/es/LaptopWindows'>; -} -declare module 'material-ui-icons/es/LastPage.js' { - declare module.exports: $Exports<'material-ui-icons/es/LastPage'>; -} -declare module 'material-ui-icons/es/Launch.js' { - declare module.exports: $Exports<'material-ui-icons/es/Launch'>; -} -declare module 'material-ui-icons/es/Layers.js' { - declare module.exports: $Exports<'material-ui-icons/es/Layers'>; -} -declare module 'material-ui-icons/es/LayersClear.js' { - declare module.exports: $Exports<'material-ui-icons/es/LayersClear'>; -} -declare module 'material-ui-icons/es/LeakAdd.js' { - declare module.exports: $Exports<'material-ui-icons/es/LeakAdd'>; -} -declare module 'material-ui-icons/es/LeakRemove.js' { - declare module.exports: $Exports<'material-ui-icons/es/LeakRemove'>; -} -declare module 'material-ui-icons/es/Lens.js' { - declare module.exports: $Exports<'material-ui-icons/es/Lens'>; -} -declare module 'material-ui-icons/es/LibraryAdd.js' { - declare module.exports: $Exports<'material-ui-icons/es/LibraryAdd'>; -} -declare module 'material-ui-icons/es/LibraryBooks.js' { - declare module.exports: $Exports<'material-ui-icons/es/LibraryBooks'>; -} -declare module 'material-ui-icons/es/LibraryMusic.js' { - declare module.exports: $Exports<'material-ui-icons/es/LibraryMusic'>; -} -declare module 'material-ui-icons/es/LightbulbOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/LightbulbOutline'>; -} -declare module 'material-ui-icons/es/LinearScale.js' { - declare module.exports: $Exports<'material-ui-icons/es/LinearScale'>; -} -declare module 'material-ui-icons/es/LineStyle.js' { - declare module.exports: $Exports<'material-ui-icons/es/LineStyle'>; -} -declare module 'material-ui-icons/es/LineWeight.js' { - declare module.exports: $Exports<'material-ui-icons/es/LineWeight'>; -} -declare module 'material-ui-icons/es/Link.js' { - declare module.exports: $Exports<'material-ui-icons/es/Link'>; -} -declare module 'material-ui-icons/es/LinkedCamera.js' { - declare module.exports: $Exports<'material-ui-icons/es/LinkedCamera'>; -} -declare module 'material-ui-icons/es/List.js' { - declare module.exports: $Exports<'material-ui-icons/es/List'>; -} -declare module 'material-ui-icons/es/LiveHelp.js' { - declare module.exports: $Exports<'material-ui-icons/es/LiveHelp'>; -} -declare module 'material-ui-icons/es/LiveTv.js' { - declare module.exports: $Exports<'material-ui-icons/es/LiveTv'>; -} -declare module 'material-ui-icons/es/LocalActivity.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalActivity'>; -} -declare module 'material-ui-icons/es/LocalAirport.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalAirport'>; -} -declare module 'material-ui-icons/es/LocalAtm.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalAtm'>; -} -declare module 'material-ui-icons/es/LocalBar.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalBar'>; -} -declare module 'material-ui-icons/es/LocalCafe.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalCafe'>; -} -declare module 'material-ui-icons/es/LocalCarWash.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalCarWash'>; -} -declare module 'material-ui-icons/es/LocalConvenienceStore.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalConvenienceStore'>; -} -declare module 'material-ui-icons/es/LocalDining.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalDining'>; -} -declare module 'material-ui-icons/es/LocalDrink.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalDrink'>; -} -declare module 'material-ui-icons/es/LocalFlorist.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalFlorist'>; -} -declare module 'material-ui-icons/es/LocalGasStation.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalGasStation'>; -} -declare module 'material-ui-icons/es/LocalGroceryStore.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalGroceryStore'>; -} -declare module 'material-ui-icons/es/LocalHospital.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalHospital'>; -} -declare module 'material-ui-icons/es/LocalHotel.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalHotel'>; -} -declare module 'material-ui-icons/es/LocalLaundryService.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalLaundryService'>; -} -declare module 'material-ui-icons/es/LocalLibrary.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalLibrary'>; -} -declare module 'material-ui-icons/es/LocalMall.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalMall'>; -} -declare module 'material-ui-icons/es/LocalMovies.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalMovies'>; -} -declare module 'material-ui-icons/es/LocalOffer.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalOffer'>; -} -declare module 'material-ui-icons/es/LocalParking.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalParking'>; -} -declare module 'material-ui-icons/es/LocalPharmacy.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalPharmacy'>; -} -declare module 'material-ui-icons/es/LocalPhone.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalPhone'>; -} -declare module 'material-ui-icons/es/LocalPizza.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalPizza'>; -} -declare module 'material-ui-icons/es/LocalPlay.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalPlay'>; -} -declare module 'material-ui-icons/es/LocalPostOffice.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalPostOffice'>; -} -declare module 'material-ui-icons/es/LocalPrintshop.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalPrintshop'>; -} -declare module 'material-ui-icons/es/LocalSee.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalSee'>; -} -declare module 'material-ui-icons/es/LocalShipping.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalShipping'>; -} -declare module 'material-ui-icons/es/LocalTaxi.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocalTaxi'>; -} -declare module 'material-ui-icons/es/LocationCity.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocationCity'>; -} -declare module 'material-ui-icons/es/LocationDisabled.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocationDisabled'>; -} -declare module 'material-ui-icons/es/LocationOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocationOff'>; -} -declare module 'material-ui-icons/es/LocationOn.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocationOn'>; -} -declare module 'material-ui-icons/es/LocationSearching.js' { - declare module.exports: $Exports<'material-ui-icons/es/LocationSearching'>; -} -declare module 'material-ui-icons/es/Lock.js' { - declare module.exports: $Exports<'material-ui-icons/es/Lock'>; -} -declare module 'material-ui-icons/es/LockOpen.js' { - declare module.exports: $Exports<'material-ui-icons/es/LockOpen'>; -} -declare module 'material-ui-icons/es/LockOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/LockOutline'>; -} -declare module 'material-ui-icons/es/Looks.js' { - declare module.exports: $Exports<'material-ui-icons/es/Looks'>; -} -declare module 'material-ui-icons/es/Looks3.js' { - declare module.exports: $Exports<'material-ui-icons/es/Looks3'>; -} -declare module 'material-ui-icons/es/Looks4.js' { - declare module.exports: $Exports<'material-ui-icons/es/Looks4'>; -} -declare module 'material-ui-icons/es/Looks5.js' { - declare module.exports: $Exports<'material-ui-icons/es/Looks5'>; -} -declare module 'material-ui-icons/es/Looks6.js' { - declare module.exports: $Exports<'material-ui-icons/es/Looks6'>; -} -declare module 'material-ui-icons/es/LooksOne.js' { - declare module.exports: $Exports<'material-ui-icons/es/LooksOne'>; -} -declare module 'material-ui-icons/es/LooksTwo.js' { - declare module.exports: $Exports<'material-ui-icons/es/LooksTwo'>; -} -declare module 'material-ui-icons/es/Loop.js' { - declare module.exports: $Exports<'material-ui-icons/es/Loop'>; -} -declare module 'material-ui-icons/es/Loupe.js' { - declare module.exports: $Exports<'material-ui-icons/es/Loupe'>; -} -declare module 'material-ui-icons/es/LowPriority.js' { - declare module.exports: $Exports<'material-ui-icons/es/LowPriority'>; -} -declare module 'material-ui-icons/es/Loyalty.js' { - declare module.exports: $Exports<'material-ui-icons/es/Loyalty'>; -} -declare module 'material-ui-icons/es/Mail.js' { - declare module.exports: $Exports<'material-ui-icons/es/Mail'>; -} -declare module 'material-ui-icons/es/MailOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/MailOutline'>; -} -declare module 'material-ui-icons/es/Map.js' { - declare module.exports: $Exports<'material-ui-icons/es/Map'>; -} -declare module 'material-ui-icons/es/Markunread.js' { - declare module.exports: $Exports<'material-ui-icons/es/Markunread'>; -} -declare module 'material-ui-icons/es/MarkunreadMailbox.js' { - declare module.exports: $Exports<'material-ui-icons/es/MarkunreadMailbox'>; -} -declare module 'material-ui-icons/es/Memory.js' { - declare module.exports: $Exports<'material-ui-icons/es/Memory'>; -} -declare module 'material-ui-icons/es/Menu.js' { - declare module.exports: $Exports<'material-ui-icons/es/Menu'>; -} -declare module 'material-ui-icons/es/MergeType.js' { - declare module.exports: $Exports<'material-ui-icons/es/MergeType'>; -} -declare module 'material-ui-icons/es/Message.js' { - declare module.exports: $Exports<'material-ui-icons/es/Message'>; -} -declare module 'material-ui-icons/es/Mic.js' { - declare module.exports: $Exports<'material-ui-icons/es/Mic'>; -} -declare module 'material-ui-icons/es/MicNone.js' { - declare module.exports: $Exports<'material-ui-icons/es/MicNone'>; -} -declare module 'material-ui-icons/es/MicOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/MicOff'>; -} -declare module 'material-ui-icons/es/Mms.js' { - declare module.exports: $Exports<'material-ui-icons/es/Mms'>; -} -declare module 'material-ui-icons/es/ModeComment.js' { - declare module.exports: $Exports<'material-ui-icons/es/ModeComment'>; -} -declare module 'material-ui-icons/es/ModeEdit.js' { - declare module.exports: $Exports<'material-ui-icons/es/ModeEdit'>; -} -declare module 'material-ui-icons/es/MonetizationOn.js' { - declare module.exports: $Exports<'material-ui-icons/es/MonetizationOn'>; -} -declare module 'material-ui-icons/es/MoneyOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/MoneyOff'>; -} -declare module 'material-ui-icons/es/MonochromePhotos.js' { - declare module.exports: $Exports<'material-ui-icons/es/MonochromePhotos'>; -} -declare module 'material-ui-icons/es/Mood.js' { - declare module.exports: $Exports<'material-ui-icons/es/Mood'>; -} -declare module 'material-ui-icons/es/MoodBad.js' { - declare module.exports: $Exports<'material-ui-icons/es/MoodBad'>; -} -declare module 'material-ui-icons/es/More.js' { - declare module.exports: $Exports<'material-ui-icons/es/More'>; -} -declare module 'material-ui-icons/es/MoreHoriz.js' { - declare module.exports: $Exports<'material-ui-icons/es/MoreHoriz'>; -} -declare module 'material-ui-icons/es/MoreVert.js' { - declare module.exports: $Exports<'material-ui-icons/es/MoreVert'>; -} -declare module 'material-ui-icons/es/Motorcycle.js' { - declare module.exports: $Exports<'material-ui-icons/es/Motorcycle'>; -} -declare module 'material-ui-icons/es/Mouse.js' { - declare module.exports: $Exports<'material-ui-icons/es/Mouse'>; -} -declare module 'material-ui-icons/es/MoveToInbox.js' { - declare module.exports: $Exports<'material-ui-icons/es/MoveToInbox'>; -} -declare module 'material-ui-icons/es/Movie.js' { - declare module.exports: $Exports<'material-ui-icons/es/Movie'>; -} -declare module 'material-ui-icons/es/MovieCreation.js' { - declare module.exports: $Exports<'material-ui-icons/es/MovieCreation'>; -} -declare module 'material-ui-icons/es/MovieFilter.js' { - declare module.exports: $Exports<'material-ui-icons/es/MovieFilter'>; -} -declare module 'material-ui-icons/es/MultilineChart.js' { - declare module.exports: $Exports<'material-ui-icons/es/MultilineChart'>; -} -declare module 'material-ui-icons/es/MusicNote.js' { - declare module.exports: $Exports<'material-ui-icons/es/MusicNote'>; -} -declare module 'material-ui-icons/es/MusicVideo.js' { - declare module.exports: $Exports<'material-ui-icons/es/MusicVideo'>; -} -declare module 'material-ui-icons/es/MyLocation.js' { - declare module.exports: $Exports<'material-ui-icons/es/MyLocation'>; -} -declare module 'material-ui-icons/es/Nature.js' { - declare module.exports: $Exports<'material-ui-icons/es/Nature'>; -} -declare module 'material-ui-icons/es/NaturePeople.js' { - declare module.exports: $Exports<'material-ui-icons/es/NaturePeople'>; -} -declare module 'material-ui-icons/es/NavigateBefore.js' { - declare module.exports: $Exports<'material-ui-icons/es/NavigateBefore'>; -} -declare module 'material-ui-icons/es/NavigateNext.js' { - declare module.exports: $Exports<'material-ui-icons/es/NavigateNext'>; -} -declare module 'material-ui-icons/es/Navigation.js' { - declare module.exports: $Exports<'material-ui-icons/es/Navigation'>; -} -declare module 'material-ui-icons/es/NearMe.js' { - declare module.exports: $Exports<'material-ui-icons/es/NearMe'>; -} -declare module 'material-ui-icons/es/NetworkCell.js' { - declare module.exports: $Exports<'material-ui-icons/es/NetworkCell'>; -} -declare module 'material-ui-icons/es/NetworkCheck.js' { - declare module.exports: $Exports<'material-ui-icons/es/NetworkCheck'>; -} -declare module 'material-ui-icons/es/NetworkLocked.js' { - declare module.exports: $Exports<'material-ui-icons/es/NetworkLocked'>; -} -declare module 'material-ui-icons/es/NetworkWifi.js' { - declare module.exports: $Exports<'material-ui-icons/es/NetworkWifi'>; -} -declare module 'material-ui-icons/es/NewReleases.js' { - declare module.exports: $Exports<'material-ui-icons/es/NewReleases'>; -} -declare module 'material-ui-icons/es/NextWeek.js' { - declare module.exports: $Exports<'material-ui-icons/es/NextWeek'>; -} -declare module 'material-ui-icons/es/Nfc.js' { - declare module.exports: $Exports<'material-ui-icons/es/Nfc'>; -} -declare module 'material-ui-icons/es/NoEncryption.js' { - declare module.exports: $Exports<'material-ui-icons/es/NoEncryption'>; -} -declare module 'material-ui-icons/es/NoSim.js' { - declare module.exports: $Exports<'material-ui-icons/es/NoSim'>; -} -declare module 'material-ui-icons/es/Note.js' { - declare module.exports: $Exports<'material-ui-icons/es/Note'>; -} -declare module 'material-ui-icons/es/NoteAdd.js' { - declare module.exports: $Exports<'material-ui-icons/es/NoteAdd'>; -} -declare module 'material-ui-icons/es/Notifications.js' { - declare module.exports: $Exports<'material-ui-icons/es/Notifications'>; -} -declare module 'material-ui-icons/es/NotificationsActive.js' { - declare module.exports: $Exports<'material-ui-icons/es/NotificationsActive'>; -} -declare module 'material-ui-icons/es/NotificationsNone.js' { - declare module.exports: $Exports<'material-ui-icons/es/NotificationsNone'>; -} -declare module 'material-ui-icons/es/NotificationsOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/NotificationsOff'>; -} -declare module 'material-ui-icons/es/NotificationsPaused.js' { - declare module.exports: $Exports<'material-ui-icons/es/NotificationsPaused'>; -} -declare module 'material-ui-icons/es/NotInterested.js' { - declare module.exports: $Exports<'material-ui-icons/es/NotInterested'>; -} -declare module 'material-ui-icons/es/OfflinePin.js' { - declare module.exports: $Exports<'material-ui-icons/es/OfflinePin'>; -} -declare module 'material-ui-icons/es/OndemandVideo.js' { - declare module.exports: $Exports<'material-ui-icons/es/OndemandVideo'>; -} -declare module 'material-ui-icons/es/Opacity.js' { - declare module.exports: $Exports<'material-ui-icons/es/Opacity'>; -} -declare module 'material-ui-icons/es/OpenInBrowser.js' { - declare module.exports: $Exports<'material-ui-icons/es/OpenInBrowser'>; -} -declare module 'material-ui-icons/es/OpenInNew.js' { - declare module.exports: $Exports<'material-ui-icons/es/OpenInNew'>; -} -declare module 'material-ui-icons/es/OpenWith.js' { - declare module.exports: $Exports<'material-ui-icons/es/OpenWith'>; -} -declare module 'material-ui-icons/es/Pages.js' { - declare module.exports: $Exports<'material-ui-icons/es/Pages'>; -} -declare module 'material-ui-icons/es/Pageview.js' { - declare module.exports: $Exports<'material-ui-icons/es/Pageview'>; -} -declare module 'material-ui-icons/es/Palette.js' { - declare module.exports: $Exports<'material-ui-icons/es/Palette'>; -} -declare module 'material-ui-icons/es/Panorama.js' { - declare module.exports: $Exports<'material-ui-icons/es/Panorama'>; -} -declare module 'material-ui-icons/es/PanoramaFishEye.js' { - declare module.exports: $Exports<'material-ui-icons/es/PanoramaFishEye'>; -} -declare module 'material-ui-icons/es/PanoramaHorizontal.js' { - declare module.exports: $Exports<'material-ui-icons/es/PanoramaHorizontal'>; -} -declare module 'material-ui-icons/es/PanoramaVertical.js' { - declare module.exports: $Exports<'material-ui-icons/es/PanoramaVertical'>; -} -declare module 'material-ui-icons/es/PanoramaWideAngle.js' { - declare module.exports: $Exports<'material-ui-icons/es/PanoramaWideAngle'>; -} -declare module 'material-ui-icons/es/PanTool.js' { - declare module.exports: $Exports<'material-ui-icons/es/PanTool'>; -} -declare module 'material-ui-icons/es/PartyMode.js' { - declare module.exports: $Exports<'material-ui-icons/es/PartyMode'>; -} -declare module 'material-ui-icons/es/Pause.js' { - declare module.exports: $Exports<'material-ui-icons/es/Pause'>; -} -declare module 'material-ui-icons/es/PauseCircleFilled.js' { - declare module.exports: $Exports<'material-ui-icons/es/PauseCircleFilled'>; -} -declare module 'material-ui-icons/es/PauseCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/PauseCircleOutline'>; -} -declare module 'material-ui-icons/es/Payment.js' { - declare module.exports: $Exports<'material-ui-icons/es/Payment'>; -} -declare module 'material-ui-icons/es/People.js' { - declare module.exports: $Exports<'material-ui-icons/es/People'>; -} -declare module 'material-ui-icons/es/PeopleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/PeopleOutline'>; -} -declare module 'material-ui-icons/es/PermCameraMic.js' { - declare module.exports: $Exports<'material-ui-icons/es/PermCameraMic'>; -} -declare module 'material-ui-icons/es/PermContactCalendar.js' { - declare module.exports: $Exports<'material-ui-icons/es/PermContactCalendar'>; -} -declare module 'material-ui-icons/es/PermDataSetting.js' { - declare module.exports: $Exports<'material-ui-icons/es/PermDataSetting'>; -} -declare module 'material-ui-icons/es/PermDeviceInformation.js' { - declare module.exports: $Exports<'material-ui-icons/es/PermDeviceInformation'>; -} -declare module 'material-ui-icons/es/PermIdentity.js' { - declare module.exports: $Exports<'material-ui-icons/es/PermIdentity'>; -} -declare module 'material-ui-icons/es/PermMedia.js' { - declare module.exports: $Exports<'material-ui-icons/es/PermMedia'>; -} -declare module 'material-ui-icons/es/PermPhoneMsg.js' { - declare module.exports: $Exports<'material-ui-icons/es/PermPhoneMsg'>; -} -declare module 'material-ui-icons/es/PermScanWifi.js' { - declare module.exports: $Exports<'material-ui-icons/es/PermScanWifi'>; -} -declare module 'material-ui-icons/es/Person.js' { - declare module.exports: $Exports<'material-ui-icons/es/Person'>; -} -declare module 'material-ui-icons/es/PersonAdd.js' { - declare module.exports: $Exports<'material-ui-icons/es/PersonAdd'>; -} -declare module 'material-ui-icons/es/PersonalVideo.js' { - declare module.exports: $Exports<'material-ui-icons/es/PersonalVideo'>; -} -declare module 'material-ui-icons/es/PersonOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/PersonOutline'>; -} -declare module 'material-ui-icons/es/PersonPin.js' { - declare module.exports: $Exports<'material-ui-icons/es/PersonPin'>; -} -declare module 'material-ui-icons/es/PersonPinCircle.js' { - declare module.exports: $Exports<'material-ui-icons/es/PersonPinCircle'>; -} -declare module 'material-ui-icons/es/Pets.js' { - declare module.exports: $Exports<'material-ui-icons/es/Pets'>; -} -declare module 'material-ui-icons/es/Phone.js' { - declare module.exports: $Exports<'material-ui-icons/es/Phone'>; -} -declare module 'material-ui-icons/es/PhoneAndroid.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhoneAndroid'>; -} -declare module 'material-ui-icons/es/PhoneBluetoothSpeaker.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhoneBluetoothSpeaker'>; -} -declare module 'material-ui-icons/es/PhoneForwarded.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhoneForwarded'>; -} -declare module 'material-ui-icons/es/PhoneInTalk.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhoneInTalk'>; -} -declare module 'material-ui-icons/es/PhoneIphone.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhoneIphone'>; -} -declare module 'material-ui-icons/es/Phonelink.js' { - declare module.exports: $Exports<'material-ui-icons/es/Phonelink'>; -} -declare module 'material-ui-icons/es/PhonelinkErase.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhonelinkErase'>; -} -declare module 'material-ui-icons/es/PhonelinkLock.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhonelinkLock'>; -} -declare module 'material-ui-icons/es/PhonelinkOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhonelinkOff'>; -} -declare module 'material-ui-icons/es/PhonelinkRing.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhonelinkRing'>; -} -declare module 'material-ui-icons/es/PhonelinkSetup.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhonelinkSetup'>; -} -declare module 'material-ui-icons/es/PhoneLocked.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhoneLocked'>; -} -declare module 'material-ui-icons/es/PhoneMissed.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhoneMissed'>; -} -declare module 'material-ui-icons/es/PhonePaused.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhonePaused'>; -} -declare module 'material-ui-icons/es/Photo.js' { - declare module.exports: $Exports<'material-ui-icons/es/Photo'>; -} -declare module 'material-ui-icons/es/PhotoAlbum.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhotoAlbum'>; -} -declare module 'material-ui-icons/es/PhotoCamera.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhotoCamera'>; -} -declare module 'material-ui-icons/es/PhotoFilter.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhotoFilter'>; -} -declare module 'material-ui-icons/es/PhotoLibrary.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhotoLibrary'>; -} -declare module 'material-ui-icons/es/PhotoSizeSelectActual.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhotoSizeSelectActual'>; -} -declare module 'material-ui-icons/es/PhotoSizeSelectLarge.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhotoSizeSelectLarge'>; -} -declare module 'material-ui-icons/es/PhotoSizeSelectSmall.js' { - declare module.exports: $Exports<'material-ui-icons/es/PhotoSizeSelectSmall'>; -} -declare module 'material-ui-icons/es/PictureAsPdf.js' { - declare module.exports: $Exports<'material-ui-icons/es/PictureAsPdf'>; -} -declare module 'material-ui-icons/es/PictureInPicture.js' { - declare module.exports: $Exports<'material-ui-icons/es/PictureInPicture'>; -} -declare module 'material-ui-icons/es/PictureInPictureAlt.js' { - declare module.exports: $Exports<'material-ui-icons/es/PictureInPictureAlt'>; -} -declare module 'material-ui-icons/es/PieChart.js' { - declare module.exports: $Exports<'material-ui-icons/es/PieChart'>; -} -declare module 'material-ui-icons/es/PieChartOutlined.js' { - declare module.exports: $Exports<'material-ui-icons/es/PieChartOutlined'>; -} -declare module 'material-ui-icons/es/PinDrop.js' { - declare module.exports: $Exports<'material-ui-icons/es/PinDrop'>; -} -declare module 'material-ui-icons/es/Place.js' { - declare module.exports: $Exports<'material-ui-icons/es/Place'>; -} -declare module 'material-ui-icons/es/PlayArrow.js' { - declare module.exports: $Exports<'material-ui-icons/es/PlayArrow'>; -} -declare module 'material-ui-icons/es/PlayCircleFilled.js' { - declare module.exports: $Exports<'material-ui-icons/es/PlayCircleFilled'>; -} -declare module 'material-ui-icons/es/PlayCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/PlayCircleOutline'>; -} -declare module 'material-ui-icons/es/PlayForWork.js' { - declare module.exports: $Exports<'material-ui-icons/es/PlayForWork'>; -} -declare module 'material-ui-icons/es/PlaylistAdd.js' { - declare module.exports: $Exports<'material-ui-icons/es/PlaylistAdd'>; -} -declare module 'material-ui-icons/es/PlaylistAddCheck.js' { - declare module.exports: $Exports<'material-ui-icons/es/PlaylistAddCheck'>; -} -declare module 'material-ui-icons/es/PlaylistPlay.js' { - declare module.exports: $Exports<'material-ui-icons/es/PlaylistPlay'>; -} -declare module 'material-ui-icons/es/PlusOne.js' { - declare module.exports: $Exports<'material-ui-icons/es/PlusOne'>; -} -declare module 'material-ui-icons/es/Poll.js' { - declare module.exports: $Exports<'material-ui-icons/es/Poll'>; -} -declare module 'material-ui-icons/es/Polymer.js' { - declare module.exports: $Exports<'material-ui-icons/es/Polymer'>; -} -declare module 'material-ui-icons/es/Pool.js' { - declare module.exports: $Exports<'material-ui-icons/es/Pool'>; -} -declare module 'material-ui-icons/es/PortableWifiOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/PortableWifiOff'>; -} -declare module 'material-ui-icons/es/Portrait.js' { - declare module.exports: $Exports<'material-ui-icons/es/Portrait'>; -} -declare module 'material-ui-icons/es/Power.js' { - declare module.exports: $Exports<'material-ui-icons/es/Power'>; -} -declare module 'material-ui-icons/es/PowerInput.js' { - declare module.exports: $Exports<'material-ui-icons/es/PowerInput'>; -} -declare module 'material-ui-icons/es/PowerSettingsNew.js' { - declare module.exports: $Exports<'material-ui-icons/es/PowerSettingsNew'>; -} -declare module 'material-ui-icons/es/PregnantWoman.js' { - declare module.exports: $Exports<'material-ui-icons/es/PregnantWoman'>; -} -declare module 'material-ui-icons/es/PresentToAll.js' { - declare module.exports: $Exports<'material-ui-icons/es/PresentToAll'>; -} -declare module 'material-ui-icons/es/Print.js' { - declare module.exports: $Exports<'material-ui-icons/es/Print'>; -} -declare module 'material-ui-icons/es/PriorityHigh.js' { - declare module.exports: $Exports<'material-ui-icons/es/PriorityHigh'>; -} -declare module 'material-ui-icons/es/Public.js' { - declare module.exports: $Exports<'material-ui-icons/es/Public'>; -} -declare module 'material-ui-icons/es/Publish.js' { - declare module.exports: $Exports<'material-ui-icons/es/Publish'>; -} -declare module 'material-ui-icons/es/QueryBuilder.js' { - declare module.exports: $Exports<'material-ui-icons/es/QueryBuilder'>; -} -declare module 'material-ui-icons/es/QuestionAnswer.js' { - declare module.exports: $Exports<'material-ui-icons/es/QuestionAnswer'>; -} -declare module 'material-ui-icons/es/Queue.js' { - declare module.exports: $Exports<'material-ui-icons/es/Queue'>; -} -declare module 'material-ui-icons/es/QueueMusic.js' { - declare module.exports: $Exports<'material-ui-icons/es/QueueMusic'>; -} -declare module 'material-ui-icons/es/QueuePlayNext.js' { - declare module.exports: $Exports<'material-ui-icons/es/QueuePlayNext'>; -} -declare module 'material-ui-icons/es/Radio.js' { - declare module.exports: $Exports<'material-ui-icons/es/Radio'>; -} -declare module 'material-ui-icons/es/RadioButtonChecked.js' { - declare module.exports: $Exports<'material-ui-icons/es/RadioButtonChecked'>; -} -declare module 'material-ui-icons/es/RadioButtonUnchecked.js' { - declare module.exports: $Exports<'material-ui-icons/es/RadioButtonUnchecked'>; -} -declare module 'material-ui-icons/es/RateReview.js' { - declare module.exports: $Exports<'material-ui-icons/es/RateReview'>; -} -declare module 'material-ui-icons/es/Receipt.js' { - declare module.exports: $Exports<'material-ui-icons/es/Receipt'>; -} -declare module 'material-ui-icons/es/RecentActors.js' { - declare module.exports: $Exports<'material-ui-icons/es/RecentActors'>; -} -declare module 'material-ui-icons/es/RecordVoiceOver.js' { - declare module.exports: $Exports<'material-ui-icons/es/RecordVoiceOver'>; -} -declare module 'material-ui-icons/es/Redeem.js' { - declare module.exports: $Exports<'material-ui-icons/es/Redeem'>; -} -declare module 'material-ui-icons/es/Redo.js' { - declare module.exports: $Exports<'material-ui-icons/es/Redo'>; -} -declare module 'material-ui-icons/es/Refresh.js' { - declare module.exports: $Exports<'material-ui-icons/es/Refresh'>; -} -declare module 'material-ui-icons/es/Remove.js' { - declare module.exports: $Exports<'material-ui-icons/es/Remove'>; -} -declare module 'material-ui-icons/es/RemoveCircle.js' { - declare module.exports: $Exports<'material-ui-icons/es/RemoveCircle'>; -} -declare module 'material-ui-icons/es/RemoveCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/es/RemoveCircleOutline'>; -} -declare module 'material-ui-icons/es/RemoveFromQueue.js' { - declare module.exports: $Exports<'material-ui-icons/es/RemoveFromQueue'>; -} -declare module 'material-ui-icons/es/RemoveRedEye.js' { - declare module.exports: $Exports<'material-ui-icons/es/RemoveRedEye'>; -} -declare module 'material-ui-icons/es/RemoveShoppingCart.js' { - declare module.exports: $Exports<'material-ui-icons/es/RemoveShoppingCart'>; -} -declare module 'material-ui-icons/es/Reorder.js' { - declare module.exports: $Exports<'material-ui-icons/es/Reorder'>; -} -declare module 'material-ui-icons/es/Repeat.js' { - declare module.exports: $Exports<'material-ui-icons/es/Repeat'>; -} -declare module 'material-ui-icons/es/RepeatOne.js' { - declare module.exports: $Exports<'material-ui-icons/es/RepeatOne'>; -} -declare module 'material-ui-icons/es/Replay.js' { - declare module.exports: $Exports<'material-ui-icons/es/Replay'>; -} -declare module 'material-ui-icons/es/Replay10.js' { - declare module.exports: $Exports<'material-ui-icons/es/Replay10'>; -} -declare module 'material-ui-icons/es/Replay30.js' { - declare module.exports: $Exports<'material-ui-icons/es/Replay30'>; -} -declare module 'material-ui-icons/es/Replay5.js' { - declare module.exports: $Exports<'material-ui-icons/es/Replay5'>; -} -declare module 'material-ui-icons/es/Reply.js' { - declare module.exports: $Exports<'material-ui-icons/es/Reply'>; -} -declare module 'material-ui-icons/es/ReplyAll.js' { - declare module.exports: $Exports<'material-ui-icons/es/ReplyAll'>; -} -declare module 'material-ui-icons/es/Report.js' { - declare module.exports: $Exports<'material-ui-icons/es/Report'>; -} -declare module 'material-ui-icons/es/ReportProblem.js' { - declare module.exports: $Exports<'material-ui-icons/es/ReportProblem'>; -} -declare module 'material-ui-icons/es/Restaurant.js' { - declare module.exports: $Exports<'material-ui-icons/es/Restaurant'>; -} -declare module 'material-ui-icons/es/RestaurantMenu.js' { - declare module.exports: $Exports<'material-ui-icons/es/RestaurantMenu'>; -} -declare module 'material-ui-icons/es/Restore.js' { - declare module.exports: $Exports<'material-ui-icons/es/Restore'>; -} -declare module 'material-ui-icons/es/RestorePage.js' { - declare module.exports: $Exports<'material-ui-icons/es/RestorePage'>; -} -declare module 'material-ui-icons/es/RingVolume.js' { - declare module.exports: $Exports<'material-ui-icons/es/RingVolume'>; -} -declare module 'material-ui-icons/es/Room.js' { - declare module.exports: $Exports<'material-ui-icons/es/Room'>; -} -declare module 'material-ui-icons/es/RoomService.js' { - declare module.exports: $Exports<'material-ui-icons/es/RoomService'>; -} -declare module 'material-ui-icons/es/Rotate90DegreesCcw.js' { - declare module.exports: $Exports<'material-ui-icons/es/Rotate90DegreesCcw'>; -} -declare module 'material-ui-icons/es/RotateLeft.js' { - declare module.exports: $Exports<'material-ui-icons/es/RotateLeft'>; -} -declare module 'material-ui-icons/es/RotateRight.js' { - declare module.exports: $Exports<'material-ui-icons/es/RotateRight'>; -} -declare module 'material-ui-icons/es/RoundedCorner.js' { - declare module.exports: $Exports<'material-ui-icons/es/RoundedCorner'>; -} -declare module 'material-ui-icons/es/Router.js' { - declare module.exports: $Exports<'material-ui-icons/es/Router'>; -} -declare module 'material-ui-icons/es/Rowing.js' { - declare module.exports: $Exports<'material-ui-icons/es/Rowing'>; -} -declare module 'material-ui-icons/es/RssFeed.js' { - declare module.exports: $Exports<'material-ui-icons/es/RssFeed'>; -} -declare module 'material-ui-icons/es/RvHookup.js' { - declare module.exports: $Exports<'material-ui-icons/es/RvHookup'>; -} -declare module 'material-ui-icons/es/Satellite.js' { - declare module.exports: $Exports<'material-ui-icons/es/Satellite'>; -} -declare module 'material-ui-icons/es/Save.js' { - declare module.exports: $Exports<'material-ui-icons/es/Save'>; -} -declare module 'material-ui-icons/es/Scanner.js' { - declare module.exports: $Exports<'material-ui-icons/es/Scanner'>; -} -declare module 'material-ui-icons/es/Schedule.js' { - declare module.exports: $Exports<'material-ui-icons/es/Schedule'>; -} -declare module 'material-ui-icons/es/School.js' { - declare module.exports: $Exports<'material-ui-icons/es/School'>; -} -declare module 'material-ui-icons/es/ScreenLockLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/es/ScreenLockLandscape'>; -} -declare module 'material-ui-icons/es/ScreenLockPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/es/ScreenLockPortrait'>; -} -declare module 'material-ui-icons/es/ScreenLockRotation.js' { - declare module.exports: $Exports<'material-ui-icons/es/ScreenLockRotation'>; -} -declare module 'material-ui-icons/es/ScreenRotation.js' { - declare module.exports: $Exports<'material-ui-icons/es/ScreenRotation'>; -} -declare module 'material-ui-icons/es/ScreenShare.js' { - declare module.exports: $Exports<'material-ui-icons/es/ScreenShare'>; -} -declare module 'material-ui-icons/es/SdCard.js' { - declare module.exports: $Exports<'material-ui-icons/es/SdCard'>; -} -declare module 'material-ui-icons/es/SdStorage.js' { - declare module.exports: $Exports<'material-ui-icons/es/SdStorage'>; -} -declare module 'material-ui-icons/es/Search.js' { - declare module.exports: $Exports<'material-ui-icons/es/Search'>; -} -declare module 'material-ui-icons/es/Security.js' { - declare module.exports: $Exports<'material-ui-icons/es/Security'>; -} -declare module 'material-ui-icons/es/SelectAll.js' { - declare module.exports: $Exports<'material-ui-icons/es/SelectAll'>; -} -declare module 'material-ui-icons/es/Send.js' { - declare module.exports: $Exports<'material-ui-icons/es/Send'>; -} -declare module 'material-ui-icons/es/SentimentDissatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/es/SentimentDissatisfied'>; -} -declare module 'material-ui-icons/es/SentimentNeutral.js' { - declare module.exports: $Exports<'material-ui-icons/es/SentimentNeutral'>; -} -declare module 'material-ui-icons/es/SentimentSatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/es/SentimentSatisfied'>; -} -declare module 'material-ui-icons/es/SentimentVeryDissatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/es/SentimentVeryDissatisfied'>; -} -declare module 'material-ui-icons/es/SentimentVerySatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/es/SentimentVerySatisfied'>; -} -declare module 'material-ui-icons/es/Settings.js' { - declare module.exports: $Exports<'material-ui-icons/es/Settings'>; -} -declare module 'material-ui-icons/es/SettingsApplications.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsApplications'>; -} -declare module 'material-ui-icons/es/SettingsBackupRestore.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsBackupRestore'>; -} -declare module 'material-ui-icons/es/SettingsBluetooth.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsBluetooth'>; -} -declare module 'material-ui-icons/es/SettingsBrightness.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsBrightness'>; -} -declare module 'material-ui-icons/es/SettingsCell.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsCell'>; -} -declare module 'material-ui-icons/es/SettingsEthernet.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsEthernet'>; -} -declare module 'material-ui-icons/es/SettingsInputAntenna.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsInputAntenna'>; -} -declare module 'material-ui-icons/es/SettingsInputComponent.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsInputComponent'>; -} -declare module 'material-ui-icons/es/SettingsInputComposite.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsInputComposite'>; -} -declare module 'material-ui-icons/es/SettingsInputHdmi.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsInputHdmi'>; -} -declare module 'material-ui-icons/es/SettingsInputSvideo.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsInputSvideo'>; -} -declare module 'material-ui-icons/es/SettingsOverscan.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsOverscan'>; -} -declare module 'material-ui-icons/es/SettingsPhone.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsPhone'>; -} -declare module 'material-ui-icons/es/SettingsPower.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsPower'>; -} -declare module 'material-ui-icons/es/SettingsRemote.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsRemote'>; -} -declare module 'material-ui-icons/es/SettingsSystemDaydream.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsSystemDaydream'>; -} -declare module 'material-ui-icons/es/SettingsVoice.js' { - declare module.exports: $Exports<'material-ui-icons/es/SettingsVoice'>; -} -declare module 'material-ui-icons/es/Share.js' { - declare module.exports: $Exports<'material-ui-icons/es/Share'>; -} -declare module 'material-ui-icons/es/Shop.js' { - declare module.exports: $Exports<'material-ui-icons/es/Shop'>; -} -declare module 'material-ui-icons/es/ShoppingBasket.js' { - declare module.exports: $Exports<'material-ui-icons/es/ShoppingBasket'>; -} -declare module 'material-ui-icons/es/ShoppingCart.js' { - declare module.exports: $Exports<'material-ui-icons/es/ShoppingCart'>; -} -declare module 'material-ui-icons/es/ShopTwo.js' { - declare module.exports: $Exports<'material-ui-icons/es/ShopTwo'>; -} -declare module 'material-ui-icons/es/ShortText.js' { - declare module.exports: $Exports<'material-ui-icons/es/ShortText'>; -} -declare module 'material-ui-icons/es/ShowChart.js' { - declare module.exports: $Exports<'material-ui-icons/es/ShowChart'>; -} -declare module 'material-ui-icons/es/Shuffle.js' { - declare module.exports: $Exports<'material-ui-icons/es/Shuffle'>; -} -declare module 'material-ui-icons/es/SignalCellular0Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellular0Bar'>; -} -declare module 'material-ui-icons/es/SignalCellular1Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellular1Bar'>; -} -declare module 'material-ui-icons/es/SignalCellular2Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellular2Bar'>; -} -declare module 'material-ui-icons/es/SignalCellular3Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellular3Bar'>; -} -declare module 'material-ui-icons/es/SignalCellular4Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellular4Bar'>; -} -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet0Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellularConnectedNoInternet0Bar'>; -} -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet1Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellularConnectedNoInternet1Bar'>; -} -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet2Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellularConnectedNoInternet2Bar'>; -} -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet3Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellularConnectedNoInternet3Bar'>; -} -declare module 'material-ui-icons/es/SignalCellularConnectedNoInternet4Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellularConnectedNoInternet4Bar'>; -} -declare module 'material-ui-icons/es/SignalCellularNoSim.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellularNoSim'>; -} -declare module 'material-ui-icons/es/SignalCellularNull.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellularNull'>; -} -declare module 'material-ui-icons/es/SignalCellularOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalCellularOff'>; -} -declare module 'material-ui-icons/es/SignalWifi0Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifi0Bar'>; -} -declare module 'material-ui-icons/es/SignalWifi1Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifi1Bar'>; -} -declare module 'material-ui-icons/es/SignalWifi1BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifi1BarLock'>; -} -declare module 'material-ui-icons/es/SignalWifi2Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifi2Bar'>; -} -declare module 'material-ui-icons/es/SignalWifi2BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifi2BarLock'>; -} -declare module 'material-ui-icons/es/SignalWifi3Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifi3Bar'>; -} -declare module 'material-ui-icons/es/SignalWifi3BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifi3BarLock'>; -} -declare module 'material-ui-icons/es/SignalWifi4Bar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifi4Bar'>; -} -declare module 'material-ui-icons/es/SignalWifi4BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifi4BarLock'>; -} -declare module 'material-ui-icons/es/SignalWifiOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/SignalWifiOff'>; -} -declare module 'material-ui-icons/es/SimCard.js' { - declare module.exports: $Exports<'material-ui-icons/es/SimCard'>; -} -declare module 'material-ui-icons/es/SimCardAlert.js' { - declare module.exports: $Exports<'material-ui-icons/es/SimCardAlert'>; -} -declare module 'material-ui-icons/es/SkipNext.js' { - declare module.exports: $Exports<'material-ui-icons/es/SkipNext'>; -} -declare module 'material-ui-icons/es/SkipPrevious.js' { - declare module.exports: $Exports<'material-ui-icons/es/SkipPrevious'>; -} -declare module 'material-ui-icons/es/Slideshow.js' { - declare module.exports: $Exports<'material-ui-icons/es/Slideshow'>; -} -declare module 'material-ui-icons/es/SlowMotionVideo.js' { - declare module.exports: $Exports<'material-ui-icons/es/SlowMotionVideo'>; -} -declare module 'material-ui-icons/es/Smartphone.js' { - declare module.exports: $Exports<'material-ui-icons/es/Smartphone'>; -} -declare module 'material-ui-icons/es/SmokeFree.js' { - declare module.exports: $Exports<'material-ui-icons/es/SmokeFree'>; -} -declare module 'material-ui-icons/es/SmokingRooms.js' { - declare module.exports: $Exports<'material-ui-icons/es/SmokingRooms'>; -} -declare module 'material-ui-icons/es/Sms.js' { - declare module.exports: $Exports<'material-ui-icons/es/Sms'>; -} -declare module 'material-ui-icons/es/SmsFailed.js' { - declare module.exports: $Exports<'material-ui-icons/es/SmsFailed'>; -} -declare module 'material-ui-icons/es/Snooze.js' { - declare module.exports: $Exports<'material-ui-icons/es/Snooze'>; -} -declare module 'material-ui-icons/es/Sort.js' { - declare module.exports: $Exports<'material-ui-icons/es/Sort'>; -} -declare module 'material-ui-icons/es/SortByAlpha.js' { - declare module.exports: $Exports<'material-ui-icons/es/SortByAlpha'>; -} -declare module 'material-ui-icons/es/Spa.js' { - declare module.exports: $Exports<'material-ui-icons/es/Spa'>; -} -declare module 'material-ui-icons/es/SpaceBar.js' { - declare module.exports: $Exports<'material-ui-icons/es/SpaceBar'>; -} -declare module 'material-ui-icons/es/Speaker.js' { - declare module.exports: $Exports<'material-ui-icons/es/Speaker'>; -} -declare module 'material-ui-icons/es/SpeakerGroup.js' { - declare module.exports: $Exports<'material-ui-icons/es/SpeakerGroup'>; -} -declare module 'material-ui-icons/es/SpeakerNotes.js' { - declare module.exports: $Exports<'material-ui-icons/es/SpeakerNotes'>; -} -declare module 'material-ui-icons/es/SpeakerNotesOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/SpeakerNotesOff'>; -} -declare module 'material-ui-icons/es/SpeakerPhone.js' { - declare module.exports: $Exports<'material-ui-icons/es/SpeakerPhone'>; -} -declare module 'material-ui-icons/es/Spellcheck.js' { - declare module.exports: $Exports<'material-ui-icons/es/Spellcheck'>; -} -declare module 'material-ui-icons/es/Star.js' { - declare module.exports: $Exports<'material-ui-icons/es/Star'>; -} -declare module 'material-ui-icons/es/StarBorder.js' { - declare module.exports: $Exports<'material-ui-icons/es/StarBorder'>; -} -declare module 'material-ui-icons/es/StarHalf.js' { - declare module.exports: $Exports<'material-ui-icons/es/StarHalf'>; -} -declare module 'material-ui-icons/es/Stars.js' { - declare module.exports: $Exports<'material-ui-icons/es/Stars'>; -} -declare module 'material-ui-icons/es/StayCurrentLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/es/StayCurrentLandscape'>; -} -declare module 'material-ui-icons/es/StayCurrentPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/es/StayCurrentPortrait'>; -} -declare module 'material-ui-icons/es/StayPrimaryLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/es/StayPrimaryLandscape'>; -} -declare module 'material-ui-icons/es/StayPrimaryPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/es/StayPrimaryPortrait'>; -} -declare module 'material-ui-icons/es/Stop.js' { - declare module.exports: $Exports<'material-ui-icons/es/Stop'>; -} -declare module 'material-ui-icons/es/StopScreenShare.js' { - declare module.exports: $Exports<'material-ui-icons/es/StopScreenShare'>; -} -declare module 'material-ui-icons/es/Storage.js' { - declare module.exports: $Exports<'material-ui-icons/es/Storage'>; -} -declare module 'material-ui-icons/es/Store.js' { - declare module.exports: $Exports<'material-ui-icons/es/Store'>; -} -declare module 'material-ui-icons/es/StoreMallDirectory.js' { - declare module.exports: $Exports<'material-ui-icons/es/StoreMallDirectory'>; -} -declare module 'material-ui-icons/es/Straighten.js' { - declare module.exports: $Exports<'material-ui-icons/es/Straighten'>; -} -declare module 'material-ui-icons/es/Streetview.js' { - declare module.exports: $Exports<'material-ui-icons/es/Streetview'>; -} -declare module 'material-ui-icons/es/StrikethroughS.js' { - declare module.exports: $Exports<'material-ui-icons/es/StrikethroughS'>; -} -declare module 'material-ui-icons/es/Style.js' { - declare module.exports: $Exports<'material-ui-icons/es/Style'>; -} -declare module 'material-ui-icons/es/SubdirectoryArrowLeft.js' { - declare module.exports: $Exports<'material-ui-icons/es/SubdirectoryArrowLeft'>; -} -declare module 'material-ui-icons/es/SubdirectoryArrowRight.js' { - declare module.exports: $Exports<'material-ui-icons/es/SubdirectoryArrowRight'>; -} -declare module 'material-ui-icons/es/Subject.js' { - declare module.exports: $Exports<'material-ui-icons/es/Subject'>; -} -declare module 'material-ui-icons/es/Subscriptions.js' { - declare module.exports: $Exports<'material-ui-icons/es/Subscriptions'>; -} -declare module 'material-ui-icons/es/Subtitles.js' { - declare module.exports: $Exports<'material-ui-icons/es/Subtitles'>; -} -declare module 'material-ui-icons/es/Subway.js' { - declare module.exports: $Exports<'material-ui-icons/es/Subway'>; -} -declare module 'material-ui-icons/es/SupervisorAccount.js' { - declare module.exports: $Exports<'material-ui-icons/es/SupervisorAccount'>; -} -declare module 'material-ui-icons/es/SurroundSound.js' { - declare module.exports: $Exports<'material-ui-icons/es/SurroundSound'>; -} -declare module 'material-ui-icons/es/SwapCalls.js' { - declare module.exports: $Exports<'material-ui-icons/es/SwapCalls'>; -} -declare module 'material-ui-icons/es/SwapHoriz.js' { - declare module.exports: $Exports<'material-ui-icons/es/SwapHoriz'>; -} -declare module 'material-ui-icons/es/SwapVert.js' { - declare module.exports: $Exports<'material-ui-icons/es/SwapVert'>; -} -declare module 'material-ui-icons/es/SwapVerticalCircle.js' { - declare module.exports: $Exports<'material-ui-icons/es/SwapVerticalCircle'>; -} -declare module 'material-ui-icons/es/SwitchCamera.js' { - declare module.exports: $Exports<'material-ui-icons/es/SwitchCamera'>; -} -declare module 'material-ui-icons/es/SwitchVideo.js' { - declare module.exports: $Exports<'material-ui-icons/es/SwitchVideo'>; -} -declare module 'material-ui-icons/es/Sync.js' { - declare module.exports: $Exports<'material-ui-icons/es/Sync'>; -} -declare module 'material-ui-icons/es/SyncDisabled.js' { - declare module.exports: $Exports<'material-ui-icons/es/SyncDisabled'>; -} -declare module 'material-ui-icons/es/SyncProblem.js' { - declare module.exports: $Exports<'material-ui-icons/es/SyncProblem'>; -} -declare module 'material-ui-icons/es/SystemUpdate.js' { - declare module.exports: $Exports<'material-ui-icons/es/SystemUpdate'>; -} -declare module 'material-ui-icons/es/SystemUpdateAlt.js' { - declare module.exports: $Exports<'material-ui-icons/es/SystemUpdateAlt'>; -} -declare module 'material-ui-icons/es/Tab.js' { - declare module.exports: $Exports<'material-ui-icons/es/Tab'>; -} -declare module 'material-ui-icons/es/Tablet.js' { - declare module.exports: $Exports<'material-ui-icons/es/Tablet'>; -} -declare module 'material-ui-icons/es/TabletAndroid.js' { - declare module.exports: $Exports<'material-ui-icons/es/TabletAndroid'>; -} -declare module 'material-ui-icons/es/TabletMac.js' { - declare module.exports: $Exports<'material-ui-icons/es/TabletMac'>; -} -declare module 'material-ui-icons/es/TabUnselected.js' { - declare module.exports: $Exports<'material-ui-icons/es/TabUnselected'>; -} -declare module 'material-ui-icons/es/TagFaces.js' { - declare module.exports: $Exports<'material-ui-icons/es/TagFaces'>; -} -declare module 'material-ui-icons/es/TapAndPlay.js' { - declare module.exports: $Exports<'material-ui-icons/es/TapAndPlay'>; -} -declare module 'material-ui-icons/es/Terrain.js' { - declare module.exports: $Exports<'material-ui-icons/es/Terrain'>; -} -declare module 'material-ui-icons/es/TextFields.js' { - declare module.exports: $Exports<'material-ui-icons/es/TextFields'>; -} -declare module 'material-ui-icons/es/TextFormat.js' { - declare module.exports: $Exports<'material-ui-icons/es/TextFormat'>; -} -declare module 'material-ui-icons/es/Textsms.js' { - declare module.exports: $Exports<'material-ui-icons/es/Textsms'>; -} -declare module 'material-ui-icons/es/Texture.js' { - declare module.exports: $Exports<'material-ui-icons/es/Texture'>; -} -declare module 'material-ui-icons/es/Theaters.js' { - declare module.exports: $Exports<'material-ui-icons/es/Theaters'>; -} -declare module 'material-ui-icons/es/ThreeDRotation.js' { - declare module.exports: $Exports<'material-ui-icons/es/ThreeDRotation'>; -} -declare module 'material-ui-icons/es/ThumbDown.js' { - declare module.exports: $Exports<'material-ui-icons/es/ThumbDown'>; -} -declare module 'material-ui-icons/es/ThumbsUpDown.js' { - declare module.exports: $Exports<'material-ui-icons/es/ThumbsUpDown'>; -} -declare module 'material-ui-icons/es/ThumbUp.js' { - declare module.exports: $Exports<'material-ui-icons/es/ThumbUp'>; -} -declare module 'material-ui-icons/es/Timelapse.js' { - declare module.exports: $Exports<'material-ui-icons/es/Timelapse'>; -} -declare module 'material-ui-icons/es/Timeline.js' { - declare module.exports: $Exports<'material-ui-icons/es/Timeline'>; -} -declare module 'material-ui-icons/es/Timer.js' { - declare module.exports: $Exports<'material-ui-icons/es/Timer'>; -} -declare module 'material-ui-icons/es/Timer10.js' { - declare module.exports: $Exports<'material-ui-icons/es/Timer10'>; -} -declare module 'material-ui-icons/es/Timer3.js' { - declare module.exports: $Exports<'material-ui-icons/es/Timer3'>; -} -declare module 'material-ui-icons/es/TimerOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/TimerOff'>; -} -declare module 'material-ui-icons/es/TimeToLeave.js' { - declare module.exports: $Exports<'material-ui-icons/es/TimeToLeave'>; -} -declare module 'material-ui-icons/es/Title.js' { - declare module.exports: $Exports<'material-ui-icons/es/Title'>; -} -declare module 'material-ui-icons/es/Toc.js' { - declare module.exports: $Exports<'material-ui-icons/es/Toc'>; -} -declare module 'material-ui-icons/es/Today.js' { - declare module.exports: $Exports<'material-ui-icons/es/Today'>; -} -declare module 'material-ui-icons/es/Toll.js' { - declare module.exports: $Exports<'material-ui-icons/es/Toll'>; -} -declare module 'material-ui-icons/es/Tonality.js' { - declare module.exports: $Exports<'material-ui-icons/es/Tonality'>; -} -declare module 'material-ui-icons/es/TouchApp.js' { - declare module.exports: $Exports<'material-ui-icons/es/TouchApp'>; -} -declare module 'material-ui-icons/es/Toys.js' { - declare module.exports: $Exports<'material-ui-icons/es/Toys'>; -} -declare module 'material-ui-icons/es/TrackChanges.js' { - declare module.exports: $Exports<'material-ui-icons/es/TrackChanges'>; -} -declare module 'material-ui-icons/es/Traffic.js' { - declare module.exports: $Exports<'material-ui-icons/es/Traffic'>; -} -declare module 'material-ui-icons/es/Train.js' { - declare module.exports: $Exports<'material-ui-icons/es/Train'>; -} -declare module 'material-ui-icons/es/Tram.js' { - declare module.exports: $Exports<'material-ui-icons/es/Tram'>; -} -declare module 'material-ui-icons/es/TransferWithinAStation.js' { - declare module.exports: $Exports<'material-ui-icons/es/TransferWithinAStation'>; -} -declare module 'material-ui-icons/es/Transform.js' { - declare module.exports: $Exports<'material-ui-icons/es/Transform'>; -} -declare module 'material-ui-icons/es/Translate.js' { - declare module.exports: $Exports<'material-ui-icons/es/Translate'>; -} -declare module 'material-ui-icons/es/TrendingDown.js' { - declare module.exports: $Exports<'material-ui-icons/es/TrendingDown'>; -} -declare module 'material-ui-icons/es/TrendingFlat.js' { - declare module.exports: $Exports<'material-ui-icons/es/TrendingFlat'>; -} -declare module 'material-ui-icons/es/TrendingUp.js' { - declare module.exports: $Exports<'material-ui-icons/es/TrendingUp'>; -} -declare module 'material-ui-icons/es/Tune.js' { - declare module.exports: $Exports<'material-ui-icons/es/Tune'>; -} -declare module 'material-ui-icons/es/TurnedIn.js' { - declare module.exports: $Exports<'material-ui-icons/es/TurnedIn'>; -} -declare module 'material-ui-icons/es/TurnedInNot.js' { - declare module.exports: $Exports<'material-ui-icons/es/TurnedInNot'>; -} -declare module 'material-ui-icons/es/Tv.js' { - declare module.exports: $Exports<'material-ui-icons/es/Tv'>; -} -declare module 'material-ui-icons/es/Unarchive.js' { - declare module.exports: $Exports<'material-ui-icons/es/Unarchive'>; -} -declare module 'material-ui-icons/es/Undo.js' { - declare module.exports: $Exports<'material-ui-icons/es/Undo'>; -} -declare module 'material-ui-icons/es/UnfoldLess.js' { - declare module.exports: $Exports<'material-ui-icons/es/UnfoldLess'>; -} -declare module 'material-ui-icons/es/UnfoldMore.js' { - declare module.exports: $Exports<'material-ui-icons/es/UnfoldMore'>; -} -declare module 'material-ui-icons/es/Update.js' { - declare module.exports: $Exports<'material-ui-icons/es/Update'>; -} -declare module 'material-ui-icons/es/Usb.js' { - declare module.exports: $Exports<'material-ui-icons/es/Usb'>; -} -declare module 'material-ui-icons/es/VerifiedUser.js' { - declare module.exports: $Exports<'material-ui-icons/es/VerifiedUser'>; -} -declare module 'material-ui-icons/es/VerticalAlignBottom.js' { - declare module.exports: $Exports<'material-ui-icons/es/VerticalAlignBottom'>; -} -declare module 'material-ui-icons/es/VerticalAlignCenter.js' { - declare module.exports: $Exports<'material-ui-icons/es/VerticalAlignCenter'>; -} -declare module 'material-ui-icons/es/VerticalAlignTop.js' { - declare module.exports: $Exports<'material-ui-icons/es/VerticalAlignTop'>; -} -declare module 'material-ui-icons/es/Vibration.js' { - declare module.exports: $Exports<'material-ui-icons/es/Vibration'>; -} -declare module 'material-ui-icons/es/VideoCall.js' { - declare module.exports: $Exports<'material-ui-icons/es/VideoCall'>; -} -declare module 'material-ui-icons/es/Videocam.js' { - declare module.exports: $Exports<'material-ui-icons/es/Videocam'>; -} -declare module 'material-ui-icons/es/VideocamOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/VideocamOff'>; -} -declare module 'material-ui-icons/es/VideogameAsset.js' { - declare module.exports: $Exports<'material-ui-icons/es/VideogameAsset'>; -} -declare module 'material-ui-icons/es/VideoLabel.js' { - declare module.exports: $Exports<'material-ui-icons/es/VideoLabel'>; -} -declare module 'material-ui-icons/es/VideoLibrary.js' { - declare module.exports: $Exports<'material-ui-icons/es/VideoLibrary'>; -} -declare module 'material-ui-icons/es/ViewAgenda.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewAgenda'>; -} -declare module 'material-ui-icons/es/ViewArray.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewArray'>; -} -declare module 'material-ui-icons/es/ViewCarousel.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewCarousel'>; -} -declare module 'material-ui-icons/es/ViewColumn.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewColumn'>; -} -declare module 'material-ui-icons/es/ViewComfy.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewComfy'>; -} -declare module 'material-ui-icons/es/ViewCompact.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewCompact'>; -} -declare module 'material-ui-icons/es/ViewDay.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewDay'>; -} -declare module 'material-ui-icons/es/ViewHeadline.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewHeadline'>; -} -declare module 'material-ui-icons/es/ViewList.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewList'>; -} -declare module 'material-ui-icons/es/ViewModule.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewModule'>; -} -declare module 'material-ui-icons/es/ViewQuilt.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewQuilt'>; -} -declare module 'material-ui-icons/es/ViewStream.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewStream'>; -} -declare module 'material-ui-icons/es/ViewWeek.js' { - declare module.exports: $Exports<'material-ui-icons/es/ViewWeek'>; -} -declare module 'material-ui-icons/es/Vignette.js' { - declare module.exports: $Exports<'material-ui-icons/es/Vignette'>; -} -declare module 'material-ui-icons/es/Visibility.js' { - declare module.exports: $Exports<'material-ui-icons/es/Visibility'>; -} -declare module 'material-ui-icons/es/VisibilityOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/VisibilityOff'>; -} -declare module 'material-ui-icons/es/VoiceChat.js' { - declare module.exports: $Exports<'material-ui-icons/es/VoiceChat'>; -} -declare module 'material-ui-icons/es/Voicemail.js' { - declare module.exports: $Exports<'material-ui-icons/es/Voicemail'>; -} -declare module 'material-ui-icons/es/VolumeDown.js' { - declare module.exports: $Exports<'material-ui-icons/es/VolumeDown'>; -} -declare module 'material-ui-icons/es/VolumeMute.js' { - declare module.exports: $Exports<'material-ui-icons/es/VolumeMute'>; -} -declare module 'material-ui-icons/es/VolumeOff.js' { - declare module.exports: $Exports<'material-ui-icons/es/VolumeOff'>; -} -declare module 'material-ui-icons/es/VolumeUp.js' { - declare module.exports: $Exports<'material-ui-icons/es/VolumeUp'>; -} -declare module 'material-ui-icons/es/VpnKey.js' { - declare module.exports: $Exports<'material-ui-icons/es/VpnKey'>; -} -declare module 'material-ui-icons/es/VpnLock.js' { - declare module.exports: $Exports<'material-ui-icons/es/VpnLock'>; -} -declare module 'material-ui-icons/es/Wallpaper.js' { - declare module.exports: $Exports<'material-ui-icons/es/Wallpaper'>; -} -declare module 'material-ui-icons/es/Warning.js' { - declare module.exports: $Exports<'material-ui-icons/es/Warning'>; -} -declare module 'material-ui-icons/es/Watch.js' { - declare module.exports: $Exports<'material-ui-icons/es/Watch'>; -} -declare module 'material-ui-icons/es/WatchLater.js' { - declare module.exports: $Exports<'material-ui-icons/es/WatchLater'>; -} -declare module 'material-ui-icons/es/WbAuto.js' { - declare module.exports: $Exports<'material-ui-icons/es/WbAuto'>; -} -declare module 'material-ui-icons/es/WbCloudy.js' { - declare module.exports: $Exports<'material-ui-icons/es/WbCloudy'>; -} -declare module 'material-ui-icons/es/WbIncandescent.js' { - declare module.exports: $Exports<'material-ui-icons/es/WbIncandescent'>; -} -declare module 'material-ui-icons/es/WbIridescent.js' { - declare module.exports: $Exports<'material-ui-icons/es/WbIridescent'>; -} -declare module 'material-ui-icons/es/WbSunny.js' { - declare module.exports: $Exports<'material-ui-icons/es/WbSunny'>; -} -declare module 'material-ui-icons/es/Wc.js' { - declare module.exports: $Exports<'material-ui-icons/es/Wc'>; -} -declare module 'material-ui-icons/es/Web.js' { - declare module.exports: $Exports<'material-ui-icons/es/Web'>; -} -declare module 'material-ui-icons/es/WebAsset.js' { - declare module.exports: $Exports<'material-ui-icons/es/WebAsset'>; -} -declare module 'material-ui-icons/es/Weekend.js' { - declare module.exports: $Exports<'material-ui-icons/es/Weekend'>; -} -declare module 'material-ui-icons/es/Whatshot.js' { - declare module.exports: $Exports<'material-ui-icons/es/Whatshot'>; -} -declare module 'material-ui-icons/es/Widgets.js' { - declare module.exports: $Exports<'material-ui-icons/es/Widgets'>; -} -declare module 'material-ui-icons/es/Wifi.js' { - declare module.exports: $Exports<'material-ui-icons/es/Wifi'>; -} -declare module 'material-ui-icons/es/WifiLock.js' { - declare module.exports: $Exports<'material-ui-icons/es/WifiLock'>; -} -declare module 'material-ui-icons/es/WifiTethering.js' { - declare module.exports: $Exports<'material-ui-icons/es/WifiTethering'>; -} -declare module 'material-ui-icons/es/Work.js' { - declare module.exports: $Exports<'material-ui-icons/es/Work'>; -} -declare module 'material-ui-icons/es/WrapText.js' { - declare module.exports: $Exports<'material-ui-icons/es/WrapText'>; -} -declare module 'material-ui-icons/es/YoutubeSearchedFor.js' { - declare module.exports: $Exports<'material-ui-icons/es/YoutubeSearchedFor'>; -} -declare module 'material-ui-icons/es/ZoomIn.js' { - declare module.exports: $Exports<'material-ui-icons/es/ZoomIn'>; -} -declare module 'material-ui-icons/es/ZoomOut.js' { - declare module.exports: $Exports<'material-ui-icons/es/ZoomOut'>; -} -declare module 'material-ui-icons/es/ZoomOutMap.js' { - declare module.exports: $Exports<'material-ui-icons/es/ZoomOutMap'>; -} -declare module 'material-ui-icons/EuroSymbol.js' { - declare module.exports: $Exports<'material-ui-icons/EuroSymbol'>; -} -declare module 'material-ui-icons/Event.js' { - declare module.exports: $Exports<'material-ui-icons/Event'>; -} -declare module 'material-ui-icons/EventAvailable.js' { - declare module.exports: $Exports<'material-ui-icons/EventAvailable'>; -} -declare module 'material-ui-icons/EventBusy.js' { - declare module.exports: $Exports<'material-ui-icons/EventBusy'>; -} -declare module 'material-ui-icons/EventNote.js' { - declare module.exports: $Exports<'material-ui-icons/EventNote'>; -} -declare module 'material-ui-icons/EventSeat.js' { - declare module.exports: $Exports<'material-ui-icons/EventSeat'>; -} -declare module 'material-ui-icons/EvStation.js' { - declare module.exports: $Exports<'material-ui-icons/EvStation'>; -} -declare module 'material-ui-icons/ExitToApp.js' { - declare module.exports: $Exports<'material-ui-icons/ExitToApp'>; -} -declare module 'material-ui-icons/ExpandLess.js' { - declare module.exports: $Exports<'material-ui-icons/ExpandLess'>; -} -declare module 'material-ui-icons/ExpandMore.js' { - declare module.exports: $Exports<'material-ui-icons/ExpandMore'>; -} -declare module 'material-ui-icons/Explicit.js' { - declare module.exports: $Exports<'material-ui-icons/Explicit'>; -} -declare module 'material-ui-icons/Explore.js' { - declare module.exports: $Exports<'material-ui-icons/Explore'>; -} -declare module 'material-ui-icons/Exposure.js' { - declare module.exports: $Exports<'material-ui-icons/Exposure'>; -} -declare module 'material-ui-icons/ExposureNeg1.js' { - declare module.exports: $Exports<'material-ui-icons/ExposureNeg1'>; -} -declare module 'material-ui-icons/ExposureNeg2.js' { - declare module.exports: $Exports<'material-ui-icons/ExposureNeg2'>; -} -declare module 'material-ui-icons/ExposurePlus1.js' { - declare module.exports: $Exports<'material-ui-icons/ExposurePlus1'>; -} -declare module 'material-ui-icons/ExposurePlus2.js' { - declare module.exports: $Exports<'material-ui-icons/ExposurePlus2'>; -} -declare module 'material-ui-icons/ExposureZero.js' { - declare module.exports: $Exports<'material-ui-icons/ExposureZero'>; -} -declare module 'material-ui-icons/Extension.js' { - declare module.exports: $Exports<'material-ui-icons/Extension'>; -} -declare module 'material-ui-icons/Face.js' { - declare module.exports: $Exports<'material-ui-icons/Face'>; -} -declare module 'material-ui-icons/FastForward.js' { - declare module.exports: $Exports<'material-ui-icons/FastForward'>; -} -declare module 'material-ui-icons/FastRewind.js' { - declare module.exports: $Exports<'material-ui-icons/FastRewind'>; -} -declare module 'material-ui-icons/Favorite.js' { - declare module.exports: $Exports<'material-ui-icons/Favorite'>; -} -declare module 'material-ui-icons/FavoriteBorder.js' { - declare module.exports: $Exports<'material-ui-icons/FavoriteBorder'>; -} -declare module 'material-ui-icons/FeaturedPlayList.js' { - declare module.exports: $Exports<'material-ui-icons/FeaturedPlayList'>; -} -declare module 'material-ui-icons/FeaturedVideo.js' { - declare module.exports: $Exports<'material-ui-icons/FeaturedVideo'>; -} -declare module 'material-ui-icons/Feedback.js' { - declare module.exports: $Exports<'material-ui-icons/Feedback'>; -} -declare module 'material-ui-icons/FiberDvr.js' { - declare module.exports: $Exports<'material-ui-icons/FiberDvr'>; -} -declare module 'material-ui-icons/FiberManualRecord.js' { - declare module.exports: $Exports<'material-ui-icons/FiberManualRecord'>; -} -declare module 'material-ui-icons/FiberNew.js' { - declare module.exports: $Exports<'material-ui-icons/FiberNew'>; -} -declare module 'material-ui-icons/FiberPin.js' { - declare module.exports: $Exports<'material-ui-icons/FiberPin'>; -} -declare module 'material-ui-icons/FiberSmartRecord.js' { - declare module.exports: $Exports<'material-ui-icons/FiberSmartRecord'>; -} -declare module 'material-ui-icons/FileDownload.js' { - declare module.exports: $Exports<'material-ui-icons/FileDownload'>; -} -declare module 'material-ui-icons/FileUpload.js' { - declare module.exports: $Exports<'material-ui-icons/FileUpload'>; -} -declare module 'material-ui-icons/Filter.js' { - declare module.exports: $Exports<'material-ui-icons/Filter'>; -} -declare module 'material-ui-icons/Filter1.js' { - declare module.exports: $Exports<'material-ui-icons/Filter1'>; -} -declare module 'material-ui-icons/Filter2.js' { - declare module.exports: $Exports<'material-ui-icons/Filter2'>; -} -declare module 'material-ui-icons/Filter3.js' { - declare module.exports: $Exports<'material-ui-icons/Filter3'>; -} -declare module 'material-ui-icons/Filter4.js' { - declare module.exports: $Exports<'material-ui-icons/Filter4'>; -} -declare module 'material-ui-icons/Filter5.js' { - declare module.exports: $Exports<'material-ui-icons/Filter5'>; -} -declare module 'material-ui-icons/Filter6.js' { - declare module.exports: $Exports<'material-ui-icons/Filter6'>; -} -declare module 'material-ui-icons/Filter7.js' { - declare module.exports: $Exports<'material-ui-icons/Filter7'>; -} -declare module 'material-ui-icons/Filter8.js' { - declare module.exports: $Exports<'material-ui-icons/Filter8'>; -} -declare module 'material-ui-icons/Filter9.js' { - declare module.exports: $Exports<'material-ui-icons/Filter9'>; -} -declare module 'material-ui-icons/Filter9Plus.js' { - declare module.exports: $Exports<'material-ui-icons/Filter9Plus'>; -} -declare module 'material-ui-icons/FilterBAndW.js' { - declare module.exports: $Exports<'material-ui-icons/FilterBAndW'>; -} -declare module 'material-ui-icons/FilterCenterFocus.js' { - declare module.exports: $Exports<'material-ui-icons/FilterCenterFocus'>; -} -declare module 'material-ui-icons/FilterDrama.js' { - declare module.exports: $Exports<'material-ui-icons/FilterDrama'>; -} -declare module 'material-ui-icons/FilterFrames.js' { - declare module.exports: $Exports<'material-ui-icons/FilterFrames'>; -} -declare module 'material-ui-icons/FilterHdr.js' { - declare module.exports: $Exports<'material-ui-icons/FilterHdr'>; -} -declare module 'material-ui-icons/FilterList.js' { - declare module.exports: $Exports<'material-ui-icons/FilterList'>; -} -declare module 'material-ui-icons/FilterNone.js' { - declare module.exports: $Exports<'material-ui-icons/FilterNone'>; -} -declare module 'material-ui-icons/FilterTiltShift.js' { - declare module.exports: $Exports<'material-ui-icons/FilterTiltShift'>; -} -declare module 'material-ui-icons/FilterVintage.js' { - declare module.exports: $Exports<'material-ui-icons/FilterVintage'>; -} -declare module 'material-ui-icons/FindInPage.js' { - declare module.exports: $Exports<'material-ui-icons/FindInPage'>; -} -declare module 'material-ui-icons/FindReplace.js' { - declare module.exports: $Exports<'material-ui-icons/FindReplace'>; -} -declare module 'material-ui-icons/Fingerprint.js' { - declare module.exports: $Exports<'material-ui-icons/Fingerprint'>; -} -declare module 'material-ui-icons/FirstPage.js' { - declare module.exports: $Exports<'material-ui-icons/FirstPage'>; -} -declare module 'material-ui-icons/FitnessCenter.js' { - declare module.exports: $Exports<'material-ui-icons/FitnessCenter'>; -} -declare module 'material-ui-icons/Flag.js' { - declare module.exports: $Exports<'material-ui-icons/Flag'>; -} -declare module 'material-ui-icons/Flare.js' { - declare module.exports: $Exports<'material-ui-icons/Flare'>; -} -declare module 'material-ui-icons/FlashAuto.js' { - declare module.exports: $Exports<'material-ui-icons/FlashAuto'>; -} -declare module 'material-ui-icons/FlashOff.js' { - declare module.exports: $Exports<'material-ui-icons/FlashOff'>; -} -declare module 'material-ui-icons/FlashOn.js' { - declare module.exports: $Exports<'material-ui-icons/FlashOn'>; -} -declare module 'material-ui-icons/Flight.js' { - declare module.exports: $Exports<'material-ui-icons/Flight'>; -} -declare module 'material-ui-icons/FlightLand.js' { - declare module.exports: $Exports<'material-ui-icons/FlightLand'>; -} -declare module 'material-ui-icons/FlightTakeoff.js' { - declare module.exports: $Exports<'material-ui-icons/FlightTakeoff'>; -} -declare module 'material-ui-icons/Flip.js' { - declare module.exports: $Exports<'material-ui-icons/Flip'>; -} -declare module 'material-ui-icons/FlipToBack.js' { - declare module.exports: $Exports<'material-ui-icons/FlipToBack'>; -} -declare module 'material-ui-icons/FlipToFront.js' { - declare module.exports: $Exports<'material-ui-icons/FlipToFront'>; -} -declare module 'material-ui-icons/Folder.js' { - declare module.exports: $Exports<'material-ui-icons/Folder'>; -} -declare module 'material-ui-icons/FolderOpen.js' { - declare module.exports: $Exports<'material-ui-icons/FolderOpen'>; -} -declare module 'material-ui-icons/FolderShared.js' { - declare module.exports: $Exports<'material-ui-icons/FolderShared'>; -} -declare module 'material-ui-icons/FolderSpecial.js' { - declare module.exports: $Exports<'material-ui-icons/FolderSpecial'>; -} -declare module 'material-ui-icons/FontDownload.js' { - declare module.exports: $Exports<'material-ui-icons/FontDownload'>; -} -declare module 'material-ui-icons/FormatAlignCenter.js' { - declare module.exports: $Exports<'material-ui-icons/FormatAlignCenter'>; -} -declare module 'material-ui-icons/FormatAlignJustify.js' { - declare module.exports: $Exports<'material-ui-icons/FormatAlignJustify'>; -} -declare module 'material-ui-icons/FormatAlignLeft.js' { - declare module.exports: $Exports<'material-ui-icons/FormatAlignLeft'>; -} -declare module 'material-ui-icons/FormatAlignRight.js' { - declare module.exports: $Exports<'material-ui-icons/FormatAlignRight'>; -} -declare module 'material-ui-icons/FormatBold.js' { - declare module.exports: $Exports<'material-ui-icons/FormatBold'>; -} -declare module 'material-ui-icons/FormatClear.js' { - declare module.exports: $Exports<'material-ui-icons/FormatClear'>; -} -declare module 'material-ui-icons/FormatColorFill.js' { - declare module.exports: $Exports<'material-ui-icons/FormatColorFill'>; -} -declare module 'material-ui-icons/FormatColorReset.js' { - declare module.exports: $Exports<'material-ui-icons/FormatColorReset'>; -} -declare module 'material-ui-icons/FormatColorText.js' { - declare module.exports: $Exports<'material-ui-icons/FormatColorText'>; -} -declare module 'material-ui-icons/FormatIndentDecrease.js' { - declare module.exports: $Exports<'material-ui-icons/FormatIndentDecrease'>; -} -declare module 'material-ui-icons/FormatIndentIncrease.js' { - declare module.exports: $Exports<'material-ui-icons/FormatIndentIncrease'>; -} -declare module 'material-ui-icons/FormatItalic.js' { - declare module.exports: $Exports<'material-ui-icons/FormatItalic'>; -} -declare module 'material-ui-icons/FormatLineSpacing.js' { - declare module.exports: $Exports<'material-ui-icons/FormatLineSpacing'>; -} -declare module 'material-ui-icons/FormatListBulleted.js' { - declare module.exports: $Exports<'material-ui-icons/FormatListBulleted'>; -} -declare module 'material-ui-icons/FormatListNumbered.js' { - declare module.exports: $Exports<'material-ui-icons/FormatListNumbered'>; -} -declare module 'material-ui-icons/FormatPaint.js' { - declare module.exports: $Exports<'material-ui-icons/FormatPaint'>; -} -declare module 'material-ui-icons/FormatQuote.js' { - declare module.exports: $Exports<'material-ui-icons/FormatQuote'>; -} -declare module 'material-ui-icons/FormatShapes.js' { - declare module.exports: $Exports<'material-ui-icons/FormatShapes'>; -} -declare module 'material-ui-icons/FormatSize.js' { - declare module.exports: $Exports<'material-ui-icons/FormatSize'>; -} -declare module 'material-ui-icons/FormatStrikethrough.js' { - declare module.exports: $Exports<'material-ui-icons/FormatStrikethrough'>; -} -declare module 'material-ui-icons/FormatTextdirectionLToR.js' { - declare module.exports: $Exports<'material-ui-icons/FormatTextdirectionLToR'>; -} -declare module 'material-ui-icons/FormatTextdirectionRToL.js' { - declare module.exports: $Exports<'material-ui-icons/FormatTextdirectionRToL'>; -} -declare module 'material-ui-icons/FormatUnderlined.js' { - declare module.exports: $Exports<'material-ui-icons/FormatUnderlined'>; -} -declare module 'material-ui-icons/Forum.js' { - declare module.exports: $Exports<'material-ui-icons/Forum'>; -} -declare module 'material-ui-icons/Forward.js' { - declare module.exports: $Exports<'material-ui-icons/Forward'>; -} -declare module 'material-ui-icons/Forward10.js' { - declare module.exports: $Exports<'material-ui-icons/Forward10'>; -} -declare module 'material-ui-icons/Forward30.js' { - declare module.exports: $Exports<'material-ui-icons/Forward30'>; -} -declare module 'material-ui-icons/Forward5.js' { - declare module.exports: $Exports<'material-ui-icons/Forward5'>; -} -declare module 'material-ui-icons/FreeBreakfast.js' { - declare module.exports: $Exports<'material-ui-icons/FreeBreakfast'>; -} -declare module 'material-ui-icons/Fullscreen.js' { - declare module.exports: $Exports<'material-ui-icons/Fullscreen'>; -} -declare module 'material-ui-icons/FullscreenExit.js' { - declare module.exports: $Exports<'material-ui-icons/FullscreenExit'>; -} -declare module 'material-ui-icons/Functions.js' { - declare module.exports: $Exports<'material-ui-icons/Functions'>; -} -declare module 'material-ui-icons/Gamepad.js' { - declare module.exports: $Exports<'material-ui-icons/Gamepad'>; -} -declare module 'material-ui-icons/Games.js' { - declare module.exports: $Exports<'material-ui-icons/Games'>; -} -declare module 'material-ui-icons/Gavel.js' { - declare module.exports: $Exports<'material-ui-icons/Gavel'>; -} -declare module 'material-ui-icons/Gesture.js' { - declare module.exports: $Exports<'material-ui-icons/Gesture'>; -} -declare module 'material-ui-icons/GetApp.js' { - declare module.exports: $Exports<'material-ui-icons/GetApp'>; -} -declare module 'material-ui-icons/Gif.js' { - declare module.exports: $Exports<'material-ui-icons/Gif'>; -} -declare module 'material-ui-icons/GolfCourse.js' { - declare module.exports: $Exports<'material-ui-icons/GolfCourse'>; -} -declare module 'material-ui-icons/GpsFixed.js' { - declare module.exports: $Exports<'material-ui-icons/GpsFixed'>; -} -declare module 'material-ui-icons/GpsNotFixed.js' { - declare module.exports: $Exports<'material-ui-icons/GpsNotFixed'>; -} -declare module 'material-ui-icons/GpsOff.js' { - declare module.exports: $Exports<'material-ui-icons/GpsOff'>; -} -declare module 'material-ui-icons/Grade.js' { - declare module.exports: $Exports<'material-ui-icons/Grade'>; -} -declare module 'material-ui-icons/Gradient.js' { - declare module.exports: $Exports<'material-ui-icons/Gradient'>; -} -declare module 'material-ui-icons/Grain.js' { - declare module.exports: $Exports<'material-ui-icons/Grain'>; -} -declare module 'material-ui-icons/GraphicEq.js' { - declare module.exports: $Exports<'material-ui-icons/GraphicEq'>; -} -declare module 'material-ui-icons/GridOff.js' { - declare module.exports: $Exports<'material-ui-icons/GridOff'>; -} -declare module 'material-ui-icons/GridOn.js' { - declare module.exports: $Exports<'material-ui-icons/GridOn'>; -} -declare module 'material-ui-icons/Group.js' { - declare module.exports: $Exports<'material-ui-icons/Group'>; -} -declare module 'material-ui-icons/GroupAdd.js' { - declare module.exports: $Exports<'material-ui-icons/GroupAdd'>; -} -declare module 'material-ui-icons/GroupWork.js' { - declare module.exports: $Exports<'material-ui-icons/GroupWork'>; -} -declare module 'material-ui-icons/GTranslate.js' { - declare module.exports: $Exports<'material-ui-icons/GTranslate'>; -} -declare module 'material-ui-icons/Hd.js' { - declare module.exports: $Exports<'material-ui-icons/Hd'>; -} -declare module 'material-ui-icons/HdrOff.js' { - declare module.exports: $Exports<'material-ui-icons/HdrOff'>; -} -declare module 'material-ui-icons/HdrOn.js' { - declare module.exports: $Exports<'material-ui-icons/HdrOn'>; -} -declare module 'material-ui-icons/HdrStrong.js' { - declare module.exports: $Exports<'material-ui-icons/HdrStrong'>; -} -declare module 'material-ui-icons/HdrWeak.js' { - declare module.exports: $Exports<'material-ui-icons/HdrWeak'>; -} -declare module 'material-ui-icons/Headset.js' { - declare module.exports: $Exports<'material-ui-icons/Headset'>; -} -declare module 'material-ui-icons/HeadsetMic.js' { - declare module.exports: $Exports<'material-ui-icons/HeadsetMic'>; -} -declare module 'material-ui-icons/Healing.js' { - declare module.exports: $Exports<'material-ui-icons/Healing'>; -} -declare module 'material-ui-icons/Hearing.js' { - declare module.exports: $Exports<'material-ui-icons/Hearing'>; -} -declare module 'material-ui-icons/Help.js' { - declare module.exports: $Exports<'material-ui-icons/Help'>; -} -declare module 'material-ui-icons/HelpOutline.js' { - declare module.exports: $Exports<'material-ui-icons/HelpOutline'>; -} -declare module 'material-ui-icons/Highlight.js' { - declare module.exports: $Exports<'material-ui-icons/Highlight'>; -} -declare module 'material-ui-icons/HighlightOff.js' { - declare module.exports: $Exports<'material-ui-icons/HighlightOff'>; -} -declare module 'material-ui-icons/HighQuality.js' { - declare module.exports: $Exports<'material-ui-icons/HighQuality'>; -} -declare module 'material-ui-icons/History.js' { - declare module.exports: $Exports<'material-ui-icons/History'>; -} -declare module 'material-ui-icons/Home.js' { - declare module.exports: $Exports<'material-ui-icons/Home'>; -} -declare module 'material-ui-icons/Hotel.js' { - declare module.exports: $Exports<'material-ui-icons/Hotel'>; -} -declare module 'material-ui-icons/HotTub.js' { - declare module.exports: $Exports<'material-ui-icons/HotTub'>; -} -declare module 'material-ui-icons/HourglassEmpty.js' { - declare module.exports: $Exports<'material-ui-icons/HourglassEmpty'>; -} -declare module 'material-ui-icons/HourglassFull.js' { - declare module.exports: $Exports<'material-ui-icons/HourglassFull'>; -} -declare module 'material-ui-icons/Http.js' { - declare module.exports: $Exports<'material-ui-icons/Http'>; -} -declare module 'material-ui-icons/Https.js' { - declare module.exports: $Exports<'material-ui-icons/Https'>; -} -declare module 'material-ui-icons/Image.js' { - declare module.exports: $Exports<'material-ui-icons/Image'>; -} -declare module 'material-ui-icons/ImageAspectRatio.js' { - declare module.exports: $Exports<'material-ui-icons/ImageAspectRatio'>; -} -declare module 'material-ui-icons/ImportantDevices.js' { - declare module.exports: $Exports<'material-ui-icons/ImportantDevices'>; -} -declare module 'material-ui-icons/ImportContacts.js' { - declare module.exports: $Exports<'material-ui-icons/ImportContacts'>; -} -declare module 'material-ui-icons/ImportExport.js' { - declare module.exports: $Exports<'material-ui-icons/ImportExport'>; -} -declare module 'material-ui-icons/Inbox.js' { - declare module.exports: $Exports<'material-ui-icons/Inbox'>; -} -declare module 'material-ui-icons/IndeterminateCheckBox.js' { - declare module.exports: $Exports<'material-ui-icons/IndeterminateCheckBox'>; -} -declare module 'material-ui-icons/index.es.js' { - declare module.exports: $Exports<'material-ui-icons/index.es'>; -} -declare module 'material-ui-icons/index' { - declare module.exports: $Exports<'material-ui-icons'>; -} -declare module 'material-ui-icons/index.js' { - declare module.exports: $Exports<'material-ui-icons'>; -} -declare module 'material-ui-icons/Info.js' { - declare module.exports: $Exports<'material-ui-icons/Info'>; -} -declare module 'material-ui-icons/InfoOutline.js' { - declare module.exports: $Exports<'material-ui-icons/InfoOutline'>; -} -declare module 'material-ui-icons/Input.js' { - declare module.exports: $Exports<'material-ui-icons/Input'>; -} -declare module 'material-ui-icons/InsertChart.js' { - declare module.exports: $Exports<'material-ui-icons/InsertChart'>; -} -declare module 'material-ui-icons/InsertComment.js' { - declare module.exports: $Exports<'material-ui-icons/InsertComment'>; -} -declare module 'material-ui-icons/InsertDriveFile.js' { - declare module.exports: $Exports<'material-ui-icons/InsertDriveFile'>; -} -declare module 'material-ui-icons/InsertEmoticon.js' { - declare module.exports: $Exports<'material-ui-icons/InsertEmoticon'>; -} -declare module 'material-ui-icons/InsertInvitation.js' { - declare module.exports: $Exports<'material-ui-icons/InsertInvitation'>; -} -declare module 'material-ui-icons/InsertLink.js' { - declare module.exports: $Exports<'material-ui-icons/InsertLink'>; -} -declare module 'material-ui-icons/InsertPhoto.js' { - declare module.exports: $Exports<'material-ui-icons/InsertPhoto'>; -} -declare module 'material-ui-icons/InvertColors.js' { - declare module.exports: $Exports<'material-ui-icons/InvertColors'>; -} -declare module 'material-ui-icons/InvertColorsOff.js' { - declare module.exports: $Exports<'material-ui-icons/InvertColorsOff'>; -} -declare module 'material-ui-icons/Iso.js' { - declare module.exports: $Exports<'material-ui-icons/Iso'>; -} -declare module 'material-ui-icons/Keyboard.js' { - declare module.exports: $Exports<'material-ui-icons/Keyboard'>; -} -declare module 'material-ui-icons/KeyboardArrowDown.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardArrowDown'>; -} -declare module 'material-ui-icons/KeyboardArrowLeft.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardArrowLeft'>; -} -declare module 'material-ui-icons/KeyboardArrowRight.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardArrowRight'>; -} -declare module 'material-ui-icons/KeyboardArrowUp.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardArrowUp'>; -} -declare module 'material-ui-icons/KeyboardBackspace.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardBackspace'>; -} -declare module 'material-ui-icons/KeyboardCapslock.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardCapslock'>; -} -declare module 'material-ui-icons/KeyboardHide.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardHide'>; -} -declare module 'material-ui-icons/KeyboardReturn.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardReturn'>; -} -declare module 'material-ui-icons/KeyboardTab.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardTab'>; -} -declare module 'material-ui-icons/KeyboardVoice.js' { - declare module.exports: $Exports<'material-ui-icons/KeyboardVoice'>; -} -declare module 'material-ui-icons/Kitchen.js' { - declare module.exports: $Exports<'material-ui-icons/Kitchen'>; -} -declare module 'material-ui-icons/Label.js' { - declare module.exports: $Exports<'material-ui-icons/Label'>; -} -declare module 'material-ui-icons/LabelOutline.js' { - declare module.exports: $Exports<'material-ui-icons/LabelOutline'>; -} -declare module 'material-ui-icons/Landscape.js' { - declare module.exports: $Exports<'material-ui-icons/Landscape'>; -} -declare module 'material-ui-icons/Language.js' { - declare module.exports: $Exports<'material-ui-icons/Language'>; -} -declare module 'material-ui-icons/Laptop.js' { - declare module.exports: $Exports<'material-ui-icons/Laptop'>; -} -declare module 'material-ui-icons/LaptopChromebook.js' { - declare module.exports: $Exports<'material-ui-icons/LaptopChromebook'>; -} -declare module 'material-ui-icons/LaptopMac.js' { - declare module.exports: $Exports<'material-ui-icons/LaptopMac'>; -} -declare module 'material-ui-icons/LaptopWindows.js' { - declare module.exports: $Exports<'material-ui-icons/LaptopWindows'>; -} -declare module 'material-ui-icons/LastPage.js' { - declare module.exports: $Exports<'material-ui-icons/LastPage'>; -} -declare module 'material-ui-icons/Launch.js' { - declare module.exports: $Exports<'material-ui-icons/Launch'>; -} -declare module 'material-ui-icons/Layers.js' { - declare module.exports: $Exports<'material-ui-icons/Layers'>; -} -declare module 'material-ui-icons/LayersClear.js' { - declare module.exports: $Exports<'material-ui-icons/LayersClear'>; -} -declare module 'material-ui-icons/LeakAdd.js' { - declare module.exports: $Exports<'material-ui-icons/LeakAdd'>; -} -declare module 'material-ui-icons/LeakRemove.js' { - declare module.exports: $Exports<'material-ui-icons/LeakRemove'>; -} -declare module 'material-ui-icons/Lens.js' { - declare module.exports: $Exports<'material-ui-icons/Lens'>; -} -declare module 'material-ui-icons/LibraryAdd.js' { - declare module.exports: $Exports<'material-ui-icons/LibraryAdd'>; -} -declare module 'material-ui-icons/LibraryBooks.js' { - declare module.exports: $Exports<'material-ui-icons/LibraryBooks'>; -} -declare module 'material-ui-icons/LibraryMusic.js' { - declare module.exports: $Exports<'material-ui-icons/LibraryMusic'>; -} -declare module 'material-ui-icons/LightbulbOutline.js' { - declare module.exports: $Exports<'material-ui-icons/LightbulbOutline'>; -} -declare module 'material-ui-icons/LinearScale.js' { - declare module.exports: $Exports<'material-ui-icons/LinearScale'>; -} -declare module 'material-ui-icons/LineStyle.js' { - declare module.exports: $Exports<'material-ui-icons/LineStyle'>; -} -declare module 'material-ui-icons/LineWeight.js' { - declare module.exports: $Exports<'material-ui-icons/LineWeight'>; -} -declare module 'material-ui-icons/Link.js' { - declare module.exports: $Exports<'material-ui-icons/Link'>; -} -declare module 'material-ui-icons/LinkedCamera.js' { - declare module.exports: $Exports<'material-ui-icons/LinkedCamera'>; -} -declare module 'material-ui-icons/List.js' { - declare module.exports: $Exports<'material-ui-icons/List'>; -} -declare module 'material-ui-icons/LiveHelp.js' { - declare module.exports: $Exports<'material-ui-icons/LiveHelp'>; -} -declare module 'material-ui-icons/LiveTv.js' { - declare module.exports: $Exports<'material-ui-icons/LiveTv'>; -} -declare module 'material-ui-icons/LocalActivity.js' { - declare module.exports: $Exports<'material-ui-icons/LocalActivity'>; -} -declare module 'material-ui-icons/LocalAirport.js' { - declare module.exports: $Exports<'material-ui-icons/LocalAirport'>; -} -declare module 'material-ui-icons/LocalAtm.js' { - declare module.exports: $Exports<'material-ui-icons/LocalAtm'>; -} -declare module 'material-ui-icons/LocalBar.js' { - declare module.exports: $Exports<'material-ui-icons/LocalBar'>; -} -declare module 'material-ui-icons/LocalCafe.js' { - declare module.exports: $Exports<'material-ui-icons/LocalCafe'>; -} -declare module 'material-ui-icons/LocalCarWash.js' { - declare module.exports: $Exports<'material-ui-icons/LocalCarWash'>; -} -declare module 'material-ui-icons/LocalConvenienceStore.js' { - declare module.exports: $Exports<'material-ui-icons/LocalConvenienceStore'>; -} -declare module 'material-ui-icons/LocalDining.js' { - declare module.exports: $Exports<'material-ui-icons/LocalDining'>; -} -declare module 'material-ui-icons/LocalDrink.js' { - declare module.exports: $Exports<'material-ui-icons/LocalDrink'>; -} -declare module 'material-ui-icons/LocalFlorist.js' { - declare module.exports: $Exports<'material-ui-icons/LocalFlorist'>; -} -declare module 'material-ui-icons/LocalGasStation.js' { - declare module.exports: $Exports<'material-ui-icons/LocalGasStation'>; -} -declare module 'material-ui-icons/LocalGroceryStore.js' { - declare module.exports: $Exports<'material-ui-icons/LocalGroceryStore'>; -} -declare module 'material-ui-icons/LocalHospital.js' { - declare module.exports: $Exports<'material-ui-icons/LocalHospital'>; -} -declare module 'material-ui-icons/LocalHotel.js' { - declare module.exports: $Exports<'material-ui-icons/LocalHotel'>; -} -declare module 'material-ui-icons/LocalLaundryService.js' { - declare module.exports: $Exports<'material-ui-icons/LocalLaundryService'>; -} -declare module 'material-ui-icons/LocalLibrary.js' { - declare module.exports: $Exports<'material-ui-icons/LocalLibrary'>; -} -declare module 'material-ui-icons/LocalMall.js' { - declare module.exports: $Exports<'material-ui-icons/LocalMall'>; -} -declare module 'material-ui-icons/LocalMovies.js' { - declare module.exports: $Exports<'material-ui-icons/LocalMovies'>; -} -declare module 'material-ui-icons/LocalOffer.js' { - declare module.exports: $Exports<'material-ui-icons/LocalOffer'>; -} -declare module 'material-ui-icons/LocalParking.js' { - declare module.exports: $Exports<'material-ui-icons/LocalParking'>; -} -declare module 'material-ui-icons/LocalPharmacy.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPharmacy'>; -} -declare module 'material-ui-icons/LocalPhone.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPhone'>; -} -declare module 'material-ui-icons/LocalPizza.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPizza'>; -} -declare module 'material-ui-icons/LocalPlay.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPlay'>; -} -declare module 'material-ui-icons/LocalPostOffice.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPostOffice'>; -} -declare module 'material-ui-icons/LocalPrintshop.js' { - declare module.exports: $Exports<'material-ui-icons/LocalPrintshop'>; -} -declare module 'material-ui-icons/LocalSee.js' { - declare module.exports: $Exports<'material-ui-icons/LocalSee'>; -} -declare module 'material-ui-icons/LocalShipping.js' { - declare module.exports: $Exports<'material-ui-icons/LocalShipping'>; -} -declare module 'material-ui-icons/LocalTaxi.js' { - declare module.exports: $Exports<'material-ui-icons/LocalTaxi'>; -} -declare module 'material-ui-icons/LocationCity.js' { - declare module.exports: $Exports<'material-ui-icons/LocationCity'>; -} -declare module 'material-ui-icons/LocationDisabled.js' { - declare module.exports: $Exports<'material-ui-icons/LocationDisabled'>; -} -declare module 'material-ui-icons/LocationOff.js' { - declare module.exports: $Exports<'material-ui-icons/LocationOff'>; -} -declare module 'material-ui-icons/LocationOn.js' { - declare module.exports: $Exports<'material-ui-icons/LocationOn'>; -} -declare module 'material-ui-icons/LocationSearching.js' { - declare module.exports: $Exports<'material-ui-icons/LocationSearching'>; -} -declare module 'material-ui-icons/Lock.js' { - declare module.exports: $Exports<'material-ui-icons/Lock'>; -} -declare module 'material-ui-icons/LockOpen.js' { - declare module.exports: $Exports<'material-ui-icons/LockOpen'>; -} -declare module 'material-ui-icons/LockOutline.js' { - declare module.exports: $Exports<'material-ui-icons/LockOutline'>; -} -declare module 'material-ui-icons/Looks.js' { - declare module.exports: $Exports<'material-ui-icons/Looks'>; -} -declare module 'material-ui-icons/Looks3.js' { - declare module.exports: $Exports<'material-ui-icons/Looks3'>; -} -declare module 'material-ui-icons/Looks4.js' { - declare module.exports: $Exports<'material-ui-icons/Looks4'>; -} -declare module 'material-ui-icons/Looks5.js' { - declare module.exports: $Exports<'material-ui-icons/Looks5'>; -} -declare module 'material-ui-icons/Looks6.js' { - declare module.exports: $Exports<'material-ui-icons/Looks6'>; -} -declare module 'material-ui-icons/LooksOne.js' { - declare module.exports: $Exports<'material-ui-icons/LooksOne'>; -} -declare module 'material-ui-icons/LooksTwo.js' { - declare module.exports: $Exports<'material-ui-icons/LooksTwo'>; -} -declare module 'material-ui-icons/Loop.js' { - declare module.exports: $Exports<'material-ui-icons/Loop'>; -} -declare module 'material-ui-icons/Loupe.js' { - declare module.exports: $Exports<'material-ui-icons/Loupe'>; -} -declare module 'material-ui-icons/LowPriority.js' { - declare module.exports: $Exports<'material-ui-icons/LowPriority'>; -} -declare module 'material-ui-icons/Loyalty.js' { - declare module.exports: $Exports<'material-ui-icons/Loyalty'>; -} -declare module 'material-ui-icons/Mail.js' { - declare module.exports: $Exports<'material-ui-icons/Mail'>; -} -declare module 'material-ui-icons/MailOutline.js' { - declare module.exports: $Exports<'material-ui-icons/MailOutline'>; -} -declare module 'material-ui-icons/Map.js' { - declare module.exports: $Exports<'material-ui-icons/Map'>; -} -declare module 'material-ui-icons/Markunread.js' { - declare module.exports: $Exports<'material-ui-icons/Markunread'>; -} -declare module 'material-ui-icons/MarkunreadMailbox.js' { - declare module.exports: $Exports<'material-ui-icons/MarkunreadMailbox'>; -} -declare module 'material-ui-icons/Memory.js' { - declare module.exports: $Exports<'material-ui-icons/Memory'>; -} -declare module 'material-ui-icons/Menu.js' { - declare module.exports: $Exports<'material-ui-icons/Menu'>; -} -declare module 'material-ui-icons/MergeType.js' { - declare module.exports: $Exports<'material-ui-icons/MergeType'>; -} -declare module 'material-ui-icons/Message.js' { - declare module.exports: $Exports<'material-ui-icons/Message'>; -} -declare module 'material-ui-icons/Mic.js' { - declare module.exports: $Exports<'material-ui-icons/Mic'>; -} -declare module 'material-ui-icons/MicNone.js' { - declare module.exports: $Exports<'material-ui-icons/MicNone'>; -} -declare module 'material-ui-icons/MicOff.js' { - declare module.exports: $Exports<'material-ui-icons/MicOff'>; -} -declare module 'material-ui-icons/Mms.js' { - declare module.exports: $Exports<'material-ui-icons/Mms'>; -} -declare module 'material-ui-icons/ModeComment.js' { - declare module.exports: $Exports<'material-ui-icons/ModeComment'>; -} -declare module 'material-ui-icons/ModeEdit.js' { - declare module.exports: $Exports<'material-ui-icons/ModeEdit'>; -} -declare module 'material-ui-icons/MonetizationOn.js' { - declare module.exports: $Exports<'material-ui-icons/MonetizationOn'>; -} -declare module 'material-ui-icons/MoneyOff.js' { - declare module.exports: $Exports<'material-ui-icons/MoneyOff'>; -} -declare module 'material-ui-icons/MonochromePhotos.js' { - declare module.exports: $Exports<'material-ui-icons/MonochromePhotos'>; -} -declare module 'material-ui-icons/Mood.js' { - declare module.exports: $Exports<'material-ui-icons/Mood'>; -} -declare module 'material-ui-icons/MoodBad.js' { - declare module.exports: $Exports<'material-ui-icons/MoodBad'>; -} -declare module 'material-ui-icons/More.js' { - declare module.exports: $Exports<'material-ui-icons/More'>; -} -declare module 'material-ui-icons/MoreHoriz.js' { - declare module.exports: $Exports<'material-ui-icons/MoreHoriz'>; -} -declare module 'material-ui-icons/MoreVert.js' { - declare module.exports: $Exports<'material-ui-icons/MoreVert'>; -} -declare module 'material-ui-icons/Motorcycle.js' { - declare module.exports: $Exports<'material-ui-icons/Motorcycle'>; -} -declare module 'material-ui-icons/Mouse.js' { - declare module.exports: $Exports<'material-ui-icons/Mouse'>; -} -declare module 'material-ui-icons/MoveToInbox.js' { - declare module.exports: $Exports<'material-ui-icons/MoveToInbox'>; -} -declare module 'material-ui-icons/Movie.js' { - declare module.exports: $Exports<'material-ui-icons/Movie'>; -} -declare module 'material-ui-icons/MovieCreation.js' { - declare module.exports: $Exports<'material-ui-icons/MovieCreation'>; -} -declare module 'material-ui-icons/MovieFilter.js' { - declare module.exports: $Exports<'material-ui-icons/MovieFilter'>; -} -declare module 'material-ui-icons/MultilineChart.js' { - declare module.exports: $Exports<'material-ui-icons/MultilineChart'>; -} -declare module 'material-ui-icons/MusicNote.js' { - declare module.exports: $Exports<'material-ui-icons/MusicNote'>; -} -declare module 'material-ui-icons/MusicVideo.js' { - declare module.exports: $Exports<'material-ui-icons/MusicVideo'>; -} -declare module 'material-ui-icons/MyLocation.js' { - declare module.exports: $Exports<'material-ui-icons/MyLocation'>; -} -declare module 'material-ui-icons/Nature.js' { - declare module.exports: $Exports<'material-ui-icons/Nature'>; -} -declare module 'material-ui-icons/NaturePeople.js' { - declare module.exports: $Exports<'material-ui-icons/NaturePeople'>; -} -declare module 'material-ui-icons/NavigateBefore.js' { - declare module.exports: $Exports<'material-ui-icons/NavigateBefore'>; -} -declare module 'material-ui-icons/NavigateNext.js' { - declare module.exports: $Exports<'material-ui-icons/NavigateNext'>; -} -declare module 'material-ui-icons/Navigation.js' { - declare module.exports: $Exports<'material-ui-icons/Navigation'>; -} -declare module 'material-ui-icons/NearMe.js' { - declare module.exports: $Exports<'material-ui-icons/NearMe'>; -} -declare module 'material-ui-icons/NetworkCell.js' { - declare module.exports: $Exports<'material-ui-icons/NetworkCell'>; -} -declare module 'material-ui-icons/NetworkCheck.js' { - declare module.exports: $Exports<'material-ui-icons/NetworkCheck'>; -} -declare module 'material-ui-icons/NetworkLocked.js' { - declare module.exports: $Exports<'material-ui-icons/NetworkLocked'>; -} -declare module 'material-ui-icons/NetworkWifi.js' { - declare module.exports: $Exports<'material-ui-icons/NetworkWifi'>; -} -declare module 'material-ui-icons/NewReleases.js' { - declare module.exports: $Exports<'material-ui-icons/NewReleases'>; -} -declare module 'material-ui-icons/NextWeek.js' { - declare module.exports: $Exports<'material-ui-icons/NextWeek'>; -} -declare module 'material-ui-icons/Nfc.js' { - declare module.exports: $Exports<'material-ui-icons/Nfc'>; -} -declare module 'material-ui-icons/NoEncryption.js' { - declare module.exports: $Exports<'material-ui-icons/NoEncryption'>; -} -declare module 'material-ui-icons/NoSim.js' { - declare module.exports: $Exports<'material-ui-icons/NoSim'>; -} -declare module 'material-ui-icons/Note.js' { - declare module.exports: $Exports<'material-ui-icons/Note'>; -} -declare module 'material-ui-icons/NoteAdd.js' { - declare module.exports: $Exports<'material-ui-icons/NoteAdd'>; -} -declare module 'material-ui-icons/Notifications.js' { - declare module.exports: $Exports<'material-ui-icons/Notifications'>; -} -declare module 'material-ui-icons/NotificationsActive.js' { - declare module.exports: $Exports<'material-ui-icons/NotificationsActive'>; -} -declare module 'material-ui-icons/NotificationsNone.js' { - declare module.exports: $Exports<'material-ui-icons/NotificationsNone'>; -} -declare module 'material-ui-icons/NotificationsOff.js' { - declare module.exports: $Exports<'material-ui-icons/NotificationsOff'>; -} -declare module 'material-ui-icons/NotificationsPaused.js' { - declare module.exports: $Exports<'material-ui-icons/NotificationsPaused'>; -} -declare module 'material-ui-icons/NotInterested.js' { - declare module.exports: $Exports<'material-ui-icons/NotInterested'>; -} -declare module 'material-ui-icons/OfflinePin.js' { - declare module.exports: $Exports<'material-ui-icons/OfflinePin'>; -} -declare module 'material-ui-icons/OndemandVideo.js' { - declare module.exports: $Exports<'material-ui-icons/OndemandVideo'>; -} -declare module 'material-ui-icons/Opacity.js' { - declare module.exports: $Exports<'material-ui-icons/Opacity'>; -} -declare module 'material-ui-icons/OpenInBrowser.js' { - declare module.exports: $Exports<'material-ui-icons/OpenInBrowser'>; -} -declare module 'material-ui-icons/OpenInNew.js' { - declare module.exports: $Exports<'material-ui-icons/OpenInNew'>; -} -declare module 'material-ui-icons/OpenWith.js' { - declare module.exports: $Exports<'material-ui-icons/OpenWith'>; -} -declare module 'material-ui-icons/Pages.js' { - declare module.exports: $Exports<'material-ui-icons/Pages'>; -} -declare module 'material-ui-icons/Pageview.js' { - declare module.exports: $Exports<'material-ui-icons/Pageview'>; -} -declare module 'material-ui-icons/Palette.js' { - declare module.exports: $Exports<'material-ui-icons/Palette'>; -} -declare module 'material-ui-icons/Panorama.js' { - declare module.exports: $Exports<'material-ui-icons/Panorama'>; -} -declare module 'material-ui-icons/PanoramaFishEye.js' { - declare module.exports: $Exports<'material-ui-icons/PanoramaFishEye'>; -} -declare module 'material-ui-icons/PanoramaHorizontal.js' { - declare module.exports: $Exports<'material-ui-icons/PanoramaHorizontal'>; -} -declare module 'material-ui-icons/PanoramaVertical.js' { - declare module.exports: $Exports<'material-ui-icons/PanoramaVertical'>; -} -declare module 'material-ui-icons/PanoramaWideAngle.js' { - declare module.exports: $Exports<'material-ui-icons/PanoramaWideAngle'>; -} -declare module 'material-ui-icons/PanTool.js' { - declare module.exports: $Exports<'material-ui-icons/PanTool'>; -} -declare module 'material-ui-icons/PartyMode.js' { - declare module.exports: $Exports<'material-ui-icons/PartyMode'>; -} -declare module 'material-ui-icons/Pause.js' { - declare module.exports: $Exports<'material-ui-icons/Pause'>; -} -declare module 'material-ui-icons/PauseCircleFilled.js' { - declare module.exports: $Exports<'material-ui-icons/PauseCircleFilled'>; -} -declare module 'material-ui-icons/PauseCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/PauseCircleOutline'>; -} -declare module 'material-ui-icons/Payment.js' { - declare module.exports: $Exports<'material-ui-icons/Payment'>; -} -declare module 'material-ui-icons/People.js' { - declare module.exports: $Exports<'material-ui-icons/People'>; -} -declare module 'material-ui-icons/PeopleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/PeopleOutline'>; -} -declare module 'material-ui-icons/PermCameraMic.js' { - declare module.exports: $Exports<'material-ui-icons/PermCameraMic'>; -} -declare module 'material-ui-icons/PermContactCalendar.js' { - declare module.exports: $Exports<'material-ui-icons/PermContactCalendar'>; -} -declare module 'material-ui-icons/PermDataSetting.js' { - declare module.exports: $Exports<'material-ui-icons/PermDataSetting'>; -} -declare module 'material-ui-icons/PermDeviceInformation.js' { - declare module.exports: $Exports<'material-ui-icons/PermDeviceInformation'>; -} -declare module 'material-ui-icons/PermIdentity.js' { - declare module.exports: $Exports<'material-ui-icons/PermIdentity'>; -} -declare module 'material-ui-icons/PermMedia.js' { - declare module.exports: $Exports<'material-ui-icons/PermMedia'>; -} -declare module 'material-ui-icons/PermPhoneMsg.js' { - declare module.exports: $Exports<'material-ui-icons/PermPhoneMsg'>; -} -declare module 'material-ui-icons/PermScanWifi.js' { - declare module.exports: $Exports<'material-ui-icons/PermScanWifi'>; -} -declare module 'material-ui-icons/Person.js' { - declare module.exports: $Exports<'material-ui-icons/Person'>; -} -declare module 'material-ui-icons/PersonAdd.js' { - declare module.exports: $Exports<'material-ui-icons/PersonAdd'>; -} -declare module 'material-ui-icons/PersonalVideo.js' { - declare module.exports: $Exports<'material-ui-icons/PersonalVideo'>; -} -declare module 'material-ui-icons/PersonOutline.js' { - declare module.exports: $Exports<'material-ui-icons/PersonOutline'>; -} -declare module 'material-ui-icons/PersonPin.js' { - declare module.exports: $Exports<'material-ui-icons/PersonPin'>; -} -declare module 'material-ui-icons/PersonPinCircle.js' { - declare module.exports: $Exports<'material-ui-icons/PersonPinCircle'>; -} -declare module 'material-ui-icons/Pets.js' { - declare module.exports: $Exports<'material-ui-icons/Pets'>; -} -declare module 'material-ui-icons/Phone.js' { - declare module.exports: $Exports<'material-ui-icons/Phone'>; -} -declare module 'material-ui-icons/PhoneAndroid.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneAndroid'>; -} -declare module 'material-ui-icons/PhoneBluetoothSpeaker.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneBluetoothSpeaker'>; -} -declare module 'material-ui-icons/PhoneForwarded.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneForwarded'>; -} -declare module 'material-ui-icons/PhoneInTalk.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneInTalk'>; -} -declare module 'material-ui-icons/PhoneIphone.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneIphone'>; -} -declare module 'material-ui-icons/Phonelink.js' { - declare module.exports: $Exports<'material-ui-icons/Phonelink'>; -} -declare module 'material-ui-icons/PhonelinkErase.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkErase'>; -} -declare module 'material-ui-icons/PhonelinkLock.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkLock'>; -} -declare module 'material-ui-icons/PhonelinkOff.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkOff'>; -} -declare module 'material-ui-icons/PhonelinkRing.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkRing'>; -} -declare module 'material-ui-icons/PhonelinkSetup.js' { - declare module.exports: $Exports<'material-ui-icons/PhonelinkSetup'>; -} -declare module 'material-ui-icons/PhoneLocked.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneLocked'>; -} -declare module 'material-ui-icons/PhoneMissed.js' { - declare module.exports: $Exports<'material-ui-icons/PhoneMissed'>; -} -declare module 'material-ui-icons/PhonePaused.js' { - declare module.exports: $Exports<'material-ui-icons/PhonePaused'>; -} -declare module 'material-ui-icons/Photo.js' { - declare module.exports: $Exports<'material-ui-icons/Photo'>; -} -declare module 'material-ui-icons/PhotoAlbum.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoAlbum'>; -} -declare module 'material-ui-icons/PhotoCamera.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoCamera'>; -} -declare module 'material-ui-icons/PhotoFilter.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoFilter'>; -} -declare module 'material-ui-icons/PhotoLibrary.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoLibrary'>; -} -declare module 'material-ui-icons/PhotoSizeSelectActual.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoSizeSelectActual'>; -} -declare module 'material-ui-icons/PhotoSizeSelectLarge.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoSizeSelectLarge'>; -} -declare module 'material-ui-icons/PhotoSizeSelectSmall.js' { - declare module.exports: $Exports<'material-ui-icons/PhotoSizeSelectSmall'>; -} -declare module 'material-ui-icons/PictureAsPdf.js' { - declare module.exports: $Exports<'material-ui-icons/PictureAsPdf'>; -} -declare module 'material-ui-icons/PictureInPicture.js' { - declare module.exports: $Exports<'material-ui-icons/PictureInPicture'>; -} -declare module 'material-ui-icons/PictureInPictureAlt.js' { - declare module.exports: $Exports<'material-ui-icons/PictureInPictureAlt'>; -} -declare module 'material-ui-icons/PieChart.js' { - declare module.exports: $Exports<'material-ui-icons/PieChart'>; -} -declare module 'material-ui-icons/PieChartOutlined.js' { - declare module.exports: $Exports<'material-ui-icons/PieChartOutlined'>; -} -declare module 'material-ui-icons/PinDrop.js' { - declare module.exports: $Exports<'material-ui-icons/PinDrop'>; -} -declare module 'material-ui-icons/Place.js' { - declare module.exports: $Exports<'material-ui-icons/Place'>; -} -declare module 'material-ui-icons/PlayArrow.js' { - declare module.exports: $Exports<'material-ui-icons/PlayArrow'>; -} -declare module 'material-ui-icons/PlayCircleFilled.js' { - declare module.exports: $Exports<'material-ui-icons/PlayCircleFilled'>; -} -declare module 'material-ui-icons/PlayCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/PlayCircleOutline'>; -} -declare module 'material-ui-icons/PlayForWork.js' { - declare module.exports: $Exports<'material-ui-icons/PlayForWork'>; -} -declare module 'material-ui-icons/PlaylistAdd.js' { - declare module.exports: $Exports<'material-ui-icons/PlaylistAdd'>; -} -declare module 'material-ui-icons/PlaylistAddCheck.js' { - declare module.exports: $Exports<'material-ui-icons/PlaylistAddCheck'>; -} -declare module 'material-ui-icons/PlaylistPlay.js' { - declare module.exports: $Exports<'material-ui-icons/PlaylistPlay'>; -} -declare module 'material-ui-icons/PlusOne.js' { - declare module.exports: $Exports<'material-ui-icons/PlusOne'>; -} -declare module 'material-ui-icons/Poll.js' { - declare module.exports: $Exports<'material-ui-icons/Poll'>; -} -declare module 'material-ui-icons/Polymer.js' { - declare module.exports: $Exports<'material-ui-icons/Polymer'>; -} -declare module 'material-ui-icons/Pool.js' { - declare module.exports: $Exports<'material-ui-icons/Pool'>; -} -declare module 'material-ui-icons/PortableWifiOff.js' { - declare module.exports: $Exports<'material-ui-icons/PortableWifiOff'>; -} -declare module 'material-ui-icons/Portrait.js' { - declare module.exports: $Exports<'material-ui-icons/Portrait'>; -} -declare module 'material-ui-icons/Power.js' { - declare module.exports: $Exports<'material-ui-icons/Power'>; -} -declare module 'material-ui-icons/PowerInput.js' { - declare module.exports: $Exports<'material-ui-icons/PowerInput'>; -} -declare module 'material-ui-icons/PowerSettingsNew.js' { - declare module.exports: $Exports<'material-ui-icons/PowerSettingsNew'>; -} -declare module 'material-ui-icons/PregnantWoman.js' { - declare module.exports: $Exports<'material-ui-icons/PregnantWoman'>; -} -declare module 'material-ui-icons/PresentToAll.js' { - declare module.exports: $Exports<'material-ui-icons/PresentToAll'>; -} -declare module 'material-ui-icons/Print.js' { - declare module.exports: $Exports<'material-ui-icons/Print'>; -} -declare module 'material-ui-icons/PriorityHigh.js' { - declare module.exports: $Exports<'material-ui-icons/PriorityHigh'>; -} -declare module 'material-ui-icons/Public.js' { - declare module.exports: $Exports<'material-ui-icons/Public'>; -} -declare module 'material-ui-icons/Publish.js' { - declare module.exports: $Exports<'material-ui-icons/Publish'>; -} -declare module 'material-ui-icons/QueryBuilder.js' { - declare module.exports: $Exports<'material-ui-icons/QueryBuilder'>; -} -declare module 'material-ui-icons/QuestionAnswer.js' { - declare module.exports: $Exports<'material-ui-icons/QuestionAnswer'>; -} -declare module 'material-ui-icons/Queue.js' { - declare module.exports: $Exports<'material-ui-icons/Queue'>; -} -declare module 'material-ui-icons/QueueMusic.js' { - declare module.exports: $Exports<'material-ui-icons/QueueMusic'>; -} -declare module 'material-ui-icons/QueuePlayNext.js' { - declare module.exports: $Exports<'material-ui-icons/QueuePlayNext'>; -} -declare module 'material-ui-icons/Radio.js' { - declare module.exports: $Exports<'material-ui-icons/Radio'>; -} -declare module 'material-ui-icons/RadioButtonChecked.js' { - declare module.exports: $Exports<'material-ui-icons/RadioButtonChecked'>; -} -declare module 'material-ui-icons/RadioButtonUnchecked.js' { - declare module.exports: $Exports<'material-ui-icons/RadioButtonUnchecked'>; -} -declare module 'material-ui-icons/RateReview.js' { - declare module.exports: $Exports<'material-ui-icons/RateReview'>; -} -declare module 'material-ui-icons/Receipt.js' { - declare module.exports: $Exports<'material-ui-icons/Receipt'>; -} -declare module 'material-ui-icons/RecentActors.js' { - declare module.exports: $Exports<'material-ui-icons/RecentActors'>; -} -declare module 'material-ui-icons/RecordVoiceOver.js' { - declare module.exports: $Exports<'material-ui-icons/RecordVoiceOver'>; -} -declare module 'material-ui-icons/Redeem.js' { - declare module.exports: $Exports<'material-ui-icons/Redeem'>; -} -declare module 'material-ui-icons/Redo.js' { - declare module.exports: $Exports<'material-ui-icons/Redo'>; -} -declare module 'material-ui-icons/Refresh.js' { - declare module.exports: $Exports<'material-ui-icons/Refresh'>; -} -declare module 'material-ui-icons/Remove.js' { - declare module.exports: $Exports<'material-ui-icons/Remove'>; -} -declare module 'material-ui-icons/RemoveCircle.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveCircle'>; -} -declare module 'material-ui-icons/RemoveCircleOutline.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveCircleOutline'>; -} -declare module 'material-ui-icons/RemoveFromQueue.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveFromQueue'>; -} -declare module 'material-ui-icons/RemoveRedEye.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveRedEye'>; -} -declare module 'material-ui-icons/RemoveShoppingCart.js' { - declare module.exports: $Exports<'material-ui-icons/RemoveShoppingCart'>; -} -declare module 'material-ui-icons/Reorder.js' { - declare module.exports: $Exports<'material-ui-icons/Reorder'>; -} -declare module 'material-ui-icons/Repeat.js' { - declare module.exports: $Exports<'material-ui-icons/Repeat'>; -} -declare module 'material-ui-icons/RepeatOne.js' { - declare module.exports: $Exports<'material-ui-icons/RepeatOne'>; -} -declare module 'material-ui-icons/Replay.js' { - declare module.exports: $Exports<'material-ui-icons/Replay'>; -} -declare module 'material-ui-icons/Replay10.js' { - declare module.exports: $Exports<'material-ui-icons/Replay10'>; -} -declare module 'material-ui-icons/Replay30.js' { - declare module.exports: $Exports<'material-ui-icons/Replay30'>; -} -declare module 'material-ui-icons/Replay5.js' { - declare module.exports: $Exports<'material-ui-icons/Replay5'>; -} -declare module 'material-ui-icons/Reply.js' { - declare module.exports: $Exports<'material-ui-icons/Reply'>; -} -declare module 'material-ui-icons/ReplyAll.js' { - declare module.exports: $Exports<'material-ui-icons/ReplyAll'>; -} -declare module 'material-ui-icons/Report.js' { - declare module.exports: $Exports<'material-ui-icons/Report'>; -} -declare module 'material-ui-icons/ReportProblem.js' { - declare module.exports: $Exports<'material-ui-icons/ReportProblem'>; -} -declare module 'material-ui-icons/Restaurant.js' { - declare module.exports: $Exports<'material-ui-icons/Restaurant'>; -} -declare module 'material-ui-icons/RestaurantMenu.js' { - declare module.exports: $Exports<'material-ui-icons/RestaurantMenu'>; -} -declare module 'material-ui-icons/Restore.js' { - declare module.exports: $Exports<'material-ui-icons/Restore'>; -} -declare module 'material-ui-icons/RestorePage.js' { - declare module.exports: $Exports<'material-ui-icons/RestorePage'>; -} -declare module 'material-ui-icons/RingVolume.js' { - declare module.exports: $Exports<'material-ui-icons/RingVolume'>; -} -declare module 'material-ui-icons/Room.js' { - declare module.exports: $Exports<'material-ui-icons/Room'>; -} -declare module 'material-ui-icons/RoomService.js' { - declare module.exports: $Exports<'material-ui-icons/RoomService'>; -} -declare module 'material-ui-icons/Rotate90DegreesCcw.js' { - declare module.exports: $Exports<'material-ui-icons/Rotate90DegreesCcw'>; -} -declare module 'material-ui-icons/RotateLeft.js' { - declare module.exports: $Exports<'material-ui-icons/RotateLeft'>; -} -declare module 'material-ui-icons/RotateRight.js' { - declare module.exports: $Exports<'material-ui-icons/RotateRight'>; -} -declare module 'material-ui-icons/RoundedCorner.js' { - declare module.exports: $Exports<'material-ui-icons/RoundedCorner'>; -} -declare module 'material-ui-icons/Router.js' { - declare module.exports: $Exports<'material-ui-icons/Router'>; -} -declare module 'material-ui-icons/Rowing.js' { - declare module.exports: $Exports<'material-ui-icons/Rowing'>; -} -declare module 'material-ui-icons/RssFeed.js' { - declare module.exports: $Exports<'material-ui-icons/RssFeed'>; -} -declare module 'material-ui-icons/RvHookup.js' { - declare module.exports: $Exports<'material-ui-icons/RvHookup'>; -} -declare module 'material-ui-icons/Satellite.js' { - declare module.exports: $Exports<'material-ui-icons/Satellite'>; -} -declare module 'material-ui-icons/Save.js' { - declare module.exports: $Exports<'material-ui-icons/Save'>; -} -declare module 'material-ui-icons/Scanner.js' { - declare module.exports: $Exports<'material-ui-icons/Scanner'>; -} -declare module 'material-ui-icons/Schedule.js' { - declare module.exports: $Exports<'material-ui-icons/Schedule'>; -} -declare module 'material-ui-icons/School.js' { - declare module.exports: $Exports<'material-ui-icons/School'>; -} -declare module 'material-ui-icons/ScreenLockLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenLockLandscape'>; -} -declare module 'material-ui-icons/ScreenLockPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenLockPortrait'>; -} -declare module 'material-ui-icons/ScreenLockRotation.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenLockRotation'>; -} -declare module 'material-ui-icons/ScreenRotation.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenRotation'>; -} -declare module 'material-ui-icons/ScreenShare.js' { - declare module.exports: $Exports<'material-ui-icons/ScreenShare'>; -} -declare module 'material-ui-icons/SdCard.js' { - declare module.exports: $Exports<'material-ui-icons/SdCard'>; -} -declare module 'material-ui-icons/SdStorage.js' { - declare module.exports: $Exports<'material-ui-icons/SdStorage'>; -} -declare module 'material-ui-icons/Search.js' { - declare module.exports: $Exports<'material-ui-icons/Search'>; -} -declare module 'material-ui-icons/Security.js' { - declare module.exports: $Exports<'material-ui-icons/Security'>; -} -declare module 'material-ui-icons/SelectAll.js' { - declare module.exports: $Exports<'material-ui-icons/SelectAll'>; -} -declare module 'material-ui-icons/Send.js' { - declare module.exports: $Exports<'material-ui-icons/Send'>; -} -declare module 'material-ui-icons/SentimentDissatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentDissatisfied'>; -} -declare module 'material-ui-icons/SentimentNeutral.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentNeutral'>; -} -declare module 'material-ui-icons/SentimentSatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentSatisfied'>; -} -declare module 'material-ui-icons/SentimentVeryDissatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentVeryDissatisfied'>; -} -declare module 'material-ui-icons/SentimentVerySatisfied.js' { - declare module.exports: $Exports<'material-ui-icons/SentimentVerySatisfied'>; -} -declare module 'material-ui-icons/Settings.js' { - declare module.exports: $Exports<'material-ui-icons/Settings'>; -} -declare module 'material-ui-icons/SettingsApplications.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsApplications'>; -} -declare module 'material-ui-icons/SettingsBackupRestore.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsBackupRestore'>; -} -declare module 'material-ui-icons/SettingsBluetooth.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsBluetooth'>; -} -declare module 'material-ui-icons/SettingsBrightness.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsBrightness'>; -} -declare module 'material-ui-icons/SettingsCell.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsCell'>; -} -declare module 'material-ui-icons/SettingsEthernet.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsEthernet'>; -} -declare module 'material-ui-icons/SettingsInputAntenna.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputAntenna'>; -} -declare module 'material-ui-icons/SettingsInputComponent.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputComponent'>; -} -declare module 'material-ui-icons/SettingsInputComposite.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputComposite'>; -} -declare module 'material-ui-icons/SettingsInputHdmi.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputHdmi'>; -} -declare module 'material-ui-icons/SettingsInputSvideo.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsInputSvideo'>; -} -declare module 'material-ui-icons/SettingsOverscan.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsOverscan'>; -} -declare module 'material-ui-icons/SettingsPhone.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsPhone'>; -} -declare module 'material-ui-icons/SettingsPower.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsPower'>; -} -declare module 'material-ui-icons/SettingsRemote.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsRemote'>; -} -declare module 'material-ui-icons/SettingsSystemDaydream.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsSystemDaydream'>; -} -declare module 'material-ui-icons/SettingsVoice.js' { - declare module.exports: $Exports<'material-ui-icons/SettingsVoice'>; -} -declare module 'material-ui-icons/Share.js' { - declare module.exports: $Exports<'material-ui-icons/Share'>; -} -declare module 'material-ui-icons/Shop.js' { - declare module.exports: $Exports<'material-ui-icons/Shop'>; -} -declare module 'material-ui-icons/ShoppingBasket.js' { - declare module.exports: $Exports<'material-ui-icons/ShoppingBasket'>; -} -declare module 'material-ui-icons/ShoppingCart.js' { - declare module.exports: $Exports<'material-ui-icons/ShoppingCart'>; -} -declare module 'material-ui-icons/ShopTwo.js' { - declare module.exports: $Exports<'material-ui-icons/ShopTwo'>; -} -declare module 'material-ui-icons/ShortText.js' { - declare module.exports: $Exports<'material-ui-icons/ShortText'>; -} -declare module 'material-ui-icons/ShowChart.js' { - declare module.exports: $Exports<'material-ui-icons/ShowChart'>; -} -declare module 'material-ui-icons/Shuffle.js' { - declare module.exports: $Exports<'material-ui-icons/Shuffle'>; -} -declare module 'material-ui-icons/SignalCellular0Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular0Bar'>; -} -declare module 'material-ui-icons/SignalCellular1Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular1Bar'>; -} -declare module 'material-ui-icons/SignalCellular2Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular2Bar'>; -} -declare module 'material-ui-icons/SignalCellular3Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular3Bar'>; -} -declare module 'material-ui-icons/SignalCellular4Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellular4Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet0Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet0Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet1Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet1Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet2Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet2Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet3Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet3Bar'>; -} -declare module 'material-ui-icons/SignalCellularConnectedNoInternet4Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularConnectedNoInternet4Bar'>; -} -declare module 'material-ui-icons/SignalCellularNoSim.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularNoSim'>; -} -declare module 'material-ui-icons/SignalCellularNull.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularNull'>; -} -declare module 'material-ui-icons/SignalCellularOff.js' { - declare module.exports: $Exports<'material-ui-icons/SignalCellularOff'>; -} -declare module 'material-ui-icons/SignalWifi0Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi0Bar'>; -} -declare module 'material-ui-icons/SignalWifi1Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi1Bar'>; -} -declare module 'material-ui-icons/SignalWifi1BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi1BarLock'>; -} -declare module 'material-ui-icons/SignalWifi2Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi2Bar'>; -} -declare module 'material-ui-icons/SignalWifi2BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi2BarLock'>; -} -declare module 'material-ui-icons/SignalWifi3Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi3Bar'>; -} -declare module 'material-ui-icons/SignalWifi3BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi3BarLock'>; -} -declare module 'material-ui-icons/SignalWifi4Bar.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi4Bar'>; -} -declare module 'material-ui-icons/SignalWifi4BarLock.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifi4BarLock'>; -} -declare module 'material-ui-icons/SignalWifiOff.js' { - declare module.exports: $Exports<'material-ui-icons/SignalWifiOff'>; -} -declare module 'material-ui-icons/SimCard.js' { - declare module.exports: $Exports<'material-ui-icons/SimCard'>; -} -declare module 'material-ui-icons/SimCardAlert.js' { - declare module.exports: $Exports<'material-ui-icons/SimCardAlert'>; -} -declare module 'material-ui-icons/SkipNext.js' { - declare module.exports: $Exports<'material-ui-icons/SkipNext'>; -} -declare module 'material-ui-icons/SkipPrevious.js' { - declare module.exports: $Exports<'material-ui-icons/SkipPrevious'>; -} -declare module 'material-ui-icons/Slideshow.js' { - declare module.exports: $Exports<'material-ui-icons/Slideshow'>; -} -declare module 'material-ui-icons/SlowMotionVideo.js' { - declare module.exports: $Exports<'material-ui-icons/SlowMotionVideo'>; -} -declare module 'material-ui-icons/Smartphone.js' { - declare module.exports: $Exports<'material-ui-icons/Smartphone'>; -} -declare module 'material-ui-icons/SmokeFree.js' { - declare module.exports: $Exports<'material-ui-icons/SmokeFree'>; -} -declare module 'material-ui-icons/SmokingRooms.js' { - declare module.exports: $Exports<'material-ui-icons/SmokingRooms'>; -} -declare module 'material-ui-icons/Sms.js' { - declare module.exports: $Exports<'material-ui-icons/Sms'>; -} -declare module 'material-ui-icons/SmsFailed.js' { - declare module.exports: $Exports<'material-ui-icons/SmsFailed'>; -} -declare module 'material-ui-icons/Snooze.js' { - declare module.exports: $Exports<'material-ui-icons/Snooze'>; -} -declare module 'material-ui-icons/Sort.js' { - declare module.exports: $Exports<'material-ui-icons/Sort'>; -} -declare module 'material-ui-icons/SortByAlpha.js' { - declare module.exports: $Exports<'material-ui-icons/SortByAlpha'>; -} -declare module 'material-ui-icons/Spa.js' { - declare module.exports: $Exports<'material-ui-icons/Spa'>; -} -declare module 'material-ui-icons/SpaceBar.js' { - declare module.exports: $Exports<'material-ui-icons/SpaceBar'>; -} -declare module 'material-ui-icons/Speaker.js' { - declare module.exports: $Exports<'material-ui-icons/Speaker'>; -} -declare module 'material-ui-icons/SpeakerGroup.js' { - declare module.exports: $Exports<'material-ui-icons/SpeakerGroup'>; -} -declare module 'material-ui-icons/SpeakerNotes.js' { - declare module.exports: $Exports<'material-ui-icons/SpeakerNotes'>; -} -declare module 'material-ui-icons/SpeakerNotesOff.js' { - declare module.exports: $Exports<'material-ui-icons/SpeakerNotesOff'>; -} -declare module 'material-ui-icons/SpeakerPhone.js' { - declare module.exports: $Exports<'material-ui-icons/SpeakerPhone'>; -} -declare module 'material-ui-icons/Spellcheck.js' { - declare module.exports: $Exports<'material-ui-icons/Spellcheck'>; -} -declare module 'material-ui-icons/Star.js' { - declare module.exports: $Exports<'material-ui-icons/Star'>; -} -declare module 'material-ui-icons/StarBorder.js' { - declare module.exports: $Exports<'material-ui-icons/StarBorder'>; -} -declare module 'material-ui-icons/StarHalf.js' { - declare module.exports: $Exports<'material-ui-icons/StarHalf'>; -} -declare module 'material-ui-icons/Stars.js' { - declare module.exports: $Exports<'material-ui-icons/Stars'>; -} -declare module 'material-ui-icons/StayCurrentLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/StayCurrentLandscape'>; -} -declare module 'material-ui-icons/StayCurrentPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/StayCurrentPortrait'>; -} -declare module 'material-ui-icons/StayPrimaryLandscape.js' { - declare module.exports: $Exports<'material-ui-icons/StayPrimaryLandscape'>; -} -declare module 'material-ui-icons/StayPrimaryPortrait.js' { - declare module.exports: $Exports<'material-ui-icons/StayPrimaryPortrait'>; -} -declare module 'material-ui-icons/Stop.js' { - declare module.exports: $Exports<'material-ui-icons/Stop'>; -} -declare module 'material-ui-icons/StopScreenShare.js' { - declare module.exports: $Exports<'material-ui-icons/StopScreenShare'>; -} -declare module 'material-ui-icons/Storage.js' { - declare module.exports: $Exports<'material-ui-icons/Storage'>; -} -declare module 'material-ui-icons/Store.js' { - declare module.exports: $Exports<'material-ui-icons/Store'>; -} -declare module 'material-ui-icons/StoreMallDirectory.js' { - declare module.exports: $Exports<'material-ui-icons/StoreMallDirectory'>; -} -declare module 'material-ui-icons/Straighten.js' { - declare module.exports: $Exports<'material-ui-icons/Straighten'>; -} -declare module 'material-ui-icons/Streetview.js' { - declare module.exports: $Exports<'material-ui-icons/Streetview'>; -} -declare module 'material-ui-icons/StrikethroughS.js' { - declare module.exports: $Exports<'material-ui-icons/StrikethroughS'>; -} -declare module 'material-ui-icons/Style.js' { - declare module.exports: $Exports<'material-ui-icons/Style'>; -} -declare module 'material-ui-icons/SubdirectoryArrowLeft.js' { - declare module.exports: $Exports<'material-ui-icons/SubdirectoryArrowLeft'>; -} -declare module 'material-ui-icons/SubdirectoryArrowRight.js' { - declare module.exports: $Exports<'material-ui-icons/SubdirectoryArrowRight'>; -} -declare module 'material-ui-icons/Subject.js' { - declare module.exports: $Exports<'material-ui-icons/Subject'>; -} -declare module 'material-ui-icons/Subscriptions.js' { - declare module.exports: $Exports<'material-ui-icons/Subscriptions'>; -} -declare module 'material-ui-icons/Subtitles.js' { - declare module.exports: $Exports<'material-ui-icons/Subtitles'>; -} -declare module 'material-ui-icons/Subway.js' { - declare module.exports: $Exports<'material-ui-icons/Subway'>; -} -declare module 'material-ui-icons/SupervisorAccount.js' { - declare module.exports: $Exports<'material-ui-icons/SupervisorAccount'>; -} -declare module 'material-ui-icons/SurroundSound.js' { - declare module.exports: $Exports<'material-ui-icons/SurroundSound'>; -} -declare module 'material-ui-icons/SwapCalls.js' { - declare module.exports: $Exports<'material-ui-icons/SwapCalls'>; -} -declare module 'material-ui-icons/SwapHoriz.js' { - declare module.exports: $Exports<'material-ui-icons/SwapHoriz'>; -} -declare module 'material-ui-icons/SwapVert.js' { - declare module.exports: $Exports<'material-ui-icons/SwapVert'>; -} -declare module 'material-ui-icons/SwapVerticalCircle.js' { - declare module.exports: $Exports<'material-ui-icons/SwapVerticalCircle'>; -} -declare module 'material-ui-icons/SwitchCamera.js' { - declare module.exports: $Exports<'material-ui-icons/SwitchCamera'>; -} -declare module 'material-ui-icons/SwitchVideo.js' { - declare module.exports: $Exports<'material-ui-icons/SwitchVideo'>; -} -declare module 'material-ui-icons/Sync.js' { - declare module.exports: $Exports<'material-ui-icons/Sync'>; -} -declare module 'material-ui-icons/SyncDisabled.js' { - declare module.exports: $Exports<'material-ui-icons/SyncDisabled'>; -} -declare module 'material-ui-icons/SyncProblem.js' { - declare module.exports: $Exports<'material-ui-icons/SyncProblem'>; -} -declare module 'material-ui-icons/SystemUpdate.js' { - declare module.exports: $Exports<'material-ui-icons/SystemUpdate'>; -} -declare module 'material-ui-icons/SystemUpdateAlt.js' { - declare module.exports: $Exports<'material-ui-icons/SystemUpdateAlt'>; -} -declare module 'material-ui-icons/Tab.js' { - declare module.exports: $Exports<'material-ui-icons/Tab'>; -} -declare module 'material-ui-icons/Tablet.js' { - declare module.exports: $Exports<'material-ui-icons/Tablet'>; -} -declare module 'material-ui-icons/TabletAndroid.js' { - declare module.exports: $Exports<'material-ui-icons/TabletAndroid'>; -} -declare module 'material-ui-icons/TabletMac.js' { - declare module.exports: $Exports<'material-ui-icons/TabletMac'>; -} -declare module 'material-ui-icons/TabUnselected.js' { - declare module.exports: $Exports<'material-ui-icons/TabUnselected'>; -} -declare module 'material-ui-icons/TagFaces.js' { - declare module.exports: $Exports<'material-ui-icons/TagFaces'>; -} -declare module 'material-ui-icons/TapAndPlay.js' { - declare module.exports: $Exports<'material-ui-icons/TapAndPlay'>; -} -declare module 'material-ui-icons/Terrain.js' { - declare module.exports: $Exports<'material-ui-icons/Terrain'>; -} -declare module 'material-ui-icons/TextFields.js' { - declare module.exports: $Exports<'material-ui-icons/TextFields'>; -} -declare module 'material-ui-icons/TextFormat.js' { - declare module.exports: $Exports<'material-ui-icons/TextFormat'>; -} -declare module 'material-ui-icons/Textsms.js' { - declare module.exports: $Exports<'material-ui-icons/Textsms'>; -} -declare module 'material-ui-icons/Texture.js' { - declare module.exports: $Exports<'material-ui-icons/Texture'>; -} -declare module 'material-ui-icons/Theaters.js' { - declare module.exports: $Exports<'material-ui-icons/Theaters'>; -} -declare module 'material-ui-icons/ThreeDRotation.js' { - declare module.exports: $Exports<'material-ui-icons/ThreeDRotation'>; -} -declare module 'material-ui-icons/ThumbDown.js' { - declare module.exports: $Exports<'material-ui-icons/ThumbDown'>; -} -declare module 'material-ui-icons/ThumbsUpDown.js' { - declare module.exports: $Exports<'material-ui-icons/ThumbsUpDown'>; -} -declare module 'material-ui-icons/ThumbUp.js' { - declare module.exports: $Exports<'material-ui-icons/ThumbUp'>; -} -declare module 'material-ui-icons/Timelapse.js' { - declare module.exports: $Exports<'material-ui-icons/Timelapse'>; -} -declare module 'material-ui-icons/Timeline.js' { - declare module.exports: $Exports<'material-ui-icons/Timeline'>; -} -declare module 'material-ui-icons/Timer.js' { - declare module.exports: $Exports<'material-ui-icons/Timer'>; -} -declare module 'material-ui-icons/Timer10.js' { - declare module.exports: $Exports<'material-ui-icons/Timer10'>; -} -declare module 'material-ui-icons/Timer3.js' { - declare module.exports: $Exports<'material-ui-icons/Timer3'>; -} -declare module 'material-ui-icons/TimerOff.js' { - declare module.exports: $Exports<'material-ui-icons/TimerOff'>; -} -declare module 'material-ui-icons/TimeToLeave.js' { - declare module.exports: $Exports<'material-ui-icons/TimeToLeave'>; -} -declare module 'material-ui-icons/Title.js' { - declare module.exports: $Exports<'material-ui-icons/Title'>; -} -declare module 'material-ui-icons/Toc.js' { - declare module.exports: $Exports<'material-ui-icons/Toc'>; -} -declare module 'material-ui-icons/Today.js' { - declare module.exports: $Exports<'material-ui-icons/Today'>; -} -declare module 'material-ui-icons/Toll.js' { - declare module.exports: $Exports<'material-ui-icons/Toll'>; -} -declare module 'material-ui-icons/Tonality.js' { - declare module.exports: $Exports<'material-ui-icons/Tonality'>; -} -declare module 'material-ui-icons/TouchApp.js' { - declare module.exports: $Exports<'material-ui-icons/TouchApp'>; -} -declare module 'material-ui-icons/Toys.js' { - declare module.exports: $Exports<'material-ui-icons/Toys'>; -} -declare module 'material-ui-icons/TrackChanges.js' { - declare module.exports: $Exports<'material-ui-icons/TrackChanges'>; -} -declare module 'material-ui-icons/Traffic.js' { - declare module.exports: $Exports<'material-ui-icons/Traffic'>; -} -declare module 'material-ui-icons/Train.js' { - declare module.exports: $Exports<'material-ui-icons/Train'>; -} -declare module 'material-ui-icons/Tram.js' { - declare module.exports: $Exports<'material-ui-icons/Tram'>; -} -declare module 'material-ui-icons/TransferWithinAStation.js' { - declare module.exports: $Exports<'material-ui-icons/TransferWithinAStation'>; -} -declare module 'material-ui-icons/Transform.js' { - declare module.exports: $Exports<'material-ui-icons/Transform'>; -} -declare module 'material-ui-icons/Translate.js' { - declare module.exports: $Exports<'material-ui-icons/Translate'>; -} -declare module 'material-ui-icons/TrendingDown.js' { - declare module.exports: $Exports<'material-ui-icons/TrendingDown'>; -} -declare module 'material-ui-icons/TrendingFlat.js' { - declare module.exports: $Exports<'material-ui-icons/TrendingFlat'>; -} -declare module 'material-ui-icons/TrendingUp.js' { - declare module.exports: $Exports<'material-ui-icons/TrendingUp'>; -} -declare module 'material-ui-icons/Tune.js' { - declare module.exports: $Exports<'material-ui-icons/Tune'>; -} -declare module 'material-ui-icons/TurnedIn.js' { - declare module.exports: $Exports<'material-ui-icons/TurnedIn'>; -} -declare module 'material-ui-icons/TurnedInNot.js' { - declare module.exports: $Exports<'material-ui-icons/TurnedInNot'>; -} -declare module 'material-ui-icons/Tv.js' { - declare module.exports: $Exports<'material-ui-icons/Tv'>; -} -declare module 'material-ui-icons/Unarchive.js' { - declare module.exports: $Exports<'material-ui-icons/Unarchive'>; -} -declare module 'material-ui-icons/Undo.js' { - declare module.exports: $Exports<'material-ui-icons/Undo'>; -} -declare module 'material-ui-icons/UnfoldLess.js' { - declare module.exports: $Exports<'material-ui-icons/UnfoldLess'>; -} -declare module 'material-ui-icons/UnfoldMore.js' { - declare module.exports: $Exports<'material-ui-icons/UnfoldMore'>; -} -declare module 'material-ui-icons/Update.js' { - declare module.exports: $Exports<'material-ui-icons/Update'>; -} -declare module 'material-ui-icons/Usb.js' { - declare module.exports: $Exports<'material-ui-icons/Usb'>; -} -declare module 'material-ui-icons/VerifiedUser.js' { - declare module.exports: $Exports<'material-ui-icons/VerifiedUser'>; -} -declare module 'material-ui-icons/VerticalAlignBottom.js' { - declare module.exports: $Exports<'material-ui-icons/VerticalAlignBottom'>; -} -declare module 'material-ui-icons/VerticalAlignCenter.js' { - declare module.exports: $Exports<'material-ui-icons/VerticalAlignCenter'>; -} -declare module 'material-ui-icons/VerticalAlignTop.js' { - declare module.exports: $Exports<'material-ui-icons/VerticalAlignTop'>; -} -declare module 'material-ui-icons/Vibration.js' { - declare module.exports: $Exports<'material-ui-icons/Vibration'>; -} -declare module 'material-ui-icons/VideoCall.js' { - declare module.exports: $Exports<'material-ui-icons/VideoCall'>; -} -declare module 'material-ui-icons/Videocam.js' { - declare module.exports: $Exports<'material-ui-icons/Videocam'>; -} -declare module 'material-ui-icons/VideocamOff.js' { - declare module.exports: $Exports<'material-ui-icons/VideocamOff'>; -} -declare module 'material-ui-icons/VideogameAsset.js' { - declare module.exports: $Exports<'material-ui-icons/VideogameAsset'>; -} -declare module 'material-ui-icons/VideoLabel.js' { - declare module.exports: $Exports<'material-ui-icons/VideoLabel'>; -} -declare module 'material-ui-icons/VideoLibrary.js' { - declare module.exports: $Exports<'material-ui-icons/VideoLibrary'>; -} -declare module 'material-ui-icons/ViewAgenda.js' { - declare module.exports: $Exports<'material-ui-icons/ViewAgenda'>; -} -declare module 'material-ui-icons/ViewArray.js' { - declare module.exports: $Exports<'material-ui-icons/ViewArray'>; -} -declare module 'material-ui-icons/ViewCarousel.js' { - declare module.exports: $Exports<'material-ui-icons/ViewCarousel'>; -} -declare module 'material-ui-icons/ViewColumn.js' { - declare module.exports: $Exports<'material-ui-icons/ViewColumn'>; -} -declare module 'material-ui-icons/ViewComfy.js' { - declare module.exports: $Exports<'material-ui-icons/ViewComfy'>; -} -declare module 'material-ui-icons/ViewCompact.js' { - declare module.exports: $Exports<'material-ui-icons/ViewCompact'>; -} -declare module 'material-ui-icons/ViewDay.js' { - declare module.exports: $Exports<'material-ui-icons/ViewDay'>; -} -declare module 'material-ui-icons/ViewHeadline.js' { - declare module.exports: $Exports<'material-ui-icons/ViewHeadline'>; -} -declare module 'material-ui-icons/ViewList.js' { - declare module.exports: $Exports<'material-ui-icons/ViewList'>; -} -declare module 'material-ui-icons/ViewModule.js' { - declare module.exports: $Exports<'material-ui-icons/ViewModule'>; -} -declare module 'material-ui-icons/ViewQuilt.js' { - declare module.exports: $Exports<'material-ui-icons/ViewQuilt'>; -} -declare module 'material-ui-icons/ViewStream.js' { - declare module.exports: $Exports<'material-ui-icons/ViewStream'>; -} -declare module 'material-ui-icons/ViewWeek.js' { - declare module.exports: $Exports<'material-ui-icons/ViewWeek'>; -} -declare module 'material-ui-icons/Vignette.js' { - declare module.exports: $Exports<'material-ui-icons/Vignette'>; -} -declare module 'material-ui-icons/Visibility.js' { - declare module.exports: $Exports<'material-ui-icons/Visibility'>; -} -declare module 'material-ui-icons/VisibilityOff.js' { - declare module.exports: $Exports<'material-ui-icons/VisibilityOff'>; -} -declare module 'material-ui-icons/VoiceChat.js' { - declare module.exports: $Exports<'material-ui-icons/VoiceChat'>; -} -declare module 'material-ui-icons/Voicemail.js' { - declare module.exports: $Exports<'material-ui-icons/Voicemail'>; -} -declare module 'material-ui-icons/VolumeDown.js' { - declare module.exports: $Exports<'material-ui-icons/VolumeDown'>; -} -declare module 'material-ui-icons/VolumeMute.js' { - declare module.exports: $Exports<'material-ui-icons/VolumeMute'>; -} -declare module 'material-ui-icons/VolumeOff.js' { - declare module.exports: $Exports<'material-ui-icons/VolumeOff'>; -} -declare module 'material-ui-icons/VolumeUp.js' { - declare module.exports: $Exports<'material-ui-icons/VolumeUp'>; -} -declare module 'material-ui-icons/VpnKey.js' { - declare module.exports: $Exports<'material-ui-icons/VpnKey'>; -} -declare module 'material-ui-icons/VpnLock.js' { - declare module.exports: $Exports<'material-ui-icons/VpnLock'>; -} -declare module 'material-ui-icons/Wallpaper.js' { - declare module.exports: $Exports<'material-ui-icons/Wallpaper'>; -} -declare module 'material-ui-icons/Warning.js' { - declare module.exports: $Exports<'material-ui-icons/Warning'>; -} -declare module 'material-ui-icons/Watch.js' { - declare module.exports: $Exports<'material-ui-icons/Watch'>; -} -declare module 'material-ui-icons/WatchLater.js' { - declare module.exports: $Exports<'material-ui-icons/WatchLater'>; -} -declare module 'material-ui-icons/WbAuto.js' { - declare module.exports: $Exports<'material-ui-icons/WbAuto'>; -} -declare module 'material-ui-icons/WbCloudy.js' { - declare module.exports: $Exports<'material-ui-icons/WbCloudy'>; -} -declare module 'material-ui-icons/WbIncandescent.js' { - declare module.exports: $Exports<'material-ui-icons/WbIncandescent'>; -} -declare module 'material-ui-icons/WbIridescent.js' { - declare module.exports: $Exports<'material-ui-icons/WbIridescent'>; -} -declare module 'material-ui-icons/WbSunny.js' { - declare module.exports: $Exports<'material-ui-icons/WbSunny'>; -} -declare module 'material-ui-icons/Wc.js' { - declare module.exports: $Exports<'material-ui-icons/Wc'>; -} -declare module 'material-ui-icons/Web.js' { - declare module.exports: $Exports<'material-ui-icons/Web'>; -} -declare module 'material-ui-icons/WebAsset.js' { - declare module.exports: $Exports<'material-ui-icons/WebAsset'>; -} -declare module 'material-ui-icons/Weekend.js' { - declare module.exports: $Exports<'material-ui-icons/Weekend'>; -} -declare module 'material-ui-icons/Whatshot.js' { - declare module.exports: $Exports<'material-ui-icons/Whatshot'>; -} -declare module 'material-ui-icons/Widgets.js' { - declare module.exports: $Exports<'material-ui-icons/Widgets'>; -} -declare module 'material-ui-icons/Wifi.js' { - declare module.exports: $Exports<'material-ui-icons/Wifi'>; -} -declare module 'material-ui-icons/WifiLock.js' { - declare module.exports: $Exports<'material-ui-icons/WifiLock'>; -} -declare module 'material-ui-icons/WifiTethering.js' { - declare module.exports: $Exports<'material-ui-icons/WifiTethering'>; -} -declare module 'material-ui-icons/Work.js' { - declare module.exports: $Exports<'material-ui-icons/Work'>; -} -declare module 'material-ui-icons/WrapText.js' { - declare module.exports: $Exports<'material-ui-icons/WrapText'>; -} -declare module 'material-ui-icons/YoutubeSearchedFor.js' { - declare module.exports: $Exports<'material-ui-icons/YoutubeSearchedFor'>; -} -declare module 'material-ui-icons/ZoomIn.js' { - declare module.exports: $Exports<'material-ui-icons/ZoomIn'>; -} -declare module 'material-ui-icons/ZoomOut.js' { - declare module.exports: $Exports<'material-ui-icons/ZoomOut'>; -} -declare module 'material-ui-icons/ZoomOutMap.js' { - declare module.exports: $Exports<'material-ui-icons/ZoomOutMap'>; -} diff --git a/flow-typed/npm/material-ui-search-bar_vx.x.x.js b/flow-typed/npm/material-ui-search-bar_vx.x.x.js new file mode 100644 index 00000000..d95b737d --- /dev/null +++ b/flow-typed/npm/material-ui-search-bar_vx.x.x.js @@ -0,0 +1,66 @@ +// flow-typed signature: 1b8175b8922bedb25de8c048cfb20009 +// flow-typed version: <>/material-ui-search-bar_v^1.0.0-beta.13/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'material-ui-search-bar' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'material-ui-search-bar' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'material-ui-search-bar/lib/components/SearchBar' { + declare module.exports: any; +} + +declare module 'material-ui-search-bar/lib/components/SearchBar/SearchBar' { + declare module.exports: any; +} + +declare module 'material-ui-search-bar/lib' { + declare module.exports: any; +} + +declare module 'material-ui-search-bar/lib/styleguide/Wrapper' { + declare module.exports: any; +} + +declare module 'material-ui-search-bar/styleguide.config' { + declare module.exports: any; +} + +// Filename aliases +declare module 'material-ui-search-bar/lib/components/SearchBar/index' { + declare module.exports: $Exports<'material-ui-search-bar/lib/components/SearchBar'>; +} +declare module 'material-ui-search-bar/lib/components/SearchBar/index.js' { + declare module.exports: $Exports<'material-ui-search-bar/lib/components/SearchBar'>; +} +declare module 'material-ui-search-bar/lib/components/SearchBar/SearchBar.js' { + declare module.exports: $Exports<'material-ui-search-bar/lib/components/SearchBar/SearchBar'>; +} +declare module 'material-ui-search-bar/lib/index' { + declare module.exports: $Exports<'material-ui-search-bar/lib'>; +} +declare module 'material-ui-search-bar/lib/index.js' { + declare module.exports: $Exports<'material-ui-search-bar/lib'>; +} +declare module 'material-ui-search-bar/lib/styleguide/Wrapper.js' { + declare module.exports: $Exports<'material-ui-search-bar/lib/styleguide/Wrapper'>; +} +declare module 'material-ui-search-bar/styleguide.config.js' { + declare module.exports: $Exports<'material-ui-search-bar/styleguide.config'>; +} diff --git a/flow-typed/npm/mini-css-extract-plugin_vx.x.x.js b/flow-typed/npm/mini-css-extract-plugin_vx.x.x.js new file mode 100644 index 00000000..a04170b0 --- /dev/null +++ b/flow-typed/npm/mini-css-extract-plugin_vx.x.x.js @@ -0,0 +1,56 @@ +// flow-typed signature: 6c0b56b463813e6d7e6ce19c6fe483b8 +// flow-typed version: <>/mini-css-extract-plugin_v0.8.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'mini-css-extract-plugin' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'mini-css-extract-plugin' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'mini-css-extract-plugin/dist/cjs' { + declare module.exports: any; +} + +declare module 'mini-css-extract-plugin/dist/hmr/hotModuleReplacement' { + declare module.exports: any; +} + +declare module 'mini-css-extract-plugin/dist' { + declare module.exports: any; +} + +declare module 'mini-css-extract-plugin/dist/loader' { + declare module.exports: any; +} + +// Filename aliases +declare module 'mini-css-extract-plugin/dist/cjs.js' { + declare module.exports: $Exports<'mini-css-extract-plugin/dist/cjs'>; +} +declare module 'mini-css-extract-plugin/dist/hmr/hotModuleReplacement.js' { + declare module.exports: $Exports<'mini-css-extract-plugin/dist/hmr/hotModuleReplacement'>; +} +declare module 'mini-css-extract-plugin/dist/index' { + declare module.exports: $Exports<'mini-css-extract-plugin/dist'>; +} +declare module 'mini-css-extract-plugin/dist/index.js' { + declare module.exports: $Exports<'mini-css-extract-plugin/dist'>; +} +declare module 'mini-css-extract-plugin/dist/loader.js' { + declare module.exports: $Exports<'mini-css-extract-plugin/dist/loader'>; +} diff --git a/flow-typed/npm/notistack_vx.x.x.js b/flow-typed/npm/notistack_vx.x.x.js new file mode 100644 index 00000000..3cbac9c3 --- /dev/null +++ b/flow-typed/npm/notistack_vx.x.x.js @@ -0,0 +1,312 @@ +// flow-typed signature: f8bc383f329f40ec2db2c9088119e8cb +// flow-typed version: <>/notistack_vhttps://github.com/gnosis/notistack.git#v0.9.4/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'notistack' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'notistack' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'notistack/build' { + declare module.exports: any; +} + +declare module 'notistack/build/SnackbarContainer' { + declare module.exports: any; +} + +declare module 'notistack/build/SnackbarContext' { + declare module.exports: any; +} + +declare module 'notistack/build/SnackbarItem' { + declare module.exports: any; +} + +declare module 'notistack/build/SnackbarItem/SnackbarItem' { + declare module.exports: any; +} + +declare module 'notistack/build/SnackbarItem/SnackbarItem.styles' { + declare module.exports: any; +} + +declare module 'notistack/build/SnackbarItem/SnackbarItem.util' { + declare module.exports: any; +} + +declare module 'notistack/build/SnackbarProvider' { + declare module.exports: any; +} + +declare module 'notistack/build/useSnackbar' { + declare module.exports: any; +} + +declare module 'notistack/build/utils/constants' { + declare module.exports: any; +} + +declare module 'notistack/build/utils/getDisplayName' { + declare module.exports: any; +} + +declare module 'notistack/build/utils/warning' { + declare module.exports: any; +} + +declare module 'notistack/build/withSnackbar' { + declare module.exports: any; +} + +declare module 'notistack/examples/mobx-example/App' { + declare module.exports: any; +} + +declare module 'notistack/examples/mobx-example' { + declare module.exports: any; +} + +declare module 'notistack/examples/mobx-example/Notifier' { + declare module.exports: any; +} + +declare module 'notistack/examples/mobx-example/store/store' { + declare module.exports: any; +} + +declare module 'notistack/examples/redux-example/App' { + declare module.exports: any; +} + +declare module 'notistack/examples/redux-example' { + declare module.exports: any; +} + +declare module 'notistack/examples/redux-example/Notifier' { + declare module.exports: any; +} + +declare module 'notistack/examples/redux-example/redux/actions' { + declare module.exports: any; +} + +declare module 'notistack/examples/redux-example/redux/reducers' { + declare module.exports: any; +} + +declare module 'notistack/examples/simple-example/App' { + declare module.exports: any; +} + +declare module 'notistack/examples/simple-example' { + declare module.exports: any; +} + +declare module 'notistack/examples/simple-example/MessageButtons' { + declare module.exports: any; +} + +declare module 'notistack/src' { + declare module.exports: any; +} + +declare module 'notistack/src/SnackbarContainer' { + declare module.exports: any; +} + +declare module 'notistack/src/SnackbarContext' { + declare module.exports: any; +} + +declare module 'notistack/src/SnackbarItem' { + declare module.exports: any; +} + +declare module 'notistack/src/SnackbarItem/SnackbarItem' { + declare module.exports: any; +} + +declare module 'notistack/src/SnackbarItem/SnackbarItem.styles' { + declare module.exports: any; +} + +declare module 'notistack/src/SnackbarItem/SnackbarItem.util' { + declare module.exports: any; +} + +declare module 'notistack/src/SnackbarProvider' { + declare module.exports: any; +} + +declare module 'notistack/src/useSnackbar' { + declare module.exports: any; +} + +declare module 'notistack/src/utils/constants' { + declare module.exports: any; +} + +declare module 'notistack/src/utils/getDisplayName' { + declare module.exports: any; +} + +declare module 'notistack/src/utils/warning' { + declare module.exports: any; +} + +declare module 'notistack/src/withSnackbar' { + declare module.exports: any; +} + +// Filename aliases +declare module 'notistack/build/index' { + declare module.exports: $Exports<'notistack/build'>; +} +declare module 'notistack/build/index.js' { + declare module.exports: $Exports<'notistack/build'>; +} +declare module 'notistack/build/SnackbarContainer.js' { + declare module.exports: $Exports<'notistack/build/SnackbarContainer'>; +} +declare module 'notistack/build/SnackbarContext.js' { + declare module.exports: $Exports<'notistack/build/SnackbarContext'>; +} +declare module 'notistack/build/SnackbarItem/index' { + declare module.exports: $Exports<'notistack/build/SnackbarItem'>; +} +declare module 'notistack/build/SnackbarItem/index.js' { + declare module.exports: $Exports<'notistack/build/SnackbarItem'>; +} +declare module 'notistack/build/SnackbarItem/SnackbarItem.js' { + declare module.exports: $Exports<'notistack/build/SnackbarItem/SnackbarItem'>; +} +declare module 'notistack/build/SnackbarItem/SnackbarItem.styles.js' { + declare module.exports: $Exports<'notistack/build/SnackbarItem/SnackbarItem.styles'>; +} +declare module 'notistack/build/SnackbarItem/SnackbarItem.util.js' { + declare module.exports: $Exports<'notistack/build/SnackbarItem/SnackbarItem.util'>; +} +declare module 'notistack/build/SnackbarProvider.js' { + declare module.exports: $Exports<'notistack/build/SnackbarProvider'>; +} +declare module 'notistack/build/useSnackbar.js' { + declare module.exports: $Exports<'notistack/build/useSnackbar'>; +} +declare module 'notistack/build/utils/constants.js' { + declare module.exports: $Exports<'notistack/build/utils/constants'>; +} +declare module 'notistack/build/utils/getDisplayName.js' { + declare module.exports: $Exports<'notistack/build/utils/getDisplayName'>; +} +declare module 'notistack/build/utils/warning.js' { + declare module.exports: $Exports<'notistack/build/utils/warning'>; +} +declare module 'notistack/build/withSnackbar.js' { + declare module.exports: $Exports<'notistack/build/withSnackbar'>; +} +declare module 'notistack/examples/mobx-example/App.js' { + declare module.exports: $Exports<'notistack/examples/mobx-example/App'>; +} +declare module 'notistack/examples/mobx-example/index' { + declare module.exports: $Exports<'notistack/examples/mobx-example'>; +} +declare module 'notistack/examples/mobx-example/index.js' { + declare module.exports: $Exports<'notistack/examples/mobx-example'>; +} +declare module 'notistack/examples/mobx-example/Notifier.js' { + declare module.exports: $Exports<'notistack/examples/mobx-example/Notifier'>; +} +declare module 'notistack/examples/mobx-example/store/store.js' { + declare module.exports: $Exports<'notistack/examples/mobx-example/store/store'>; +} +declare module 'notistack/examples/redux-example/App.js' { + declare module.exports: $Exports<'notistack/examples/redux-example/App'>; +} +declare module 'notistack/examples/redux-example/index' { + declare module.exports: $Exports<'notistack/examples/redux-example'>; +} +declare module 'notistack/examples/redux-example/index.js' { + declare module.exports: $Exports<'notistack/examples/redux-example'>; +} +declare module 'notistack/examples/redux-example/Notifier.js' { + declare module.exports: $Exports<'notistack/examples/redux-example/Notifier'>; +} +declare module 'notistack/examples/redux-example/redux/actions.js' { + declare module.exports: $Exports<'notistack/examples/redux-example/redux/actions'>; +} +declare module 'notistack/examples/redux-example/redux/reducers.js' { + declare module.exports: $Exports<'notistack/examples/redux-example/redux/reducers'>; +} +declare module 'notistack/examples/simple-example/App.js' { + declare module.exports: $Exports<'notistack/examples/simple-example/App'>; +} +declare module 'notistack/examples/simple-example/index' { + declare module.exports: $Exports<'notistack/examples/simple-example'>; +} +declare module 'notistack/examples/simple-example/index.js' { + declare module.exports: $Exports<'notistack/examples/simple-example'>; +} +declare module 'notistack/examples/simple-example/MessageButtons.js' { + declare module.exports: $Exports<'notistack/examples/simple-example/MessageButtons'>; +} +declare module 'notistack/src/index' { + declare module.exports: $Exports<'notistack/src'>; +} +declare module 'notistack/src/index.js' { + declare module.exports: $Exports<'notistack/src'>; +} +declare module 'notistack/src/SnackbarContainer.js' { + declare module.exports: $Exports<'notistack/src/SnackbarContainer'>; +} +declare module 'notistack/src/SnackbarContext.js' { + declare module.exports: $Exports<'notistack/src/SnackbarContext'>; +} +declare module 'notistack/src/SnackbarItem/index' { + declare module.exports: $Exports<'notistack/src/SnackbarItem'>; +} +declare module 'notistack/src/SnackbarItem/index.js' { + declare module.exports: $Exports<'notistack/src/SnackbarItem'>; +} +declare module 'notistack/src/SnackbarItem/SnackbarItem.js' { + declare module.exports: $Exports<'notistack/src/SnackbarItem/SnackbarItem'>; +} +declare module 'notistack/src/SnackbarItem/SnackbarItem.styles.js' { + declare module.exports: $Exports<'notistack/src/SnackbarItem/SnackbarItem.styles'>; +} +declare module 'notistack/src/SnackbarItem/SnackbarItem.util.js' { + declare module.exports: $Exports<'notistack/src/SnackbarItem/SnackbarItem.util'>; +} +declare module 'notistack/src/SnackbarProvider.js' { + declare module.exports: $Exports<'notistack/src/SnackbarProvider'>; +} +declare module 'notistack/src/useSnackbar.js' { + declare module.exports: $Exports<'notistack/src/useSnackbar'>; +} +declare module 'notistack/src/utils/constants.js' { + declare module.exports: $Exports<'notistack/src/utils/constants'>; +} +declare module 'notistack/src/utils/getDisplayName.js' { + declare module.exports: $Exports<'notistack/src/utils/getDisplayName'>; +} +declare module 'notistack/src/utils/warning.js' { + declare module.exports: $Exports<'notistack/src/utils/warning'>; +} +declare module 'notistack/src/withSnackbar.js' { + declare module.exports: $Exports<'notistack/src/withSnackbar'>; +} diff --git a/flow-typed/npm/optimize-css-assets-webpack-plugin_vx.x.x.js b/flow-typed/npm/optimize-css-assets-webpack-plugin_vx.x.x.js new file mode 100644 index 00000000..ab7bcb11 --- /dev/null +++ b/flow-typed/npm/optimize-css-assets-webpack-plugin_vx.x.x.js @@ -0,0 +1,134 @@ +// flow-typed signature: d858b38388e2987b69819b5a5e59e5de +// flow-typed version: <>/optimize-css-assets-webpack-plugin_v5.0.3/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'optimize-css-assets-webpack-plugin' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'optimize-css-assets-webpack-plugin' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'optimize-css-assets-webpack-plugin/src' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/cases/assetNameRegExp-no-source' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/cases/assetNameRegExp-no-source/webpack.config' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/cases/duplicate-css-exists-without-plugin' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/cases/duplicate-css-exists-without-plugin/webpack.config' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/cases/only-assetNameRegExp-processed' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/cases/only-assetNameRegExp-processed/webpack.config' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/cases/removes-duplicate-css' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/cases/removes-duplicate-css/webpack.config' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/plugin.test' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/util/helpers' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/util' { + declare module.exports: any; +} + +declare module 'optimize-css-assets-webpack-plugin/test/webpack-integration.test' { + declare module.exports: any; +} + +// Filename aliases +declare module 'optimize-css-assets-webpack-plugin/src/index' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/src'>; +} +declare module 'optimize-css-assets-webpack-plugin/src/index.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/src'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/assetNameRegExp-no-source/index' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/assetNameRegExp-no-source'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/assetNameRegExp-no-source/index.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/assetNameRegExp-no-source'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/assetNameRegExp-no-source/webpack.config.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/assetNameRegExp-no-source/webpack.config'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/duplicate-css-exists-without-plugin/index' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/duplicate-css-exists-without-plugin'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/duplicate-css-exists-without-plugin/index.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/duplicate-css-exists-without-plugin'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/duplicate-css-exists-without-plugin/webpack.config.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/duplicate-css-exists-without-plugin/webpack.config'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/only-assetNameRegExp-processed/index' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/only-assetNameRegExp-processed'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/only-assetNameRegExp-processed/index.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/only-assetNameRegExp-processed'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/only-assetNameRegExp-processed/webpack.config.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/only-assetNameRegExp-processed/webpack.config'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/removes-duplicate-css/index' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/removes-duplicate-css'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/removes-duplicate-css/index.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/removes-duplicate-css'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/cases/removes-duplicate-css/webpack.config.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/cases/removes-duplicate-css/webpack.config'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/plugin.test.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/plugin.test'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/util/helpers.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/util/helpers'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/util/index' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/util'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/util/index.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/util'>; +} +declare module 'optimize-css-assets-webpack-plugin/test/webpack-integration.test.js' { + declare module.exports: $Exports<'optimize-css-assets-webpack-plugin/test/webpack-integration.test'>; +} diff --git a/flow-typed/npm/postcss-loader_vx.x.x.js b/flow-typed/npm/postcss-loader_vx.x.x.js index 2d3f9b58..6eadcbaf 100644 --- a/flow-typed/npm/postcss-loader_vx.x.x.js +++ b/flow-typed/npm/postcss-loader_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: c1c34522058dc78455f364e71f71de48 -// flow-typed version: <>/postcss-loader_v^2.1.1/flow_v0.66.0 +// flow-typed signature: 30d1a857eca100f0f8897669ec1534c9 +// flow-typed version: <>/postcss-loader_v^3.0.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,25 +22,35 @@ declare module 'postcss-loader' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'postcss-loader/lib/Error' { +declare module 'postcss-loader/src/Error' { declare module.exports: any; } -declare module 'postcss-loader/lib/index' { +declare module 'postcss-loader/src' { declare module.exports: any; } -declare module 'postcss-loader/lib/options' { +declare module 'postcss-loader/src/options' { + declare module.exports: any; +} + +declare module 'postcss-loader/src/Warning' { declare module.exports: any; } // Filename aliases -declare module 'postcss-loader/lib/Error.js' { - declare module.exports: $Exports<'postcss-loader/lib/Error'>; +declare module 'postcss-loader/src/Error.js' { + declare module.exports: $Exports<'postcss-loader/src/Error'>; } -declare module 'postcss-loader/lib/index.js' { - declare module.exports: $Exports<'postcss-loader/lib/index'>; +declare module 'postcss-loader/src/index' { + declare module.exports: $Exports<'postcss-loader/src'>; } -declare module 'postcss-loader/lib/options.js' { - declare module.exports: $Exports<'postcss-loader/lib/options'>; +declare module 'postcss-loader/src/index.js' { + declare module.exports: $Exports<'postcss-loader/src'>; +} +declare module 'postcss-loader/src/options.js' { + declare module.exports: $Exports<'postcss-loader/src/options'>; +} +declare module 'postcss-loader/src/Warning.js' { + declare module.exports: $Exports<'postcss-loader/src/Warning'>; } diff --git a/flow-typed/npm/postcss-mixins_vx.x.x.js b/flow-typed/npm/postcss-mixins_vx.x.x.js index 40bda207..ea463d7b 100644 --- a/flow-typed/npm/postcss-mixins_vx.x.x.js +++ b/flow-typed/npm/postcss-mixins_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 04ff32665baee4af652d15fb60267d4e -// flow-typed version: <>/postcss-mixins_v^6.2.0/flow_v0.66.0 +// flow-typed signature: c7ff35ccf29eb9a19b8c65171af15618 +// flow-typed version: <>/postcss-mixins_v6.2.3/flow_v0.112.0 /** * This is an autogenerated libdef stub for: diff --git a/flow-typed/npm/postcss-simple-vars_vx.x.x.js b/flow-typed/npm/postcss-simple-vars_vx.x.x.js index f1139bc1..b8b6c611 100644 --- a/flow-typed/npm/postcss-simple-vars_vx.x.x.js +++ b/flow-typed/npm/postcss-simple-vars_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 0cf1b74654d41b6fa5fcc79e717c613f -// flow-typed version: <>/postcss-simple-vars_v^4.1.0/flow_v0.66.0 +// flow-typed signature: 19c5eeedd333e80fc8c36291e8a8102e +// flow-typed version: <>/postcss-simple-vars_v^5.0.2/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,9 +22,7 @@ declare module 'postcss-simple-vars' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'postcss-simple-vars/index.test' { - declare module.exports: any; -} + // Filename aliases declare module 'postcss-simple-vars/index' { @@ -33,6 +31,3 @@ declare module 'postcss-simple-vars/index' { declare module 'postcss-simple-vars/index.js' { declare module.exports: $Exports<'postcss-simple-vars'>; } -declare module 'postcss-simple-vars/index.test.js' { - declare module.exports: $Exports<'postcss-simple-vars/index.test'>; -} diff --git a/flow-typed/npm/pre-commit_vx.x.x.js b/flow-typed/npm/pre-commit_vx.x.x.js index 1944585a..6fafcc03 100644 --- a/flow-typed/npm/pre-commit_vx.x.x.js +++ b/flow-typed/npm/pre-commit_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 3b3a84fd8db14c0f953a6a3fc85194f5 -// flow-typed version: <>/pre-commit_v^1.2.2/flow_v0.66.0 +// flow-typed signature: 00a9cde2a47118327550bc88dd0b4a10 +// flow-typed version: <>/pre-commit_v^1.2.2/flow_v0.112.0 /** * This is an autogenerated libdef stub for: diff --git a/flow-typed/npm/prettier-eslint-cli_vx.x.x.js b/flow-typed/npm/prettier-eslint-cli_vx.x.x.js new file mode 100644 index 00000000..8b48773f --- /dev/null +++ b/flow-typed/npm/prettier-eslint-cli_vx.x.x.js @@ -0,0 +1,105 @@ +// flow-typed signature: ced24ab69cedf9e693d089727125bef3 +// flow-typed version: <>/prettier-eslint-cli_v5.0.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'prettier-eslint-cli' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'prettier-eslint-cli' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'prettier-eslint-cli/dist/add-exception-handler' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist/argv' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist/format-files' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist/format-files.test' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist/message.test' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist/messages' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist/no-main' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist/parser' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist/uncaught-exception-handler' { + declare module.exports: any; +} + +declare module 'prettier-eslint-cli/dist/uncaught-exception-handler.test' { + declare module.exports: any; +} + +// Filename aliases +declare module 'prettier-eslint-cli/dist/add-exception-handler.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/add-exception-handler'>; +} +declare module 'prettier-eslint-cli/dist/argv.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/argv'>; +} +declare module 'prettier-eslint-cli/dist/format-files.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/format-files'>; +} +declare module 'prettier-eslint-cli/dist/format-files.test.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/format-files.test'>; +} +declare module 'prettier-eslint-cli/dist/index' { + declare module.exports: $Exports<'prettier-eslint-cli/dist'>; +} +declare module 'prettier-eslint-cli/dist/index.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist'>; +} +declare module 'prettier-eslint-cli/dist/message.test.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/message.test'>; +} +declare module 'prettier-eslint-cli/dist/messages.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/messages'>; +} +declare module 'prettier-eslint-cli/dist/no-main.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/no-main'>; +} +declare module 'prettier-eslint-cli/dist/parser.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/parser'>; +} +declare module 'prettier-eslint-cli/dist/uncaught-exception-handler.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/uncaught-exception-handler'>; +} +declare module 'prettier-eslint-cli/dist/uncaught-exception-handler.test.js' { + declare module.exports: $Exports<'prettier-eslint-cli/dist/uncaught-exception-handler.test'>; +} diff --git a/flow-typed/npm/dotenv_vx.x.x.js b/flow-typed/npm/qrcode.react_vx.x.x.js similarity index 54% rename from flow-typed/npm/dotenv_vx.x.x.js rename to flow-typed/npm/qrcode.react_vx.x.x.js index df6b6d23..d86520b7 100644 --- a/flow-typed/npm/dotenv_vx.x.x.js +++ b/flow-typed/npm/qrcode.react_vx.x.x.js @@ -1,10 +1,10 @@ -// flow-typed signature: dcf49d697eb091167fe6e4c1875fbf6b -// flow-typed version: <>/dotenv_v^5.0.1/flow_v0.66.0 +// flow-typed signature: 0263e9e9a8b1e1b00f24616149d6cdec +// flow-typed version: <>/qrcode.react_v1.0.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: * - * 'dotenv' + * 'qrcode.react' * * Fill this stub out by replacing all the `any` types. * @@ -13,7 +13,7 @@ * https://github.com/flowtype/flow-typed */ -declare module 'dotenv' { +declare module 'qrcode.react' { declare module.exports: any; } @@ -22,18 +22,14 @@ declare module 'dotenv' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'dotenv/config' { - declare module.exports: any; -} - -declare module 'dotenv/lib/main' { +declare module 'qrcode.react/lib' { declare module.exports: any; } // Filename aliases -declare module 'dotenv/config.js' { - declare module.exports: $Exports<'dotenv/config'>; +declare module 'qrcode.react/lib/index' { + declare module.exports: $Exports<'qrcode.react/lib'>; } -declare module 'dotenv/lib/main.js' { - declare module.exports: $Exports<'dotenv/lib/main'>; +declare module 'qrcode.react/lib/index.js' { + declare module.exports: $Exports<'qrcode.react/lib'>; } diff --git a/flow-typed/npm/react-dev-utils_vx.x.x.js b/flow-typed/npm/react-dev-utils_vx.x.x.js deleted file mode 100644 index 5c4eefcd..00000000 --- a/flow-typed/npm/react-dev-utils_vx.x.x.js +++ /dev/null @@ -1,172 +0,0 @@ -// flow-typed signature: e5510f694d8e0b5f56eef747856b956a -// flow-typed version: <>/react-dev-utils_v^5.0.0/flow_v0.66.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-dev-utils' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'react-dev-utils' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'react-dev-utils/checkRequiredFiles' { - declare module.exports: any; -} - -declare module 'react-dev-utils/clearConsole' { - declare module.exports: any; -} - -declare module 'react-dev-utils/crossSpawn' { - declare module.exports: any; -} - -declare module 'react-dev-utils/errorOverlayMiddleware' { - declare module.exports: any; -} - -declare module 'react-dev-utils/eslintFormatter' { - declare module.exports: any; -} - -declare module 'react-dev-utils/FileSizeReporter' { - declare module.exports: any; -} - -declare module 'react-dev-utils/formatWebpackMessages' { - declare module.exports: any; -} - -declare module 'react-dev-utils/getProcessForPort' { - declare module.exports: any; -} - -declare module 'react-dev-utils/ignoredFiles' { - declare module.exports: any; -} - -declare module 'react-dev-utils/inquirer' { - declare module.exports: any; -} - -declare module 'react-dev-utils/InterpolateHtmlPlugin' { - declare module.exports: any; -} - -declare module 'react-dev-utils/launchEditor' { - declare module.exports: any; -} - -declare module 'react-dev-utils/launchEditorEndpoint' { - declare module.exports: any; -} - -declare module 'react-dev-utils/ModuleScopePlugin' { - declare module.exports: any; -} - -declare module 'react-dev-utils/noopServiceWorkerMiddleware' { - declare module.exports: any; -} - -declare module 'react-dev-utils/openBrowser' { - declare module.exports: any; -} - -declare module 'react-dev-utils/printBuildError' { - declare module.exports: any; -} - -declare module 'react-dev-utils/printHostingInstructions' { - declare module.exports: any; -} - -declare module 'react-dev-utils/WatchMissingNodeModulesPlugin' { - declare module.exports: any; -} - -declare module 'react-dev-utils/WebpackDevServerUtils' { - declare module.exports: any; -} - -declare module 'react-dev-utils/webpackHotDevClient' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-dev-utils/checkRequiredFiles.js' { - declare module.exports: $Exports<'react-dev-utils/checkRequiredFiles'>; -} -declare module 'react-dev-utils/clearConsole.js' { - declare module.exports: $Exports<'react-dev-utils/clearConsole'>; -} -declare module 'react-dev-utils/crossSpawn.js' { - declare module.exports: $Exports<'react-dev-utils/crossSpawn'>; -} -declare module 'react-dev-utils/errorOverlayMiddleware.js' { - declare module.exports: $Exports<'react-dev-utils/errorOverlayMiddleware'>; -} -declare module 'react-dev-utils/eslintFormatter.js' { - declare module.exports: $Exports<'react-dev-utils/eslintFormatter'>; -} -declare module 'react-dev-utils/FileSizeReporter.js' { - declare module.exports: $Exports<'react-dev-utils/FileSizeReporter'>; -} -declare module 'react-dev-utils/formatWebpackMessages.js' { - declare module.exports: $Exports<'react-dev-utils/formatWebpackMessages'>; -} -declare module 'react-dev-utils/getProcessForPort.js' { - declare module.exports: $Exports<'react-dev-utils/getProcessForPort'>; -} -declare module 'react-dev-utils/ignoredFiles.js' { - declare module.exports: $Exports<'react-dev-utils/ignoredFiles'>; -} -declare module 'react-dev-utils/inquirer.js' { - declare module.exports: $Exports<'react-dev-utils/inquirer'>; -} -declare module 'react-dev-utils/InterpolateHtmlPlugin.js' { - declare module.exports: $Exports<'react-dev-utils/InterpolateHtmlPlugin'>; -} -declare module 'react-dev-utils/launchEditor.js' { - declare module.exports: $Exports<'react-dev-utils/launchEditor'>; -} -declare module 'react-dev-utils/launchEditorEndpoint.js' { - declare module.exports: $Exports<'react-dev-utils/launchEditorEndpoint'>; -} -declare module 'react-dev-utils/ModuleScopePlugin.js' { - declare module.exports: $Exports<'react-dev-utils/ModuleScopePlugin'>; -} -declare module 'react-dev-utils/noopServiceWorkerMiddleware.js' { - declare module.exports: $Exports<'react-dev-utils/noopServiceWorkerMiddleware'>; -} -declare module 'react-dev-utils/openBrowser.js' { - declare module.exports: $Exports<'react-dev-utils/openBrowser'>; -} -declare module 'react-dev-utils/printBuildError.js' { - declare module.exports: $Exports<'react-dev-utils/printBuildError'>; -} -declare module 'react-dev-utils/printHostingInstructions.js' { - declare module.exports: $Exports<'react-dev-utils/printHostingInstructions'>; -} -declare module 'react-dev-utils/WatchMissingNodeModulesPlugin.js' { - declare module.exports: $Exports<'react-dev-utils/WatchMissingNodeModulesPlugin'>; -} -declare module 'react-dev-utils/WebpackDevServerUtils.js' { - declare module.exports: $Exports<'react-dev-utils/WebpackDevServerUtils'>; -} -declare module 'react-dev-utils/webpackHotDevClient.js' { - declare module.exports: $Exports<'react-dev-utils/webpackHotDevClient'>; -} diff --git a/flow-typed/npm/react-hot-loader_v4.6.x.js b/flow-typed/npm/react-hot-loader_v4.6.x.js new file mode 100644 index 00000000..07763896 --- /dev/null +++ b/flow-typed/npm/react-hot-loader_v4.6.x.js @@ -0,0 +1,58 @@ +// flow-typed signature: 8a7e73fee92a885e2d4c8f94329ddbe2 +// flow-typed version: c6154227d1/react-hot-loader_v4.6.x/flow_>=v0.104.x + +// @flow +declare module "react-hot-loader" { + declare type Module = { id: string, ... }; + + declare type ErrorReporterProps = {| + error: Error, + errorInfo: { componentStack: string, ... } + |} + + declare export type ContainerProps = {| + children: React$Element, + errorBoundary?: boolean, + errorReporter?: React$ComponentType, + |} + + declare export class AppContainer extends React$Component {} + + declare export function hot(module: Module): >( + Component: T, + props?: $Diff, ... }> + ) => T + + declare export function cold>(component: T): T + + declare export function areComponentsEqual( + typeA: React$ComponentType, + typeB: React$ComponentType + ): boolean + + declare type Config = {| + logLevel: 'debug' | 'log' | 'warn' | 'error', + pureSFC: boolean, + pureRender: boolean, + allowSFC: boolean, + disableHotRenderer: boolean, + disableHotRendererWhenInjected: boolean, + ignoreSFC: boolean, + ignoreComponents: boolean, + errorReporter: React$ComponentType, + ErrorOverlay: React$ComponentType<{ errors: Array, ... }>, + onComponentRegister: (type: any, uniqueLocalName: string, fileName: string) => any, + onComponentCreate: (type: any, displayName: string) => any, + |} + + declare export function setConfig(config: $Shape): void +} + +declare module "react-hot-loader/root" { + import type { ContainerProps } from 'react-hot-loader'; + + declare export function hot>( + Component: T, + props?: $Diff, ... }> + ): T; +} diff --git a/flow-typed/npm/react-loadable_v5.x.x.js b/flow-typed/npm/react-loadable_v5.x.x.js deleted file mode 100644 index d8257bfe..00000000 --- a/flow-typed/npm/react-loadable_v5.x.x.js +++ /dev/null @@ -1,56 +0,0 @@ -// flow-typed signature: aad2151aafb250a7bce85c55144caa7a -// flow-typed version: 34fcf12a99/react-loadable_v5.x.x/flow_>=v0.56.0 - -declare module 'react-loadable' { - declare type LoadingProps = { - isLoading: boolean, - pastDelay: boolean, - timedOut: boolean, - error: boolean - }; - - declare type CommonOptions = { - loading: React$ComponentType, - delay?: number, - timeout?: number, - modules?: Array, - webpack?: () => Array - }; - - declare type OptionsWithoutRender = { - ...CommonOptions, - loader(): Promise | { default: React$ComponentType }> - }; - - declare type OptionsWithRender = { - ...CommonOptions, - loader(): Promise, - render(loaded: TModule, props: TProps): React$Node - }; - - declare type Options = OptionsWithoutRender | OptionsWithRender; - - declare type MapOptions = { - ...CommonOptions, - loader: { - [key: $Keys]: () => Promise<*> - }, - render(loaded: TModules, props: TProps): React$Node - }; - - declare class LoadableComponent extends React$Component { - static preload(): Promise - } - - declare type CaptureProps = { - report(moduleName: string): void - }; - - declare module.exports: { - (opts: Options): Class>, - Map(opts: MapOptions): Class>, - Capture: React$ComponentType, - preloadAll(): Promise, - preloadReady(): Promise, - }; -} diff --git a/flow-typed/npm/react-qr-reader_vx.x.x.js b/flow-typed/npm/react-qr-reader_vx.x.x.js new file mode 100644 index 00000000..004068b5 --- /dev/null +++ b/flow-typed/npm/react-qr-reader_vx.x.x.js @@ -0,0 +1,136 @@ +// flow-typed signature: 59ec6ff0528ed29fef86e4a4ed3077d7 +// flow-typed version: <>/react-qr-reader_v^2.2.1/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'react-qr-reader' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'react-qr-reader' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'react-qr-reader/examples/example' { + declare module.exports: any; +} + +declare module 'react-qr-reader/examples/legacy-mode' { + declare module.exports: any; +} + +declare module 'react-qr-reader/gulpfile' { + declare module.exports: any; +} + +declare module 'react-qr-reader/lib/createBlob' { + declare module.exports: any; +} + +declare module 'react-qr-reader/lib/errors' { + declare module.exports: any; +} + +declare module 'react-qr-reader/lib/getDeviceId' { + declare module.exports: any; +} + +declare module 'react-qr-reader/lib/havePropsChanged' { + declare module.exports: any; +} + +declare module 'react-qr-reader/lib' { + declare module.exports: any; +} + +declare module 'react-qr-reader/src/createBlob' { + declare module.exports: any; +} + +declare module 'react-qr-reader/src/errors' { + declare module.exports: any; +} + +declare module 'react-qr-reader/src/getDeviceId' { + declare module.exports: any; +} + +declare module 'react-qr-reader/src/havePropsChanged' { + declare module.exports: any; +} + +declare module 'react-qr-reader/src' { + declare module.exports: any; +} + +declare module 'react-qr-reader/src/worker' { + declare module.exports: any; +} + +declare module 'react-qr-reader/stories/index.stories' { + declare module.exports: any; +} + +// Filename aliases +declare module 'react-qr-reader/examples/example.js' { + declare module.exports: $Exports<'react-qr-reader/examples/example'>; +} +declare module 'react-qr-reader/examples/legacy-mode.js' { + declare module.exports: $Exports<'react-qr-reader/examples/legacy-mode'>; +} +declare module 'react-qr-reader/gulpfile.js' { + declare module.exports: $Exports<'react-qr-reader/gulpfile'>; +} +declare module 'react-qr-reader/lib/createBlob.js' { + declare module.exports: $Exports<'react-qr-reader/lib/createBlob'>; +} +declare module 'react-qr-reader/lib/errors.js' { + declare module.exports: $Exports<'react-qr-reader/lib/errors'>; +} +declare module 'react-qr-reader/lib/getDeviceId.js' { + declare module.exports: $Exports<'react-qr-reader/lib/getDeviceId'>; +} +declare module 'react-qr-reader/lib/havePropsChanged.js' { + declare module.exports: $Exports<'react-qr-reader/lib/havePropsChanged'>; +} +declare module 'react-qr-reader/lib/index' { + declare module.exports: $Exports<'react-qr-reader/lib'>; +} +declare module 'react-qr-reader/lib/index.js' { + declare module.exports: $Exports<'react-qr-reader/lib'>; +} +declare module 'react-qr-reader/src/createBlob.js' { + declare module.exports: $Exports<'react-qr-reader/src/createBlob'>; +} +declare module 'react-qr-reader/src/errors.js' { + declare module.exports: $Exports<'react-qr-reader/src/errors'>; +} +declare module 'react-qr-reader/src/getDeviceId.js' { + declare module.exports: $Exports<'react-qr-reader/src/getDeviceId'>; +} +declare module 'react-qr-reader/src/havePropsChanged.js' { + declare module.exports: $Exports<'react-qr-reader/src/havePropsChanged'>; +} +declare module 'react-qr-reader/src/index' { + declare module.exports: $Exports<'react-qr-reader/src'>; +} +declare module 'react-qr-reader/src/index.js' { + declare module.exports: $Exports<'react-qr-reader/src'>; +} +declare module 'react-qr-reader/src/worker.js' { + declare module.exports: $Exports<'react-qr-reader/src/worker'>; +} +declare module 'react-qr-reader/stories/index.stories.js' { + declare module.exports: $Exports<'react-qr-reader/stories/index.stories'>; +} diff --git a/flow-typed/npm/react-redux_v5.x.x.js b/flow-typed/npm/react-redux_v5.x.x.js deleted file mode 100644 index 8a68d93c..00000000 --- a/flow-typed/npm/react-redux_v5.x.x.js +++ /dev/null @@ -1,98 +0,0 @@ -// flow-typed signature: a2c406bd25fca4586c361574e555202d -// flow-typed version: dcd1531faf/react-redux_v5.x.x/flow_>=v0.62.0 - -import type { Dispatch, Store } from "redux"; - -declare module "react-redux" { - import type { ComponentType, ElementConfig } from 'react'; - - declare export class Provider extends React$Component<{ - store: Store, - children?: any - }> {} - - declare export function createProvider( - storeKey?: string, - subKey?: string - ): Provider<*, *>; - - /* - - S = State - A = Action - OP = OwnProps - SP = StateProps - DP = DispatchProps - MP = Merge props - MDP = Map dispatch to props object - RSP = Returned state props - RDP = Returned dispatch props - RMP = Returned merge props - Com = React Component - */ - - declare type MapStateToProps = (state: Object, props: SP) => RSP; - - declare type MapDispatchToProps = (dispatch: Dispatch, ownProps: OP) => RDP; - - declare type MergeProps = ( - stateProps: SP, - dispatchProps: DP, - ownProps: MP - ) => RMP; - - declare type ConnectOptions = {| - pure?: boolean, - withRef?: boolean, - areStatesEqual?: (next: S, prev: S) => boolean, - areOwnPropsEqual?: (next: OP, prev: OP) => boolean, - areStatePropsEqual?: (next: RSP, prev: RSP) => boolean, - areMergedPropsEqual?: (next: RMP, prev: RMP) => boolean, - storeKey?: string - |}; - - declare type OmitDispatch = $Diff}>; - - declare export function connect, DP: Object, RSP: Object>( - mapStateToProps: MapStateToProps, - mapDispatchToProps?: null - ): (component: Com) => ComponentType<$Diff>, RSP> & DP>; - - declare export function connect>( - mapStateToProps?: null, - mapDispatchToProps?: null - ): (component: Com) => ComponentType>>; - - declare export function connect, A, DP: Object, SP: Object, RSP: Object, RDP: Object>( - mapStateToProps: MapStateToProps, - mapDispatchToProps: MapDispatchToProps - ): (component: Com) => ComponentType<$Diff<$Diff, RSP>, RDP> & SP & DP>; - - declare export function connect, A, OP: Object, DP: Object,PR: Object>( - mapStateToProps?: null, - mapDispatchToProps: MapDispatchToProps - ): (Com) => ComponentType<$Diff, DP> & OP>; - - declare export function connect, MDP: Object>( - mapStateToProps?: null, - mapDispatchToProps: MDP - ): (component: Com) => ComponentType<$Diff, MDP>>; - - declare export function connect, SP: Object, RSP: Object, MDP: Object>( - mapStateToProps: MapStateToProps, - mapDispatchToPRops: MDP - ): (component: Com) => ComponentType<$Diff<$Diff, RSP>, MDP> & SP>; - - declare export function connect, A, DP: Object, SP: Object, RSP: Object, RDP: Object, MP: Object, RMP: Object>( - mapStateToProps: MapStateToProps, - mapDispatchToProps: ?MapDispatchToProps, - mergeProps: MergeProps - ): (component: Com) => ComponentType<$Diff, RMP> & SP & DP & MP>; - - declare export function connect, A, DP: Object, SP: Object, RSP: Object, RDP: Object, MP: Object, RMP: Object>( - mapStateToProps: ?MapStateToProps, - mapDispatchToProps: ?MapDispatchToProps, - mergeProps: ?MergeProps, - options: ConnectOptions<*, SP & DP & MP, RSP, RMP> - ): (component: Com) => ComponentType<$Diff, RMP> & SP & DP & MP>; -} diff --git a/flow-typed/npm/react-redux_v7.x.x.js b/flow-typed/npm/react-redux_v7.x.x.js new file mode 100644 index 00000000..8d95a5e1 --- /dev/null +++ b/flow-typed/npm/react-redux_v7.x.x.js @@ -0,0 +1,297 @@ +// flow-typed signature: d6e8d9a72e906ae26b83c9b33a1a6e56 +// flow-typed version: c6154227d1/react-redux_v7.x.x/flow_>=v0.104.x + +/** +The order of type arguments for connect() is as follows: + +connect(…) + +In Flow v0.89 only the first two are mandatory to specify. Other 4 can be repaced with the new awesome type placeholder: + +connect(…) + +But beware, in case of weird type errors somewhere in random places +just type everything and get to a green field and only then try to +remove the definitions you see bogus. + +Decrypting the abbreviations: + WC = Component being wrapped + S = State + D = Dispatch + OP = OwnProps + SP = StateProps + DP = DispatchProps + MP = Merge props + RSP = Returned state props + RDP = Returned dispatch props + RMP = Returned merge props + CP = Props for returned component + Com = React Component + SS = Selected state + ST = Static properties of Com + EFO = Extra factory options (used only in connectAdvanced) +*/ + +declare module "react-redux" { + // ------------------------------------------------------------ + // Typings for connect() + // ------------------------------------------------------------ + + declare export type Options = {| + pure?: boolean, + forwardRef?: boolean, + areStatesEqual?: (next: S, prev: S) => boolean, + areOwnPropsEqual?: (next: OP, prev: OP) => boolean, + areStatePropsEqual?: (next: SP, prev: SP) => boolean, + areMergedPropsEqual?: (next: MP, prev: MP) => boolean, + storeKey?: string, + |}; + + declare type MapStateToProps<-S, -OP, +SP> = + | ((state: S, ownProps: OP) => SP) + // If you want to use the factory function but get a strange error + // like "function is not an object" then just type the factory function + // like this: + // const factory: (State, OwnProps) => (State, OwnProps) => StateProps + // and provide the StateProps type to the SP type parameter. + | ((state: S, ownProps: OP) => (state: S, ownProps: OP) => SP); + + declare type Bind = ((...A) => R) => (...A) => $Call; + + declare type MapDispatchToPropsFn = + | ((dispatch: D, ownProps: OP) => DP) + // If you want to use the factory function but get a strange error + // like "function is not an object" then just type the factory function + // like this: + // const factory: (Dispatch, OwnProps) => (Dispatch, OwnProps) => DispatchProps + // and provide the DispatchProps type to the DP type parameter. + | ((dispatch: D, ownProps: OP) => (dispatch: D, ownProps: OP) => DP); + + declare class ConnectedComponent extends React$Component { + static +WrappedComponent: WC; + getWrappedInstance(): React$ElementRef; + } + // The connection of the Wrapped Component and the Connected Component + // happens here in `MP: P`. It means that type wise MP belongs to P, + // so to say MP >= P. + declare type Connector = >( + WC, + ) => Class> & WC; + + // No `mergeProps` argument + + // Got error like inexact OwnProps is incompatible with exact object type? + // Just make the OP parameter for `connect()` an exact object. + declare type MergeOP = {| ...$Exact, dispatch: D |}; + declare type MergeOPSP = {| ...$Exact, ...SP, dispatch: D |}; + declare type MergeOPDP = {| ...$Exact, ...DP |}; + declare type MergeOPSPDP = {| ...$Exact, ...SP, ...DP |}; + + declare export function connect<-P, -OP, -SP, -DP, -S, -D>( + mapStateToProps?: null | void, + mapDispatchToProps?: null | void, + mergeProps?: null | void, + options?: ?Options>, + ): Connector>; + + declare export function connect<-P, -OP, -SP, -DP, -S, -D>( + // If you get error here try adding return type to your mapStateToProps function + mapStateToProps: MapStateToProps, + mapDispatchToProps?: null | void, + mergeProps?: null | void, + options?: ?Options>, + ): Connector>; + + // In this case DP is an object of functions which has been bound to dispatch + // by the given mapDispatchToProps function. + declare export function connect<-P, -OP, -SP, -DP, S, D>( + mapStateToProps: null | void, + mapDispatchToProps: MapDispatchToPropsFn, + mergeProps?: null | void, + options?: ?Options>, + ): Connector>; + + // In this case DP is an object of action creators not yet bound to dispatch, + // this difference is not important in the vanila redux, + // but in case of usage with redux-thunk, the return type may differ. + declare export function connect<-P, -OP, -SP, -DP, S, D>( + mapStateToProps: null | void, + mapDispatchToProps: DP, + mergeProps?: null | void, + options?: ?Options>, + ): Connector>>>; + + declare export function connect<-P, -OP, -SP, -DP, S, D>( + // If you get error here try adding return type to your mapStateToProps function + mapStateToProps: MapStateToProps, + mapDispatchToProps: MapDispatchToPropsFn, + mergeProps?: null | void, + options?: ?Options, + ): Connector; + + declare export function connect<-P, -OP, -SP, -DP, S, D>( + // If you get error here try adding return type to your mapStateToProps function + mapStateToProps: MapStateToProps, + mapDispatchToProps: DP, + mergeProps?: null | void, + options?: ?Options>, + ): Connector>>>; + + // With `mergeProps` argument + + declare type MergeProps<+P, -OP, -SP, -DP> = ( + stateProps: SP, + dispatchProps: DP, + ownProps: OP, + ) => P; + + declare export function connect<-P, -OP, -SP: {||}, -DP: {||}, S, D>( + mapStateToProps: null | void, + mapDispatchToProps: null | void, + // If you get error here try adding return type to you mapStateToProps function + mergeProps: MergeProps, + options?: ?Options, + ): Connector; + + declare export function connect<-P, -OP, -SP, -DP: {||}, S, D>( + mapStateToProps: MapStateToProps, + mapDispatchToProps: null | void, + // If you get error here try adding return type to you mapStateToProps function + mergeProps: MergeProps, + options?: ?Options, + ): Connector; + + // In this case DP is an object of functions which has been bound to dispatch + // by the given mapDispatchToProps function. + declare export function connect<-P, -OP, -SP: {||}, -DP, S, D>( + mapStateToProps: null | void, + mapDispatchToProps: MapDispatchToPropsFn, + mergeProps: MergeProps, + options?: ?Options, + ): Connector; + + // In this case DP is an object of action creators not yet bound to dispatch, + // this difference is not important in the vanila redux, + // but in case of usage with redux-thunk, the return type may differ. + declare export function connect<-P, -OP, -SP: {||}, -DP, S, D>( + mapStateToProps: null | void, + mapDispatchToProps: DP, + mergeProps: MergeProps>>, + options?: ?Options, + ): Connector; + + // In this case DP is an object of functions which has been bound to dispatch + // by the given mapDispatchToProps function. + declare export function connect<-P, -OP, -SP, -DP, S, D>( + mapStateToProps: MapStateToProps, + mapDispatchToProps: MapDispatchToPropsFn, + mergeProps: MergeProps, + options?: ?Options, + ): Connector; + + // In this case DP is an object of action creators not yet bound to dispatch, + // this difference is not important in the vanila redux, + // but in case of usage with redux-thunk, the return type may differ. + declare export function connect<-P, -OP, -SP, -DP, S, D>( + mapStateToProps: MapStateToProps, + mapDispatchToProps: DP, + mergeProps: MergeProps>>, + options?: ?Options, + ): Connector; + + // ------------------------------------------------------------ + // Typings for Hooks + // ------------------------------------------------------------ + + declare export function useDispatch(): D; + + declare export function useSelector( + selector: (state: S) => SS, + equalityFn?: (a: SS, b: SS) => boolean, + ): SS; + + declare export function useStore(): Store; + + // ------------------------------------------------------------ + // Typings for Provider + // ------------------------------------------------------------ + + declare export class Provider extends React$Component<{ + store: Store, + children?: React$Node, + ... + }> {} + + declare export function createProvider( + storeKey?: string, + subKey?: string, + ): Class>; + + // ------------------------------------------------------------ + // Typings for connectAdvanced() + // ------------------------------------------------------------ + + declare type ConnectAdvancedOptions = { + getDisplayName?: (name: string) => string, + methodName?: string, + renderCountProp?: string, + shouldHandleStateChanges?: boolean, + storeKey?: string, + forwardRef?: boolean, + ... + }; + + declare type SelectorFactoryOptions = { + getDisplayName: (name: string) => string, + methodName: string, + renderCountProp: ?string, + shouldHandleStateChanges: boolean, + storeKey: string, + forwardRef: boolean, + displayName: string, + wrappedComponentName: string, + WrappedComponent: Com, + ... + }; + + declare type MapStateToPropsEx = ( + state: S, + props: SP, + ) => RSP; + + declare type SelectorFactory< + Com: React$ComponentType<*>, + Dispatch, + S: Object, + OP: Object, + EFO: Object, + CP: Object, + > = ( + dispatch: Dispatch, + factoryOptions: SelectorFactoryOptions & EFO, + ) => MapStateToPropsEx; + + declare export function connectAdvanced< + Com: React$ComponentType<*>, + D, + S: Object, + OP: Object, + CP: Object, + EFO: Object, + ST: { [_: $Keys]: any, ... }, + >( + selectorFactory: SelectorFactory, + connectAdvancedOptions: ?(ConnectAdvancedOptions & EFO), + ): (component: Com) => React$ComponentType & $Shape; + + declare export default { + Provider: typeof Provider, + createProvider: typeof createProvider, + connect: typeof connect, + connectAdvanced: typeof connectAdvanced, + useDispatch: typeof useDispatch, + useSelector: typeof useSelector, + useStore: typeof useStore, + ... + }; +} diff --git a/flow-typed/npm/react-router-dom_v4.x.x.js b/flow-typed/npm/react-router-dom_v5.x.x.js similarity index 50% rename from flow-typed/npm/react-router-dom_v4.x.x.js rename to flow-typed/npm/react-router-dom_v5.x.x.js index 57521300..ea363b8c 100644 --- a/flow-typed/npm/react-router-dom_v4.x.x.js +++ b/flow-typed/npm/react-router-dom_v5.x.x.js @@ -1,39 +1,42 @@ -// flow-typed signature: 7ef7e99bfa7953a438470755d51dc345 -// flow-typed version: 107feb8c45/react-router-dom_v4.x.x/flow_>=v0.53.x +// flow-typed signature: 2731d189e05a35cd2c4a1450f6171dd8 +// flow-typed version: 822e55b7ba/react-router-dom_v5.x.x/flow_>=v0.104.x declare module "react-router-dom" { - declare export class BrowserRouter extends React$Component<{ + declare export var BrowserRouter: React$ComponentType<{| basename?: string, forceRefresh?: boolean, getUserConfirmation?: GetUserConfirmation, keyLength?: number, children?: React$Node - }> {} + |}> - declare export class HashRouter extends React$Component<{ + declare export var HashRouter: React$ComponentType<{| basename?: string, getUserConfirmation?: GetUserConfirmation, hashType?: "slash" | "noslash" | "hashbang", children?: React$Node - }> {} + |}> - declare export class Link extends React$Component<{ + declare export var Link: React$ComponentType<{ + className?: string, to: string | LocationShape, replace?: boolean, - children?: React$Node - }> {} + children?: React$Node, + ... + }> - declare export class NavLink extends React$Component<{ + declare export var NavLink: React$ComponentType<{ to: string | LocationShape, activeClassName?: string, className?: string, - activeStyle?: Object, - style?: Object, + activeStyle?: { +[string]: mixed, ... }, + style?: { +[string]: mixed, ... }, isActive?: (match: Match, location: Location) => boolean, children?: React$Node, exact?: boolean, - strict?: boolean - }> {} + strict?: boolean, + ... + }> // NOTE: Below are duplicated from react-router. If updating these, please // update the react-router and react-router-native types as well. @@ -42,14 +45,16 @@ declare module "react-router-dom" { search: string, hash: string, state?: any, - key?: string + key?: string, + ... }; declare export type LocationShape = { pathname?: string, search?: string, hash?: string, - state?: any + state?: any, + ... }; declare export type HistoryAction = "PUSH" | "REPLACE" | "POP"; @@ -68,91 +73,115 @@ declare module "react-router-dom" { goForward(): void, canGo?: (n: number) => boolean, block( - callback: (location: Location, action: HistoryAction) => boolean - ): void, + callback: string | (location: Location, action: HistoryAction) => ?string + ): () => void, // createMemoryHistory index?: number, - entries?: Array + entries?: Array, + ... }; declare export type Match = { - params: { [key: string]: ?string }, + params: { [key: string]: ?string, ... }, isExact: boolean, path: string, - url: string + url: string, + ... }; declare export type ContextRouter = {| history: RouterHistory, location: Location, - match: Match + match: Match, + staticContext?: StaticRouterContext |}; + declare type ContextRouterVoid = { + history: RouterHistory | void, + location: Location | void, + match: Match | void, + staticContext?: StaticRouterContext | void, + ... + }; + declare export type GetUserConfirmation = ( message: string, callback: (confirmed: boolean) => void ) => void; - declare type StaticRouterContext = { - url?: string - }; + declare export type StaticRouterContext = { url?: string, ... }; - declare export class StaticRouter extends React$Component<{ + declare export var StaticRouter: React$ComponentType<{| basename?: string, location?: string | Location, context: StaticRouterContext, children?: React$Node - }> {} + |}> - declare export class MemoryRouter extends React$Component<{ + declare export var MemoryRouter: React$ComponentType<{| initialEntries?: Array, initialIndex?: number, getUserConfirmation?: GetUserConfirmation, keyLength?: number, children?: React$Node - }> {} + |}> - declare export class Router extends React$Component<{ + declare export var Router: React$ComponentType<{| history: RouterHistory, children?: React$Node - }> {} + |}> - declare export class Prompt extends React$Component<{ + declare export var Prompt: React$ComponentType<{| message: string | ((location: Location) => string | boolean), when?: boolean - }> {} + |}> - declare export class Redirect extends React$Component<{ + declare export var Redirect: React$ComponentType<{| to: string | LocationShape, - push?: boolean - }> {} + push?: boolean, + from?: string, + exact?: boolean, + strict?: boolean + |}> - declare export class Route extends React$Component<{ + declare export var Route: React$ComponentType<{| component?: React$ComponentType<*>, render?: (router: ContextRouter) => React$Node, children?: React$ComponentType | React$Node, - path?: string, + path?: string | Array, exact?: boolean, - strict?: boolean - }> {} + strict?: boolean, + location?: LocationShape, + sensitive?: boolean + |}> - declare export class Switch extends React$Component<{ - children?: React$Node - }> {} + declare export var Switch: React$ComponentType<{| + children?: React$Node, + location?: Location + |}> - declare export function withRouter

( - Component: React$ComponentType<{| ...ContextRouter, ...P |}> - ): React$ComponentType

; + declare export function withRouter>( + WrappedComponent: Component + ): React$ComponentType<$Diff, ContextRouterVoid>>; declare type MatchPathOptions = { - path?: string, + path?: string | string[], exact?: boolean, sensitive?: boolean, - strict?: boolean + strict?: boolean, + ... }; declare export function matchPath( pathname: string, - options?: MatchPathOptions | string + options?: MatchPathOptions | string | string[], + parent?: Match ): null | Match; + + declare export function useHistory(): $PropertyType; + declare export function useLocation(): $PropertyType; + declare export function useParams(): $PropertyType<$PropertyType, 'params'>; + declare export function useRouteMatch(path?: MatchPathOptions | string | string[]): $PropertyType; + + declare export function generatePath(pattern?: string, params?: { +[string]: mixed, ... }): string; } diff --git a/flow-typed/npm/react-router-redux_vx.x.x.js b/flow-typed/npm/react-router-redux_vx.x.x.js deleted file mode 100644 index cbc1c720..00000000 --- a/flow-typed/npm/react-router-redux_vx.x.x.js +++ /dev/null @@ -1,122 +0,0 @@ -// flow-typed signature: 745c3d09cfb6878b75900da197effc4a -// flow-typed version: <>/react-router-redux_v^5.0.0-alpha.9/flow_v0.66.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'react-router-redux' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'react-router-redux' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'react-router-redux/actions' { - declare module.exports: any; -} - -declare module 'react-router-redux/ConnectedRouter' { - declare module.exports: any; -} - -declare module 'react-router-redux/es/actions' { - declare module.exports: any; -} - -declare module 'react-router-redux/es/ConnectedRouter' { - declare module.exports: any; -} - -declare module 'react-router-redux/es/index' { - declare module.exports: any; -} - -declare module 'react-router-redux/es/middleware' { - declare module.exports: any; -} - -declare module 'react-router-redux/es/reducer' { - declare module.exports: any; -} - -declare module 'react-router-redux/es/selectors' { - declare module.exports: any; -} - -declare module 'react-router-redux/middleware' { - declare module.exports: any; -} - -declare module 'react-router-redux/reducer' { - declare module.exports: any; -} - -declare module 'react-router-redux/selectors' { - declare module.exports: any; -} - -declare module 'react-router-redux/umd/react-router-redux' { - declare module.exports: any; -} - -declare module 'react-router-redux/umd/react-router-redux.min' { - declare module.exports: any; -} - -// Filename aliases -declare module 'react-router-redux/actions.js' { - declare module.exports: $Exports<'react-router-redux/actions'>; -} -declare module 'react-router-redux/ConnectedRouter.js' { - declare module.exports: $Exports<'react-router-redux/ConnectedRouter'>; -} -declare module 'react-router-redux/es/actions.js' { - declare module.exports: $Exports<'react-router-redux/es/actions'>; -} -declare module 'react-router-redux/es/ConnectedRouter.js' { - declare module.exports: $Exports<'react-router-redux/es/ConnectedRouter'>; -} -declare module 'react-router-redux/es/index.js' { - declare module.exports: $Exports<'react-router-redux/es/index'>; -} -declare module 'react-router-redux/es/middleware.js' { - declare module.exports: $Exports<'react-router-redux/es/middleware'>; -} -declare module 'react-router-redux/es/reducer.js' { - declare module.exports: $Exports<'react-router-redux/es/reducer'>; -} -declare module 'react-router-redux/es/selectors.js' { - declare module.exports: $Exports<'react-router-redux/es/selectors'>; -} -declare module 'react-router-redux/index' { - declare module.exports: $Exports<'react-router-redux'>; -} -declare module 'react-router-redux/index.js' { - declare module.exports: $Exports<'react-router-redux'>; -} -declare module 'react-router-redux/middleware.js' { - declare module.exports: $Exports<'react-router-redux/middleware'>; -} -declare module 'react-router-redux/reducer.js' { - declare module.exports: $Exports<'react-router-redux/reducer'>; -} -declare module 'react-router-redux/selectors.js' { - declare module.exports: $Exports<'react-router-redux/selectors'>; -} -declare module 'react-router-redux/umd/react-router-redux.js' { - declare module.exports: $Exports<'react-router-redux/umd/react-router-redux'>; -} -declare module 'react-router-redux/umd/react-router-redux.min.js' { - declare module.exports: $Exports<'react-router-redux/umd/react-router-redux.min'>; -} diff --git a/flow-typed/npm/redux-actions_v2.x.x.js b/flow-typed/npm/redux-actions_v2.x.x.js index 69dd1084..955b9be6 100644 --- a/flow-typed/npm/redux-actions_v2.x.x.js +++ b/flow-typed/npm/redux-actions_v2.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 0d100808ca0e414fd249523ecc748952 -// flow-typed version: a33adf9931/redux-actions_v2.x.x/flow_>=v0.39.x +// flow-typed signature: cc79d0172736279836e84ac1499e7369 +// flow-typed version: c6154227d1/redux-actions_v2.x.x/flow_>=v0.104.x declare module "redux-actions" { /* @@ -29,28 +29,66 @@ declare module "redux-actions" { declare function createAction( type: T, $?: empty // hack to force Flow to not use this signature when more than one argument is given - ): {(payload: P, ...rest: any[]): { type: T, payload: P, error?: boolean }, toString: () => T}; + ): { + (payload: P, ...rest: any[]): { + type: T, + payload: P, + error?: boolean, + ... + }, + +toString: () => T, + ... + }; declare function createAction( type: T, - payloadCreator: (...rest: A) => P, + payloadCreator: (...rest: A) => Promise

| P, $?: empty - ): {(...rest: A): { type: T, payload: P, error?: boolean }, toString: () => T}; + ): { + (...rest: A): { + type: T, + payload: P, + error?: boolean, + ... + }, + +toString: () => T, + ... + }; declare function createAction( type: T, - payloadCreator: (...rest: A) => P, + payloadCreator: (...rest: A) => Promise

| P, metaCreator: (...rest: A) => M - ): {(...rest: A): { type: T, payload: P, error?: boolean, meta: M }, toString: () => T}; + ): { + (...rest: A): { + type: T, + payload: P, + error?: boolean, + meta: M, + ... + }, + +toString: () => T, + ... + }; declare function createAction( type: T, payloadCreator: null | void, metaCreator: (payload: P, ...rest: any[]) => M - ): {( + ): { + ( + payload: P, + ...rest: any[] + ): { + type: T, payload: P, - ...rest: any[] - ): { type: T, payload: P, error?: boolean, meta: M }, toString: () => T}; + error?: boolean, + meta: M, + ... + }, + +toString: () => T, + ... + }; // `createActions` is quite difficult to write a type for. Maybe try not to // use this one? @@ -60,12 +98,31 @@ declare module "redux-actions" { ): Object; declare function createActions(...identityActions: string[]): Object; + /* + * The semantics of the reducer (i.e. ReduxReducer) returned by either + * `handleAction` or `handleActions` are actually different from the semantics + * of the reducer (i.e. Reducer) that are consumed by either `handleAction` + * or `handleActions`. + * + * Reducers (i.e. Reducer) consumed by either `handleAction` or `handleActions` + * are assumed to be given the actual `State` type, since internally, + * `redux-actions` will perform the action type matching for us, and will always + * provide the expected state type. + * + * The reducers returned by either `handleAction` or `handleActions` will be + * compatible with the `redux` library. + */ declare type Reducer = (state: S, action: A) => S; + declare type ReduxReducer = (state: S | void, action: A) => S; declare type ReducerMap = - | { next: Reducer } - | { throw: Reducer } - | { next: Reducer, throw: Reducer }; + | { next: Reducer, ... } + | { throw: Reducer, ... } + | { + next: Reducer, + throw: Reducer, + ... + }; /* * To get full advantage from Flow, use a type annotation on the action @@ -73,7 +130,7 @@ declare module "redux-actions" { * `handleActions`. For example: * * import { type Reducer } from 'redux' - * import { createAction, handleAction, type Action } from 'redux-actions' + * import { createAction, handleAction, type ActionType } from 'redux-actions' * * const increment = createAction(INCREMENT, (count: number) => count) * @@ -82,24 +139,20 @@ declare module "redux-actions" { * }, defaultState) */ - declare type ReducerDefinition = { - [key: string]: - | (Reducer | ReducerDefinition) - | ReducerMap - }; + declare type ReducerDefinition = { [key: string]: + | (Reducer | ReducerDefinition) + | ReducerMap, ... }; - declare function handleAction( - type: Type, + declare function handleAction( + type: $ElementType, reducer: ReducerDefinition, - defaultState: State - ): Reducer; + defaultState: State, + ): ReduxReducer; declare function handleActions( - reducers: { - [key: string]: Reducer | ReducerMap - }, + reducers: { [key: string]: Reducer | ReducerMap, ... }, defaultState?: State - ): Reducer; + ): ReduxReducer; declare function combineActions( ...types: (string | Symbol | Function)[] diff --git a/flow-typed/npm/redux-thunk_vx.x.x.js b/flow-typed/npm/redux-thunk_vx.x.x.js index ad8b1d77..8bafc14f 100644 --- a/flow-typed/npm/redux-thunk_vx.x.x.js +++ b/flow-typed/npm/redux-thunk_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 6d66322fcd005cac32bee606dc6ac879 -// flow-typed version: <>/redux-thunk_v^2.2.0/flow_v0.66.0 +// flow-typed signature: 534cc44290ecb51ca6c58c064dc82788 +// flow-typed version: <>/redux-thunk_v^2.3.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -30,15 +30,15 @@ declare module 'redux-thunk/dist/redux-thunk.min' { declare module.exports: any; } -declare module 'redux-thunk/es/index' { +declare module 'redux-thunk/es' { declare module.exports: any; } -declare module 'redux-thunk/lib/index' { +declare module 'redux-thunk/lib' { declare module.exports: any; } -declare module 'redux-thunk/src/index' { +declare module 'redux-thunk/src' { declare module.exports: any; } @@ -49,12 +49,21 @@ declare module 'redux-thunk/dist/redux-thunk.js' { declare module 'redux-thunk/dist/redux-thunk.min.js' { declare module.exports: $Exports<'redux-thunk/dist/redux-thunk.min'>; } +declare module 'redux-thunk/es/index' { + declare module.exports: $Exports<'redux-thunk/es'>; +} declare module 'redux-thunk/es/index.js' { - declare module.exports: $Exports<'redux-thunk/es/index'>; + declare module.exports: $Exports<'redux-thunk/es'>; +} +declare module 'redux-thunk/lib/index' { + declare module.exports: $Exports<'redux-thunk/lib'>; } declare module 'redux-thunk/lib/index.js' { - declare module.exports: $Exports<'redux-thunk/lib/index'>; + declare module.exports: $Exports<'redux-thunk/lib'>; +} +declare module 'redux-thunk/src/index' { + declare module.exports: $Exports<'redux-thunk/src'>; } declare module 'redux-thunk/src/index.js' { - declare module.exports: $Exports<'redux-thunk/src/index'>; + declare module.exports: $Exports<'redux-thunk/src'>; } diff --git a/flow-typed/npm/redux_v3.x.x.js b/flow-typed/npm/redux_v3.x.x.js deleted file mode 100644 index e69de29b..00000000 diff --git a/flow-typed/npm/redux_v4.x.x.js b/flow-typed/npm/redux_v4.x.x.js new file mode 100644 index 00000000..4ba5f34b --- /dev/null +++ b/flow-typed/npm/redux_v4.x.x.js @@ -0,0 +1,99 @@ +// flow-typed signature: f62df6dbce399d55b0f2954c5ac1bd4e +// flow-typed version: c6154227d1/redux_v4.x.x/flow_>=v0.104.x + +declare module 'redux' { + /* + + S = State + A = Action + D = Dispatch + + */ + + declare export type Action = { type: T, ... } + + declare export type DispatchAPI = (action: A) => A; + + declare export type Dispatch = DispatchAPI; + + declare export type MiddlewareAPI> = { + dispatch: D, + getState(): S, + ... + }; + + declare export type Store> = { + // rewrite MiddlewareAPI members in order to get nicer error messages (intersections produce long messages) + dispatch: D, + getState(): S, + subscribe(listener: () => void): () => void, + replaceReducer(nextReducer: Reducer): void, + ... + }; + + declare export type Reducer = (state: S | void, action: A) => S; + + declare export type CombinedReducer = ( + state: ($Shape & {...}) | void, + action: A + ) => S; + + declare export type Middleware> = ( + api: MiddlewareAPI + ) => (next: D) => D; + + declare export type StoreCreator> = { + (reducer: Reducer, enhancer?: StoreEnhancer): Store, + ( + reducer: Reducer, + preloadedState: S, + enhancer?: StoreEnhancer + ): Store, + ... + }; + + declare export type StoreEnhancer> = ( + next: StoreCreator + ) => StoreCreator; + + declare export function createStore( + reducer: Reducer, + enhancer?: StoreEnhancer + ): Store; + declare export function createStore( + reducer: Reducer, + preloadedState?: S, + enhancer?: StoreEnhancer + ): Store; + + declare export function applyMiddleware( + ...middlewares: Array> + ): StoreEnhancer; + + declare export type ActionCreator = (...args: Array) => A; + declare export type ActionCreators = { [key: K]: ActionCreator, ... }; + + declare export function bindActionCreators< + A, + C: ActionCreator, + D: DispatchAPI + >( + actionCreator: C, + dispatch: D + ): C; + declare export function bindActionCreators< + A, + K, + C: ActionCreators, + D: DispatchAPI + >( + actionCreators: C, + dispatch: D + ): C; + + declare export function combineReducers( + reducers: O + ): CombinedReducer<$ObjMap(r: Reducer) => S>, A>; + + declare export var compose: $Compose; +} diff --git a/flow-typed/npm/reselect_v3.x.x.js b/flow-typed/npm/reselect_v3.x.x.js deleted file mode 100644 index d1a71241..00000000 --- a/flow-typed/npm/reselect_v3.x.x.js +++ /dev/null @@ -1,890 +0,0 @@ -// flow-typed signature: 7242133add1d3bd16fc3e9d648152c63 -// flow-typed version: 00301f0d29/reselect_v3.x.x/flow_>=v0.47.x - -// flow-typed signature: 0199525b667f385f2e61dbeae3215f21 -// flow-typed version: b43dff3e0e/reselect_v3.x.x/flow_>=v0.28.x - -declare module "reselect" { - declare type Selector<-TState, TProps, TResult> = - (state: TState, props: TProps, ...rest: any[]) => TResult - - declare type SelectorCreator = { - ( - selector1: Selector, - resultFunc: (arg1: T1) => TResult - ): Selector, - ( - selectors: [Selector], - resultFunc: (arg1: T1) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - resultFunc: (arg1: T1, arg2: T2) => TResult - ): Selector, - ( - selectors: [Selector, Selector], - resultFunc: (arg1: T1, arg2: T2) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - selector3: Selector, - resultFunc: (arg1: T1, arg2: T2, arg3: T3) => TResult - ): Selector, - ( - selectors: [ - Selector, - Selector, - Selector - ], - resultFunc: (arg1: T1, arg2: T2, arg3: T3) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - resultFunc: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => TResult - ): Selector, - ( - selectors: [ - Selector, - Selector, - Selector, - Selector - ], - resultFunc: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - resultFunc: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => TResult - ): Selector, - ( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6 - ) => TResult - ): Selector, - ( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6 - ) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7 - ) => TResult - ): Selector, - ( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7 - ) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - selector8: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8 - ) => TResult - ): Selector, - ( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8 - ) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - selector8: Selector, - selector9: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9 - ) => TResult - ): Selector, - ( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9 - ) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - selector8: Selector, - selector9: Selector, - selector10: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10 - ) => TResult - ): Selector, - ( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10 - ) => TResult - ): Selector, - - ( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - selector8: Selector, - selector9: Selector, - selector10: Selector, - selector11: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11 - ) => TResult - ): Selector, - ( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11 - ) => TResult - ): Selector, - - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12 - >( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - selector8: Selector, - selector9: Selector, - selector10: Selector, - selector11: Selector, - selector12: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12 - ) => TResult - ): Selector, - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12 - >( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12 - ) => TResult - ): Selector, - - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12, - T13 - >( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - selector8: Selector, - selector9: Selector, - selector10: Selector, - selector11: Selector, - selector12: Selector, - selector13: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12, - arg13: T13 - ) => TResult - ): Selector, - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12, - T13 - >( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12, - arg13: T13 - ) => TResult - ): Selector, - - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12, - T13, - T14 - >( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - selector8: Selector, - selector9: Selector, - selector10: Selector, - selector11: Selector, - selector12: Selector, - selector13: Selector, - selector14: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12, - arg13: T13, - arg14: T14 - ) => TResult - ): Selector, - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12, - T13, - T14 - >( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12, - arg13: T13, - arg14: T14 - ) => TResult - ): Selector, - - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12, - T13, - T14, - T15 - >( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - selector8: Selector, - selector9: Selector, - selector10: Selector, - selector11: Selector, - selector12: Selector, - selector13: Selector, - selector14: Selector, - selector15: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12, - arg13: T13, - arg14: T14, - arg15: T15 - ) => TResult - ): Selector, - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12, - T13, - T14, - T15 - >( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12, - arg13: T13, - arg14: T14, - arg15: T15 - ) => TResult - ): Selector, - - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12, - T13, - T14, - T15, - T16 - >( - selector1: Selector, - selector2: Selector, - selector3: Selector, - selector4: Selector, - selector5: Selector, - selector6: Selector, - selector7: Selector, - selector8: Selector, - selector9: Selector, - selector10: Selector, - selector11: Selector, - selector12: Selector, - selector13: Selector, - selector14: Selector, - selector15: Selector, - selector16: Selector, - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12, - arg13: T13, - arg14: T14, - arg15: T15, - arg16: T16 - ) => TResult - ): Selector, - < - TState, - TProps, - TResult, - T1, - T2, - T3, - T4, - T5, - T6, - T7, - T8, - T9, - T10, - T11, - T12, - T13, - T14, - T15, - T16 - >( - selectors: [ - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector, - Selector - ], - resultFunc: ( - arg1: T1, - arg2: T2, - arg3: T3, - arg4: T4, - arg5: T5, - arg6: T6, - arg7: T7, - arg8: T8, - arg9: T9, - arg10: T10, - arg11: T11, - arg12: T12, - arg13: T13, - arg14: T14, - arg15: T15, - arg16: T16 - ) => TResult - ): Selector - }; - - declare type Reselect = { - createSelector: SelectorCreator, - - defaultMemoize: ( - func: TFunc, - equalityCheck?: (a: any, b: any) => boolean - ) => TFunc, - - createSelectorCreator: ( - memoize: Function, - ...memoizeOptions: any[] - ) => SelectorCreator, - - createStructuredSelector: ( - inputSelectors: { - [k: string | number]: Selector - }, - selectorCreator?: SelectorCreator - ) => Selector - }; - - declare module.exports: Reselect; -} diff --git a/flow-typed/npm/reselect_v4.x.x.js b/flow-typed/npm/reselect_v4.x.x.js new file mode 100644 index 00000000..7a93da00 --- /dev/null +++ b/flow-typed/npm/reselect_v4.x.x.js @@ -0,0 +1,880 @@ +// flow-typed signature: 6e52cb2cbf619ada2372cc5ec183f876 +// flow-typed version: 89b0d35e3a/reselect_v4.x.x/flow_>=v0.104.x + +type ExtractReturnType = ((...rest: any[]) => Return) => Return; + +declare module "reselect" { + declare type InputSelector<-TState, TProps, TResult> = + (state: TState, props: TProps, ...rest: any[]) => TResult + + declare type OutputSelector<-TState, TProps, TResult> = + & InputSelector + & { + recomputations(): number, + resetRecomputations(): number, + resultFunc(...args: any[]): TResult, + ... + }; + + declare type SelectorCreator = { + ( + selector1: InputSelector, + resultFunc: (arg1: T1) => TResult + ): OutputSelector, + ( + selectors: [InputSelector], + resultFunc: (arg1: T1) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + resultFunc: (arg1: T1, arg2: T2) => TResult + ): OutputSelector, + ( + selectors: [InputSelector, InputSelector], + resultFunc: (arg1: T1, arg2: T2) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + resultFunc: (arg1: T1, arg2: T2, arg3: T3) => TResult + ): OutputSelector, + ( + selectors: [ + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: (arg1: T1, arg2: T2, arg3: T3) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + resultFunc: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => TResult + ): OutputSelector, + ( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: (arg1: T1, arg2: T2, arg3: T3, arg4: T4) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + resultFunc: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => TResult + ): OutputSelector, + ( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: (arg1: T1, arg2: T2, arg3: T3, arg4: T4, arg5: T5) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6 + ) => TResult + ): OutputSelector, + ( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6 + ) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7 + ) => TResult + ): OutputSelector, + ( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7 + ) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + selector8: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8 + ) => TResult + ): OutputSelector, + ( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8 + ) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + selector8: InputSelector, + selector9: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9 + ) => TResult + ): OutputSelector, + ( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9 + ) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + selector8: InputSelector, + selector9: InputSelector, + selector10: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10 + ) => TResult + ): OutputSelector, + ( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10 + ) => TResult + ): OutputSelector, + ( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + selector8: InputSelector, + selector9: InputSelector, + selector10: InputSelector, + selector11: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11 + ) => TResult + ): OutputSelector, + ( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12 + >( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + selector8: InputSelector, + selector9: InputSelector, + selector10: InputSelector, + selector11: InputSelector, + selector12: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12 + >( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12, + T13 + >( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + selector8: InputSelector, + selector9: InputSelector, + selector10: InputSelector, + selector11: InputSelector, + selector12: InputSelector, + selector13: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12, + arg13: T13 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12, + T13 + >( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12, + arg13: T13 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12, + T13, + T14 + >( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + selector8: InputSelector, + selector9: InputSelector, + selector10: InputSelector, + selector11: InputSelector, + selector12: InputSelector, + selector13: InputSelector, + selector14: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12, + arg13: T13, + arg14: T14 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12, + T13, + T14 + >( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12, + arg13: T13, + arg14: T14 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12, + T13, + T14, + T15 + >( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + selector8: InputSelector, + selector9: InputSelector, + selector10: InputSelector, + selector11: InputSelector, + selector12: InputSelector, + selector13: InputSelector, + selector14: InputSelector, + selector15: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12, + arg13: T13, + arg14: T14, + arg15: T15 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12, + T13, + T14, + T15 + >( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12, + arg13: T13, + arg14: T14, + arg15: T15 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12, + T13, + T14, + T15, + T16 + >( + selector1: InputSelector, + selector2: InputSelector, + selector3: InputSelector, + selector4: InputSelector, + selector5: InputSelector, + selector6: InputSelector, + selector7: InputSelector, + selector8: InputSelector, + selector9: InputSelector, + selector10: InputSelector, + selector11: InputSelector, + selector12: InputSelector, + selector13: InputSelector, + selector14: InputSelector, + selector15: InputSelector, + selector16: InputSelector, + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12, + arg13: T13, + arg14: T14, + arg15: T15, + arg16: T16 + ) => TResult + ): OutputSelector, + < + TState, + TProps, + TResult, + T1, + T2, + T3, + T4, + T5, + T6, + T7, + T8, + T9, + T10, + T11, + T12, + T13, + T14, + T15, + T16 + >( + selectors: [ + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector, + InputSelector + ], + resultFunc: ( + arg1: T1, + arg2: T2, + arg3: T3, + arg4: T4, + arg5: T5, + arg6: T6, + arg7: T7, + arg8: T8, + arg9: T9, + arg10: T10, + arg11: T11, + arg12: T12, + arg13: T13, + arg14: T14, + arg15: T15, + arg16: T16 + ) => TResult + ): OutputSelector, + ... + }; + + declare type Reselect = { + createSelector: SelectorCreator, + defaultMemoize: ( + func: TFunc, + equalityCheck?: (a: any, b: any) => boolean + ) => TFunc, + createSelectorCreator: ( + memoize: Function, + ...memoizeOptions: any[] + ) => SelectorCreator, + createStructuredSelector: , ... }>( + inputSelectors: InputSelectors, + selectorCreator?: SelectorCreator + ) => OutputSelector>, + ... + }; + + declare module.exports: Reselect; +} diff --git a/flow-typed/npm/@babel/preset-stage-0_vx.x.x.js b/flow-typed/npm/run-with-testrpc_vx.x.x.js similarity index 57% rename from flow-typed/npm/@babel/preset-stage-0_vx.x.x.js rename to flow-typed/npm/run-with-testrpc_vx.x.x.js index e175987b..0853ad40 100644 --- a/flow-typed/npm/@babel/preset-stage-0_vx.x.x.js +++ b/flow-typed/npm/run-with-testrpc_vx.x.x.js @@ -1,10 +1,10 @@ -// flow-typed signature: 38fbecc2956b1d40ac62ac667a41e3d6 -// flow-typed version: <>/@babel/preset-stage-0_v^7.0.0-beta.40/flow_v0.66.0 +// flow-typed signature: fec3be1b4a65dfea6545024fdcb3f5fd +// flow-typed version: <>/run-with-testrpc_v0.3.1/flow_v0.112.0 /** * This is an autogenerated libdef stub for: * - * '@babel/preset-stage-0' + * 'run-with-testrpc' * * Fill this stub out by replacing all the `any` types. * @@ -13,7 +13,7 @@ * https://github.com/flowtype/flow-typed */ -declare module '@babel/preset-stage-0' { +declare module 'run-with-testrpc' { declare module.exports: any; } @@ -22,11 +22,11 @@ declare module '@babel/preset-stage-0' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module '@babel/preset-stage-0/lib/index' { +declare module 'run-with-testrpc/bin/run-with-testrpc' { declare module.exports: any; } // Filename aliases -declare module '@babel/preset-stage-0/lib/index.js' { - declare module.exports: $Exports<'@babel/preset-stage-0/lib/index'>; +declare module 'run-with-testrpc/bin/run-with-testrpc.js' { + declare module.exports: $Exports<'run-with-testrpc/bin/run-with-testrpc'>; } diff --git a/flow-typed/npm/squarelink_vx.x.x.js b/flow-typed/npm/squarelink_vx.x.x.js new file mode 100644 index 00000000..ad37fc2a --- /dev/null +++ b/flow-typed/npm/squarelink_vx.x.x.js @@ -0,0 +1,98 @@ +// flow-typed signature: 7488a0e2e38d5417e371f62c9655f90d +// flow-typed version: <>/squarelink_v^1.1.3/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'squarelink' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'squarelink' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'squarelink/dist/config' { + declare module.exports: any; +} + +declare module 'squarelink/dist/error' { + declare module.exports: any; +} + +declare module 'squarelink/dist/iframe' { + declare module.exports: any; +} + +declare module 'squarelink/dist' { + declare module.exports: any; +} + +declare module 'squarelink/dist/networks' { + declare module.exports: any; +} + +declare module 'squarelink/dist/popup' { + declare module.exports: any; +} + +declare module 'squarelink/dist/styles' { + declare module.exports: any; +} + +declare module 'squarelink/dist/util' { + declare module.exports: any; +} + +declare module 'squarelink/dist/walletMethods' { + declare module.exports: any; +} + +declare module 'squarelink/lib/squarelink.min' { + declare module.exports: any; +} + +// Filename aliases +declare module 'squarelink/dist/config.js' { + declare module.exports: $Exports<'squarelink/dist/config'>; +} +declare module 'squarelink/dist/error.js' { + declare module.exports: $Exports<'squarelink/dist/error'>; +} +declare module 'squarelink/dist/iframe.js' { + declare module.exports: $Exports<'squarelink/dist/iframe'>; +} +declare module 'squarelink/dist/index' { + declare module.exports: $Exports<'squarelink/dist'>; +} +declare module 'squarelink/dist/index.js' { + declare module.exports: $Exports<'squarelink/dist'>; +} +declare module 'squarelink/dist/networks.js' { + declare module.exports: $Exports<'squarelink/dist/networks'>; +} +declare module 'squarelink/dist/popup.js' { + declare module.exports: $Exports<'squarelink/dist/popup'>; +} +declare module 'squarelink/dist/styles.js' { + declare module.exports: $Exports<'squarelink/dist/styles'>; +} +declare module 'squarelink/dist/util.js' { + declare module.exports: $Exports<'squarelink/dist/util'>; +} +declare module 'squarelink/dist/walletMethods.js' { + declare module.exports: $Exports<'squarelink/dist/walletMethods'>; +} +declare module 'squarelink/lib/squarelink.min.js' { + declare module.exports: $Exports<'squarelink/lib/squarelink.min'>; +} diff --git a/flow-typed/npm/storybook-host_v4.x.x.js b/flow-typed/npm/storybook-host_v4.x.x.js deleted file mode 100644 index 1283c792..00000000 --- a/flow-typed/npm/storybook-host_v4.x.x.js +++ /dev/null @@ -1,23 +0,0 @@ -// flow-typed signature: 26d5f1a6f2ea08c6adaea50d44628e9e -// flow-typed version: 0c975ef003/storybook-host_v4.x.x/flow_>=v0.54.1 - -declare module 'storybook-host' { - declare type Props = {| - mobXDevTools?:boolean, - title?:string, - hr?:boolean, - align?:string, - height?:number | string, - width?:number | string, - background?:boolean | number | string, - backdrop?:boolean | number | string, - cropMarks?:boolean, - border?:boolean | number | string, - padding?:number | string - |}; - - declare export function host(props: Props): ( - story: () => React$Element, - context?: { kind: string, story: string } - ) => React$Element; -} diff --git a/flow-typed/npm/storybook-host_vx.x.x.js b/flow-typed/npm/storybook-host_vx.x.x.js new file mode 100644 index 00000000..6a8b75f8 --- /dev/null +++ b/flow-typed/npm/storybook-host_vx.x.x.js @@ -0,0 +1,249 @@ +// flow-typed signature: 48ec61af419d1ece506839678031f356 +// flow-typed version: <>/storybook-host_v5.1.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'storybook-host' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'storybook-host' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'storybook-host/lib/common/alignment' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/color' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/css/css' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/css/glamor' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/css' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/css/test/css-flex.test' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/css/test/css-image.test' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/css/test/css-positioning.test' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/css/test/css-spacing.test' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/css/test/css.test' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/css/types' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/libs' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/common/util' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/components/AlignmentContainer/AlignmentContainer' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/components/AlignmentContainer/ComponentHost.stories' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/components/AlignmentContainer' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/components/ComponentHost/ComponentHost' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/components/ComponentHost/ComponentHost.stories' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/components/ComponentHost' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/components/CropMarks/CropMark' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/components/CropMarks/CropMarks' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/components/CropMarks' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/decorators/host' { + declare module.exports: any; +} + +declare module 'storybook-host/lib' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/index.test' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/test/Foo' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/test' { + declare module.exports: any; +} + +declare module 'storybook-host/lib/types' { + declare module.exports: any; +} + +// Filename aliases +declare module 'storybook-host/lib/common/alignment.js' { + declare module.exports: $Exports<'storybook-host/lib/common/alignment'>; +} +declare module 'storybook-host/lib/common/color.js' { + declare module.exports: $Exports<'storybook-host/lib/common/color'>; +} +declare module 'storybook-host/lib/common/css/css.js' { + declare module.exports: $Exports<'storybook-host/lib/common/css/css'>; +} +declare module 'storybook-host/lib/common/css/glamor.js' { + declare module.exports: $Exports<'storybook-host/lib/common/css/glamor'>; +} +declare module 'storybook-host/lib/common/css/index' { + declare module.exports: $Exports<'storybook-host/lib/common/css'>; +} +declare module 'storybook-host/lib/common/css/index.js' { + declare module.exports: $Exports<'storybook-host/lib/common/css'>; +} +declare module 'storybook-host/lib/common/css/test/css-flex.test.js' { + declare module.exports: $Exports<'storybook-host/lib/common/css/test/css-flex.test'>; +} +declare module 'storybook-host/lib/common/css/test/css-image.test.js' { + declare module.exports: $Exports<'storybook-host/lib/common/css/test/css-image.test'>; +} +declare module 'storybook-host/lib/common/css/test/css-positioning.test.js' { + declare module.exports: $Exports<'storybook-host/lib/common/css/test/css-positioning.test'>; +} +declare module 'storybook-host/lib/common/css/test/css-spacing.test.js' { + declare module.exports: $Exports<'storybook-host/lib/common/css/test/css-spacing.test'>; +} +declare module 'storybook-host/lib/common/css/test/css.test.js' { + declare module.exports: $Exports<'storybook-host/lib/common/css/test/css.test'>; +} +declare module 'storybook-host/lib/common/css/types.js' { + declare module.exports: $Exports<'storybook-host/lib/common/css/types'>; +} +declare module 'storybook-host/lib/common/index' { + declare module.exports: $Exports<'storybook-host/lib/common'>; +} +declare module 'storybook-host/lib/common/index.js' { + declare module.exports: $Exports<'storybook-host/lib/common'>; +} +declare module 'storybook-host/lib/common/libs.js' { + declare module.exports: $Exports<'storybook-host/lib/common/libs'>; +} +declare module 'storybook-host/lib/common/util.js' { + declare module.exports: $Exports<'storybook-host/lib/common/util'>; +} +declare module 'storybook-host/lib/components/AlignmentContainer/AlignmentContainer.js' { + declare module.exports: $Exports<'storybook-host/lib/components/AlignmentContainer/AlignmentContainer'>; +} +declare module 'storybook-host/lib/components/AlignmentContainer/ComponentHost.stories.js' { + declare module.exports: $Exports<'storybook-host/lib/components/AlignmentContainer/ComponentHost.stories'>; +} +declare module 'storybook-host/lib/components/AlignmentContainer/index' { + declare module.exports: $Exports<'storybook-host/lib/components/AlignmentContainer'>; +} +declare module 'storybook-host/lib/components/AlignmentContainer/index.js' { + declare module.exports: $Exports<'storybook-host/lib/components/AlignmentContainer'>; +} +declare module 'storybook-host/lib/components/ComponentHost/ComponentHost.js' { + declare module.exports: $Exports<'storybook-host/lib/components/ComponentHost/ComponentHost'>; +} +declare module 'storybook-host/lib/components/ComponentHost/ComponentHost.stories.js' { + declare module.exports: $Exports<'storybook-host/lib/components/ComponentHost/ComponentHost.stories'>; +} +declare module 'storybook-host/lib/components/ComponentHost/index' { + declare module.exports: $Exports<'storybook-host/lib/components/ComponentHost'>; +} +declare module 'storybook-host/lib/components/ComponentHost/index.js' { + declare module.exports: $Exports<'storybook-host/lib/components/ComponentHost'>; +} +declare module 'storybook-host/lib/components/CropMarks/CropMark.js' { + declare module.exports: $Exports<'storybook-host/lib/components/CropMarks/CropMark'>; +} +declare module 'storybook-host/lib/components/CropMarks/CropMarks.js' { + declare module.exports: $Exports<'storybook-host/lib/components/CropMarks/CropMarks'>; +} +declare module 'storybook-host/lib/components/CropMarks/index' { + declare module.exports: $Exports<'storybook-host/lib/components/CropMarks'>; +} +declare module 'storybook-host/lib/components/CropMarks/index.js' { + declare module.exports: $Exports<'storybook-host/lib/components/CropMarks'>; +} +declare module 'storybook-host/lib/decorators/host.js' { + declare module.exports: $Exports<'storybook-host/lib/decorators/host'>; +} +declare module 'storybook-host/lib/index' { + declare module.exports: $Exports<'storybook-host/lib'>; +} +declare module 'storybook-host/lib/index.js' { + declare module.exports: $Exports<'storybook-host/lib'>; +} +declare module 'storybook-host/lib/index.test.js' { + declare module.exports: $Exports<'storybook-host/lib/index.test'>; +} +declare module 'storybook-host/lib/test/Foo.js' { + declare module.exports: $Exports<'storybook-host/lib/test/Foo'>; +} +declare module 'storybook-host/lib/test/index' { + declare module.exports: $Exports<'storybook-host/lib/test'>; +} +declare module 'storybook-host/lib/test/index.js' { + declare module.exports: $Exports<'storybook-host/lib/test'>; +} +declare module 'storybook-host/lib/types.js' { + declare module.exports: $Exports<'storybook-host/lib/types'>; +} diff --git a/flow-typed/npm/storybook-router_v0.x.x.js b/flow-typed/npm/storybook-router_v0.x.x.js index 77752830..f8649d0e 100644 --- a/flow-typed/npm/storybook-router_v0.x.x.js +++ b/flow-typed/npm/storybook-router_v0.x.x.js @@ -1,13 +1,12 @@ -// flow-typed signature: b2706d3b0f5dd8a525bfb666480ca78b -// flow-typed version: 3b9d983701/storybook-router_v0.x.x/flow_>=v0.25.x - -import type { Element } from "react"; +// flow-typed signature: c2d42e89f2eeb1cdff2d4d7dea9fd97b +// flow-typed version: c6154227d1/storybook-router_v0.x.x/flow_>=v0.104.x type LocationShape = { pathname?: string, search?: string, hash?: string, - state?: any + state?: any, + ... }; type GetUserConfirmation = ( @@ -15,14 +14,21 @@ type GetUserConfirmation = ( callback: (confirmed: boolean) => void ) => void; -type Renderable = Element<*>; -type RenderFunction = () => Renderable; -type StoryDecorator = (story: RenderFunction) => Renderable; - declare module "storybook-router" { - declare type Links = { - [key: string]: (kind: string, story: string) => Function + declare type Context = { + kind: string, + story: string, + ... }; + declare type Renderable = React$Element<*>; + declare type RenderFunction = () => Renderable | Array; + + declare type StoryDecorator = ( + story: RenderFunction, + context: Context + ) => Renderable | null; + + declare type Links = { [key: string]: (kind: string, story: string) => Function, ... }; declare type RouterProps = { initialEntry?: Array, @@ -31,10 +37,9 @@ declare module "storybook-router" { initialIndex?: number, getUserConfirmation?: GetUserConfirmation, keyLength?: number, - children?: Element<*> + children?: React$Element<*>, + ... }; - declare module.exports: { - (links?: Links, routerProps?: RouterProps): StoryDecorator - }; + declare module.exports: { (links?: Links, routerProps?: RouterProps): StoryDecorator, ... }; } diff --git a/flow-typed/npm/style-loader_vx.x.x.js b/flow-typed/npm/style-loader_vx.x.x.js index 43507229..99dcd6cf 100644 --- a/flow-typed/npm/style-loader_vx.x.x.js +++ b/flow-typed/npm/style-loader_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 5b8f32e384d7e7ca0d9d7d4dccef1c80 -// flow-typed version: <>/style-loader_v^0.20.2/flow_v0.66.0 +// flow-typed signature: 2b966465827b4a50a50c9dbde9e2b0b8 +// flow-typed version: <>/style-loader_v1.0.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,45 +22,28 @@ declare module 'style-loader' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'style-loader/lib/addStyles' { +declare module 'style-loader/dist' { declare module.exports: any; } -declare module 'style-loader/lib/addStyleUrl' { +declare module 'style-loader/dist/runtime/injectStylesIntoLinkTag' { declare module.exports: any; } -declare module 'style-loader/lib/urls' { - declare module.exports: any; -} - -declare module 'style-loader/url' { - declare module.exports: any; -} - -declare module 'style-loader/useable' { +declare module 'style-loader/dist/runtime/injectStylesIntoStyleTag' { declare module.exports: any; } // Filename aliases -declare module 'style-loader/index' { - declare module.exports: $Exports<'style-loader'>; +declare module 'style-loader/dist/index' { + declare module.exports: $Exports<'style-loader/dist'>; } -declare module 'style-loader/index.js' { - declare module.exports: $Exports<'style-loader'>; +declare module 'style-loader/dist/index.js' { + declare module.exports: $Exports<'style-loader/dist'>; } -declare module 'style-loader/lib/addStyles.js' { - declare module.exports: $Exports<'style-loader/lib/addStyles'>; +declare module 'style-loader/dist/runtime/injectStylesIntoLinkTag.js' { + declare module.exports: $Exports<'style-loader/dist/runtime/injectStylesIntoLinkTag'>; } -declare module 'style-loader/lib/addStyleUrl.js' { - declare module.exports: $Exports<'style-loader/lib/addStyleUrl'>; -} -declare module 'style-loader/lib/urls.js' { - declare module.exports: $Exports<'style-loader/lib/urls'>; -} -declare module 'style-loader/url.js' { - declare module.exports: $Exports<'style-loader/url'>; -} -declare module 'style-loader/useable.js' { - declare module.exports: $Exports<'style-loader/useable'>; +declare module 'style-loader/dist/runtime/injectStylesIntoStyleTag.js' { + declare module.exports: $Exports<'style-loader/dist/runtime/injectStylesIntoStyleTag'>; } diff --git a/flow-typed/npm/truffle-contract_vx.x.x.js b/flow-typed/npm/truffle-contract_vx.x.x.js index 39241b79..8efc8dd5 100644 --- a/flow-typed/npm/truffle-contract_vx.x.x.js +++ b/flow-typed/npm/truffle-contract_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 4877782915fb90c08073243868f6b670 -// flow-typed version: <>/truffle-contract_v^1.1.8/flow_v0.66.0 +// flow-typed signature: 2cbcee5e9c44377bc33b474b3b951a65 +// flow-typed version: <>/truffle-contract_v4.0.31/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,10 +22,6 @@ declare module 'truffle-contract' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'truffle-contract/contract' { - declare module.exports: any; -} - declare module 'truffle-contract/dist/truffle-contract' { declare module.exports: any; } @@ -34,18 +30,115 @@ declare module 'truffle-contract/dist/truffle-contract.min' { declare module.exports: any; } -declare module 'truffle-contract/test/lib/MetaCoin.sol' { +declare module 'truffle-contract/lib/contract' { declare module.exports: any; } -declare module 'truffle-contract/test/upgrade' { +declare module 'truffle-contract/lib/contract/bootstrap' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/contract/constructorMethods' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/contract' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/contract/properties' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/execute' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/handlers' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/override' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/reason' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/reformat' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/statuserror' { + declare module.exports: any; +} + +declare module 'truffle-contract/lib/utils' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/abiV2' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/cloning' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/contract/constructorMethods' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/customoptions' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/deploy' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/deprecated_keys' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/errors' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/events' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/linking' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/methods' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/networkObject' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/networks' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/quorum' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/separation' { + declare module.exports: any; +} + +declare module 'truffle-contract/test/util' { declare module.exports: any; } // Filename aliases -declare module 'truffle-contract/contract.js' { - declare module.exports: $Exports<'truffle-contract/contract'>; -} declare module 'truffle-contract/dist/truffle-contract.js' { declare module.exports: $Exports<'truffle-contract/dist/truffle-contract'>; } @@ -58,9 +151,87 @@ declare module 'truffle-contract/index' { declare module 'truffle-contract/index.js' { declare module.exports: $Exports<'truffle-contract'>; } -declare module 'truffle-contract/test/lib/MetaCoin.sol.js' { - declare module.exports: $Exports<'truffle-contract/test/lib/MetaCoin.sol'>; +declare module 'truffle-contract/lib/contract.js' { + declare module.exports: $Exports<'truffle-contract/lib/contract'>; } -declare module 'truffle-contract/test/upgrade.js' { - declare module.exports: $Exports<'truffle-contract/test/upgrade'>; +declare module 'truffle-contract/lib/contract/bootstrap.js' { + declare module.exports: $Exports<'truffle-contract/lib/contract/bootstrap'>; +} +declare module 'truffle-contract/lib/contract/constructorMethods.js' { + declare module.exports: $Exports<'truffle-contract/lib/contract/constructorMethods'>; +} +declare module 'truffle-contract/lib/contract/index' { + declare module.exports: $Exports<'truffle-contract/lib/contract'>; +} +declare module 'truffle-contract/lib/contract/index.js' { + declare module.exports: $Exports<'truffle-contract/lib/contract'>; +} +declare module 'truffle-contract/lib/contract/properties.js' { + declare module.exports: $Exports<'truffle-contract/lib/contract/properties'>; +} +declare module 'truffle-contract/lib/execute.js' { + declare module.exports: $Exports<'truffle-contract/lib/execute'>; +} +declare module 'truffle-contract/lib/handlers.js' { + declare module.exports: $Exports<'truffle-contract/lib/handlers'>; +} +declare module 'truffle-contract/lib/override.js' { + declare module.exports: $Exports<'truffle-contract/lib/override'>; +} +declare module 'truffle-contract/lib/reason.js' { + declare module.exports: $Exports<'truffle-contract/lib/reason'>; +} +declare module 'truffle-contract/lib/reformat.js' { + declare module.exports: $Exports<'truffle-contract/lib/reformat'>; +} +declare module 'truffle-contract/lib/statuserror.js' { + declare module.exports: $Exports<'truffle-contract/lib/statuserror'>; +} +declare module 'truffle-contract/lib/utils.js' { + declare module.exports: $Exports<'truffle-contract/lib/utils'>; +} +declare module 'truffle-contract/test/abiV2.js' { + declare module.exports: $Exports<'truffle-contract/test/abiV2'>; +} +declare module 'truffle-contract/test/cloning.js' { + declare module.exports: $Exports<'truffle-contract/test/cloning'>; +} +declare module 'truffle-contract/test/contract/constructorMethods.js' { + declare module.exports: $Exports<'truffle-contract/test/contract/constructorMethods'>; +} +declare module 'truffle-contract/test/customoptions.js' { + declare module.exports: $Exports<'truffle-contract/test/customoptions'>; +} +declare module 'truffle-contract/test/deploy.js' { + declare module.exports: $Exports<'truffle-contract/test/deploy'>; +} +declare module 'truffle-contract/test/deprecated_keys.js' { + declare module.exports: $Exports<'truffle-contract/test/deprecated_keys'>; +} +declare module 'truffle-contract/test/errors.js' { + declare module.exports: $Exports<'truffle-contract/test/errors'>; +} +declare module 'truffle-contract/test/events.js' { + declare module.exports: $Exports<'truffle-contract/test/events'>; +} +declare module 'truffle-contract/test/linking.js' { + declare module.exports: $Exports<'truffle-contract/test/linking'>; +} +declare module 'truffle-contract/test/methods.js' { + declare module.exports: $Exports<'truffle-contract/test/methods'>; +} +declare module 'truffle-contract/test/networkObject.js' { + declare module.exports: $Exports<'truffle-contract/test/networkObject'>; +} +declare module 'truffle-contract/test/networks.js' { + declare module.exports: $Exports<'truffle-contract/test/networks'>; +} +declare module 'truffle-contract/test/quorum.js' { + declare module.exports: $Exports<'truffle-contract/test/quorum'>; +} +declare module 'truffle-contract/test/separation.js' { + declare module.exports: $Exports<'truffle-contract/test/separation'>; +} +declare module 'truffle-contract/test/util.js' { + declare module.exports: $Exports<'truffle-contract/test/util'>; } diff --git a/flow-typed/npm/truffle-solidity-loader_vx.x.x.js b/flow-typed/npm/truffle-solidity-loader_vx.x.x.js index 6df11603..827b4388 100644 --- a/flow-typed/npm/truffle-solidity-loader_vx.x.x.js +++ b/flow-typed/npm/truffle-solidity-loader_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 6fea208e73e0f7fa9d732718f7501edd -// flow-typed version: <>/truffle-solidity-loader_v0.0.8/flow_v0.66.0 +// flow-typed signature: 6e29aea1d445f41f5a946eacd8707151 +// flow-typed version: <>/truffle-solidity-loader_v0.1.32/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,23 +22,15 @@ declare module 'truffle-solidity-loader' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'truffle-solidity-loader/lib/build_option_normalizer' { +declare module 'truffle-solidity-loader/lib/genBuildOptions' { declare module.exports: any; } -declare module 'truffle-solidity-loader/lib/logger_decorator' { +declare module 'truffle-solidity-loader/lib/getTruffleConfig' { declare module.exports: any; } -declare module 'truffle-solidity-loader/lib/query_string_parser' { - declare module.exports: any; -} - -declare module 'truffle-solidity-loader/lib/scratch_dir' { - declare module.exports: any; -} - -declare module 'truffle-solidity-loader/lib/truffle_config_locator' { +declare module 'truffle-solidity-loader/lib/logDecorator' { declare module.exports: any; } @@ -49,18 +41,12 @@ declare module 'truffle-solidity-loader/index' { declare module 'truffle-solidity-loader/index.js' { declare module.exports: $Exports<'truffle-solidity-loader'>; } -declare module 'truffle-solidity-loader/lib/build_option_normalizer.js' { - declare module.exports: $Exports<'truffle-solidity-loader/lib/build_option_normalizer'>; +declare module 'truffle-solidity-loader/lib/genBuildOptions.js' { + declare module.exports: $Exports<'truffle-solidity-loader/lib/genBuildOptions'>; } -declare module 'truffle-solidity-loader/lib/logger_decorator.js' { - declare module.exports: $Exports<'truffle-solidity-loader/lib/logger_decorator'>; +declare module 'truffle-solidity-loader/lib/getTruffleConfig.js' { + declare module.exports: $Exports<'truffle-solidity-loader/lib/getTruffleConfig'>; } -declare module 'truffle-solidity-loader/lib/query_string_parser.js' { - declare module.exports: $Exports<'truffle-solidity-loader/lib/query_string_parser'>; -} -declare module 'truffle-solidity-loader/lib/scratch_dir.js' { - declare module.exports: $Exports<'truffle-solidity-loader/lib/scratch_dir'>; -} -declare module 'truffle-solidity-loader/lib/truffle_config_locator.js' { - declare module.exports: $Exports<'truffle-solidity-loader/lib/truffle_config_locator'>; +declare module 'truffle-solidity-loader/lib/logDecorator.js' { + declare module.exports: $Exports<'truffle-solidity-loader/lib/logDecorator'>; } diff --git a/flow-typed/npm/truffle_vx.x.x.js b/flow-typed/npm/truffle_vx.x.x.js new file mode 100644 index 00000000..9a446ea1 --- /dev/null +++ b/flow-typed/npm/truffle_vx.x.x.js @@ -0,0 +1,814 @@ +// flow-typed signature: d9dd7052ce78010c48219d8d254e3163 +// flow-typed version: <>/truffle_v5.1.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'truffle' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'truffle' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'truffle/build/analytics.bundled' { + declare module.exports: any; +} + +declare module 'truffle/build/chain.bundled' { + declare module.exports: any; +} + +declare module 'truffle/build/cli.bundled' { + declare module.exports: any; +} + +declare module 'truffle/build/library.bundled' { + declare module.exports: any; +} + +declare module 'truffle/build/templates/example' { + declare module.exports: any; +} + +declare module 'truffle/build/templates/migration' { + declare module.exports: any; +} + +declare module 'truffle/cli.webpack.config' { + declare module.exports: any; +} + +declare module 'truffle/scripts/postinstall' { + declare module.exports: any; +} + +declare module 'truffle/scripts/prereleaseVersion' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commandrunner' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/build' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/deploy' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/ethpm' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/exec' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/help' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/init' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/install' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/migrate' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/networks' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/run' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/commands/unbox' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/compile/compile' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/contract_names/test_imports' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/cyclic_dependencies/compiles' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/external_compilers/truffle-compile' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/genesis_time/genesis_time_invalid' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/genesis_time/genesis_time_undefined' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/genesis_time/genesis_time_valid' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/happy_path/happypath' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/library/api' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/memorylogger' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/migrations/describe-json' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/migrations/dryrun' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/migrations/errors' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/migrations/fabric-evm' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/migrations/init' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/migrations/migrate' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/migrations/production' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/migrations/quorum' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/reporter' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/resolver/resolver' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/sandbox' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/server' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/solidity_testing/solidityTests' { + declare module.exports: any; +} + +declare module 'truffle/test/scenarios/typescript_testing/typescriptTests' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/build/projectWithBuildScript/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/build/projectWithObjectInBuildScript/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/build/projectWithoutBuildScript/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/contract_names/migrations/1_initial_migrations' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/contract_names/migrations/2_deploy_contract' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/contract_names/migrations/3_deploy_relative_import' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/contract_names/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/ethpm/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/exec/script' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/exec/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/external_compile/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/external_compile/migrations/2_deploy_contracts' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/external_compile/test/metacoin' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/external_compile/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/genesis_time/genesis_time_invalid/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/genesis_time/genesis_time_undefined/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/genesis_time/genesis_time_valid/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/inheritance/migrations/1_initial_migrations' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/inheritance/test/inheritance' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/inheritance/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/install/init/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/install/init/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/migrations/2_migrations_revert' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/migrations/3_migrations_ok' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/migrations/4_migrations_oog' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/migrations/5_migrations_reason' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/migrations/6_migrations_funds' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/migrations/7_batch_deployments' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/migrations/8_js_error_sync' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/migrations/9_js_error_async' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/error/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/fabric-evm/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/fabric-evm/migrations/2_migrations_sync' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/fabric-evm/migrations/3_migrations_async' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/fabric-evm/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/init/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/init/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/production/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/production/migrations/2_migrations_conf' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/production/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/quorum/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/quorum/migrations/2_migrations_sync' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/quorum/migrations/3_migrations_async' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/quorum/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/success/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/success/migrations/2_migrations_sync' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/success/migrations/3_migrations_async' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/migrations/success/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/monorepo/errorproject/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/monorepo/truffleproject/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/networks/metacoin/migrations/1_initial_migration' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/networks/metacoin/migrations/2_deploy_contracts' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/networks/metacoin/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithAbsolutePath/node_modules/truffle-mock' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithAbsolutePath/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithBadPluginFormat/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithMissingPluginConfig/node_modules/truffle-mock' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithMissingPluginConfig/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithMissingPluginModule/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithoutPlugin/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithPlugin/node_modules/truffle-mock' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithPlugin/truffle-config' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithWorkingPlugin/node_modules/truffle-mock' { + declare module.exports: any; +} + +declare module 'truffle/test/sources/run/mockProjectWithWorkingPlugin/truffle-config' { + declare module.exports: any; +} + +// Filename aliases +declare module 'truffle/build/analytics.bundled.js' { + declare module.exports: $Exports<'truffle/build/analytics.bundled'>; +} +declare module 'truffle/build/chain.bundled.js' { + declare module.exports: $Exports<'truffle/build/chain.bundled'>; +} +declare module 'truffle/build/cli.bundled.js' { + declare module.exports: $Exports<'truffle/build/cli.bundled'>; +} +declare module 'truffle/build/library.bundled.js' { + declare module.exports: $Exports<'truffle/build/library.bundled'>; +} +declare module 'truffle/build/templates/example.js' { + declare module.exports: $Exports<'truffle/build/templates/example'>; +} +declare module 'truffle/build/templates/migration.js' { + declare module.exports: $Exports<'truffle/build/templates/migration'>; +} +declare module 'truffle/cli.webpack.config.js' { + declare module.exports: $Exports<'truffle/cli.webpack.config'>; +} +declare module 'truffle/scripts/postinstall.js' { + declare module.exports: $Exports<'truffle/scripts/postinstall'>; +} +declare module 'truffle/scripts/prereleaseVersion.js' { + declare module.exports: $Exports<'truffle/scripts/prereleaseVersion'>; +} +declare module 'truffle/test/scenarios.js' { + declare module.exports: $Exports<'truffle/test/scenarios'>; +} +declare module 'truffle/test/scenarios/commandrunner.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commandrunner'>; +} +declare module 'truffle/test/scenarios/commands/build.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/build'>; +} +declare module 'truffle/test/scenarios/commands/deploy.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/deploy'>; +} +declare module 'truffle/test/scenarios/commands/ethpm.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/ethpm'>; +} +declare module 'truffle/test/scenarios/commands/exec.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/exec'>; +} +declare module 'truffle/test/scenarios/commands/help.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/help'>; +} +declare module 'truffle/test/scenarios/commands/init.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/init'>; +} +declare module 'truffle/test/scenarios/commands/install.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/install'>; +} +declare module 'truffle/test/scenarios/commands/migrate.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/migrate'>; +} +declare module 'truffle/test/scenarios/commands/networks.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/networks'>; +} +declare module 'truffle/test/scenarios/commands/run.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/run'>; +} +declare module 'truffle/test/scenarios/commands/unbox.js' { + declare module.exports: $Exports<'truffle/test/scenarios/commands/unbox'>; +} +declare module 'truffle/test/scenarios/compile/compile.js' { + declare module.exports: $Exports<'truffle/test/scenarios/compile/compile'>; +} +declare module 'truffle/test/scenarios/contract_names/test_imports.js' { + declare module.exports: $Exports<'truffle/test/scenarios/contract_names/test_imports'>; +} +declare module 'truffle/test/scenarios/cyclic_dependencies/compiles.js' { + declare module.exports: $Exports<'truffle/test/scenarios/cyclic_dependencies/compiles'>; +} +declare module 'truffle/test/scenarios/external_compilers/truffle-compile.js' { + declare module.exports: $Exports<'truffle/test/scenarios/external_compilers/truffle-compile'>; +} +declare module 'truffle/test/scenarios/genesis_time/genesis_time_invalid.js' { + declare module.exports: $Exports<'truffle/test/scenarios/genesis_time/genesis_time_invalid'>; +} +declare module 'truffle/test/scenarios/genesis_time/genesis_time_undefined.js' { + declare module.exports: $Exports<'truffle/test/scenarios/genesis_time/genesis_time_undefined'>; +} +declare module 'truffle/test/scenarios/genesis_time/genesis_time_valid.js' { + declare module.exports: $Exports<'truffle/test/scenarios/genesis_time/genesis_time_valid'>; +} +declare module 'truffle/test/scenarios/happy_path/happypath.js' { + declare module.exports: $Exports<'truffle/test/scenarios/happy_path/happypath'>; +} +declare module 'truffle/test/scenarios/library/api.js' { + declare module.exports: $Exports<'truffle/test/scenarios/library/api'>; +} +declare module 'truffle/test/scenarios/memorylogger.js' { + declare module.exports: $Exports<'truffle/test/scenarios/memorylogger'>; +} +declare module 'truffle/test/scenarios/migrations/describe-json.js' { + declare module.exports: $Exports<'truffle/test/scenarios/migrations/describe-json'>; +} +declare module 'truffle/test/scenarios/migrations/dryrun.js' { + declare module.exports: $Exports<'truffle/test/scenarios/migrations/dryrun'>; +} +declare module 'truffle/test/scenarios/migrations/errors.js' { + declare module.exports: $Exports<'truffle/test/scenarios/migrations/errors'>; +} +declare module 'truffle/test/scenarios/migrations/fabric-evm.js' { + declare module.exports: $Exports<'truffle/test/scenarios/migrations/fabric-evm'>; +} +declare module 'truffle/test/scenarios/migrations/init.js' { + declare module.exports: $Exports<'truffle/test/scenarios/migrations/init'>; +} +declare module 'truffle/test/scenarios/migrations/migrate.js' { + declare module.exports: $Exports<'truffle/test/scenarios/migrations/migrate'>; +} +declare module 'truffle/test/scenarios/migrations/production.js' { + declare module.exports: $Exports<'truffle/test/scenarios/migrations/production'>; +} +declare module 'truffle/test/scenarios/migrations/quorum.js' { + declare module.exports: $Exports<'truffle/test/scenarios/migrations/quorum'>; +} +declare module 'truffle/test/scenarios/reporter.js' { + declare module.exports: $Exports<'truffle/test/scenarios/reporter'>; +} +declare module 'truffle/test/scenarios/resolver/resolver.js' { + declare module.exports: $Exports<'truffle/test/scenarios/resolver/resolver'>; +} +declare module 'truffle/test/scenarios/sandbox.js' { + declare module.exports: $Exports<'truffle/test/scenarios/sandbox'>; +} +declare module 'truffle/test/scenarios/server.js' { + declare module.exports: $Exports<'truffle/test/scenarios/server'>; +} +declare module 'truffle/test/scenarios/solidity_testing/solidityTests.js' { + declare module.exports: $Exports<'truffle/test/scenarios/solidity_testing/solidityTests'>; +} +declare module 'truffle/test/scenarios/typescript_testing/typescriptTests.js' { + declare module.exports: $Exports<'truffle/test/scenarios/typescript_testing/typescriptTests'>; +} +declare module 'truffle/test/sources/build/projectWithBuildScript/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/build/projectWithBuildScript/truffle-config'>; +} +declare module 'truffle/test/sources/build/projectWithObjectInBuildScript/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/build/projectWithObjectInBuildScript/truffle-config'>; +} +declare module 'truffle/test/sources/build/projectWithoutBuildScript/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/build/projectWithoutBuildScript/truffle-config'>; +} +declare module 'truffle/test/sources/contract_names/migrations/1_initial_migrations.js' { + declare module.exports: $Exports<'truffle/test/sources/contract_names/migrations/1_initial_migrations'>; +} +declare module 'truffle/test/sources/contract_names/migrations/2_deploy_contract.js' { + declare module.exports: $Exports<'truffle/test/sources/contract_names/migrations/2_deploy_contract'>; +} +declare module 'truffle/test/sources/contract_names/migrations/3_deploy_relative_import.js' { + declare module.exports: $Exports<'truffle/test/sources/contract_names/migrations/3_deploy_relative_import'>; +} +declare module 'truffle/test/sources/contract_names/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/contract_names/truffle-config'>; +} +declare module 'truffle/test/sources/ethpm/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/ethpm/truffle-config'>; +} +declare module 'truffle/test/sources/exec/script.js' { + declare module.exports: $Exports<'truffle/test/sources/exec/script'>; +} +declare module 'truffle/test/sources/exec/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/exec/truffle-config'>; +} +declare module 'truffle/test/sources/external_compile/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'truffle/test/sources/external_compile/migrations/1_initial_migration'>; +} +declare module 'truffle/test/sources/external_compile/migrations/2_deploy_contracts.js' { + declare module.exports: $Exports<'truffle/test/sources/external_compile/migrations/2_deploy_contracts'>; +} +declare module 'truffle/test/sources/external_compile/test/metacoin.js' { + declare module.exports: $Exports<'truffle/test/sources/external_compile/test/metacoin'>; +} +declare module 'truffle/test/sources/external_compile/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/external_compile/truffle-config'>; +} +declare module 'truffle/test/sources/genesis_time/genesis_time_invalid/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/genesis_time/genesis_time_invalid/truffle-config'>; +} +declare module 'truffle/test/sources/genesis_time/genesis_time_undefined/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/genesis_time/genesis_time_undefined/truffle-config'>; +} +declare module 'truffle/test/sources/genesis_time/genesis_time_valid/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/genesis_time/genesis_time_valid/truffle-config'>; +} +declare module 'truffle/test/sources/inheritance/migrations/1_initial_migrations.js' { + declare module.exports: $Exports<'truffle/test/sources/inheritance/migrations/1_initial_migrations'>; +} +declare module 'truffle/test/sources/inheritance/test/inheritance.js' { + declare module.exports: $Exports<'truffle/test/sources/inheritance/test/inheritance'>; +} +declare module 'truffle/test/sources/inheritance/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/inheritance/truffle-config'>; +} +declare module 'truffle/test/sources/install/init/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'truffle/test/sources/install/init/migrations/1_initial_migration'>; +} +declare module 'truffle/test/sources/install/init/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/install/init/truffle-config'>; +} +declare module 'truffle/test/sources/migrations/error/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/migrations/1_initial_migration'>; +} +declare module 'truffle/test/sources/migrations/error/migrations/2_migrations_revert.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/migrations/2_migrations_revert'>; +} +declare module 'truffle/test/sources/migrations/error/migrations/3_migrations_ok.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/migrations/3_migrations_ok'>; +} +declare module 'truffle/test/sources/migrations/error/migrations/4_migrations_oog.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/migrations/4_migrations_oog'>; +} +declare module 'truffle/test/sources/migrations/error/migrations/5_migrations_reason.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/migrations/5_migrations_reason'>; +} +declare module 'truffle/test/sources/migrations/error/migrations/6_migrations_funds.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/migrations/6_migrations_funds'>; +} +declare module 'truffle/test/sources/migrations/error/migrations/7_batch_deployments.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/migrations/7_batch_deployments'>; +} +declare module 'truffle/test/sources/migrations/error/migrations/8_js_error_sync.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/migrations/8_js_error_sync'>; +} +declare module 'truffle/test/sources/migrations/error/migrations/9_js_error_async.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/migrations/9_js_error_async'>; +} +declare module 'truffle/test/sources/migrations/error/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/error/truffle-config'>; +} +declare module 'truffle/test/sources/migrations/fabric-evm/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/fabric-evm/migrations/1_initial_migration'>; +} +declare module 'truffle/test/sources/migrations/fabric-evm/migrations/2_migrations_sync.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/fabric-evm/migrations/2_migrations_sync'>; +} +declare module 'truffle/test/sources/migrations/fabric-evm/migrations/3_migrations_async.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/fabric-evm/migrations/3_migrations_async'>; +} +declare module 'truffle/test/sources/migrations/fabric-evm/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/fabric-evm/truffle-config'>; +} +declare module 'truffle/test/sources/migrations/init/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/init/migrations/1_initial_migration'>; +} +declare module 'truffle/test/sources/migrations/init/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/init/truffle-config'>; +} +declare module 'truffle/test/sources/migrations/production/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/production/migrations/1_initial_migration'>; +} +declare module 'truffle/test/sources/migrations/production/migrations/2_migrations_conf.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/production/migrations/2_migrations_conf'>; +} +declare module 'truffle/test/sources/migrations/production/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/production/truffle-config'>; +} +declare module 'truffle/test/sources/migrations/quorum/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/quorum/migrations/1_initial_migration'>; +} +declare module 'truffle/test/sources/migrations/quorum/migrations/2_migrations_sync.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/quorum/migrations/2_migrations_sync'>; +} +declare module 'truffle/test/sources/migrations/quorum/migrations/3_migrations_async.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/quorum/migrations/3_migrations_async'>; +} +declare module 'truffle/test/sources/migrations/quorum/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/quorum/truffle-config'>; +} +declare module 'truffle/test/sources/migrations/success/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/success/migrations/1_initial_migration'>; +} +declare module 'truffle/test/sources/migrations/success/migrations/2_migrations_sync.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/success/migrations/2_migrations_sync'>; +} +declare module 'truffle/test/sources/migrations/success/migrations/3_migrations_async.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/success/migrations/3_migrations_async'>; +} +declare module 'truffle/test/sources/migrations/success/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/migrations/success/truffle-config'>; +} +declare module 'truffle/test/sources/monorepo/errorproject/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/monorepo/errorproject/truffle-config'>; +} +declare module 'truffle/test/sources/monorepo/truffleproject/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/monorepo/truffleproject/truffle-config'>; +} +declare module 'truffle/test/sources/networks/metacoin/migrations/1_initial_migration.js' { + declare module.exports: $Exports<'truffle/test/sources/networks/metacoin/migrations/1_initial_migration'>; +} +declare module 'truffle/test/sources/networks/metacoin/migrations/2_deploy_contracts.js' { + declare module.exports: $Exports<'truffle/test/sources/networks/metacoin/migrations/2_deploy_contracts'>; +} +declare module 'truffle/test/sources/networks/metacoin/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/networks/metacoin/truffle-config'>; +} +declare module 'truffle/test/sources/run/mockProjectWithAbsolutePath/node_modules/truffle-mock/index' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithAbsolutePath/node_modules/truffle-mock'>; +} +declare module 'truffle/test/sources/run/mockProjectWithAbsolutePath/node_modules/truffle-mock/index.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithAbsolutePath/node_modules/truffle-mock'>; +} +declare module 'truffle/test/sources/run/mockProjectWithAbsolutePath/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithAbsolutePath/truffle-config'>; +} +declare module 'truffle/test/sources/run/mockProjectWithBadPluginFormat/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithBadPluginFormat/truffle-config'>; +} +declare module 'truffle/test/sources/run/mockProjectWithMissingPluginConfig/node_modules/truffle-mock/index' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithMissingPluginConfig/node_modules/truffle-mock'>; +} +declare module 'truffle/test/sources/run/mockProjectWithMissingPluginConfig/node_modules/truffle-mock/index.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithMissingPluginConfig/node_modules/truffle-mock'>; +} +declare module 'truffle/test/sources/run/mockProjectWithMissingPluginConfig/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithMissingPluginConfig/truffle-config'>; +} +declare module 'truffle/test/sources/run/mockProjectWithMissingPluginModule/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithMissingPluginModule/truffle-config'>; +} +declare module 'truffle/test/sources/run/mockProjectWithoutPlugin/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithoutPlugin/truffle-config'>; +} +declare module 'truffle/test/sources/run/mockProjectWithPlugin/node_modules/truffle-mock/index' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithPlugin/node_modules/truffle-mock'>; +} +declare module 'truffle/test/sources/run/mockProjectWithPlugin/node_modules/truffle-mock/index.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithPlugin/node_modules/truffle-mock'>; +} +declare module 'truffle/test/sources/run/mockProjectWithPlugin/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithPlugin/truffle-config'>; +} +declare module 'truffle/test/sources/run/mockProjectWithWorkingPlugin/node_modules/truffle-mock/index' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithWorkingPlugin/node_modules/truffle-mock'>; +} +declare module 'truffle/test/sources/run/mockProjectWithWorkingPlugin/node_modules/truffle-mock/index.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithWorkingPlugin/node_modules/truffle-mock'>; +} +declare module 'truffle/test/sources/run/mockProjectWithWorkingPlugin/truffle-config.js' { + declare module.exports: $Exports<'truffle/test/sources/run/mockProjectWithWorkingPlugin/truffle-config'>; +} diff --git a/flow-typed/npm/uglifyjs-webpack-plugin_vx.x.x.js b/flow-typed/npm/uglifyjs-webpack-plugin_vx.x.x.js index 5b9e0b85..f0ad166c 100644 --- a/flow-typed/npm/uglifyjs-webpack-plugin_vx.x.x.js +++ b/flow-typed/npm/uglifyjs-webpack-plugin_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 1fc8a80750e6f06315cab42215144692 -// flow-typed version: <>/uglifyjs-webpack-plugin_v^1.2.2/flow_v0.66.0 +// flow-typed signature: fa5f51f591b0da4d0ac74e522c20ad03 +// flow-typed version: <>/uglifyjs-webpack-plugin_v2.2.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -26,23 +26,19 @@ declare module 'uglifyjs-webpack-plugin/dist/cjs' { declare module.exports: any; } -declare module 'uglifyjs-webpack-plugin/dist/index' { +declare module 'uglifyjs-webpack-plugin/dist' { declare module.exports: any; } -declare module 'uglifyjs-webpack-plugin/dist/uglify/index' { +declare module 'uglifyjs-webpack-plugin/dist/minify' { declare module.exports: any; } -declare module 'uglifyjs-webpack-plugin/dist/uglify/minify' { +declare module 'uglifyjs-webpack-plugin/dist/TaskRunner' { declare module.exports: any; } -declare module 'uglifyjs-webpack-plugin/dist/uglify/versions' { - declare module.exports: any; -} - -declare module 'uglifyjs-webpack-plugin/dist/uglify/worker' { +declare module 'uglifyjs-webpack-plugin/dist/worker' { declare module.exports: any; } @@ -50,18 +46,18 @@ declare module 'uglifyjs-webpack-plugin/dist/uglify/worker' { declare module 'uglifyjs-webpack-plugin/dist/cjs.js' { declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist/cjs'>; } +declare module 'uglifyjs-webpack-plugin/dist/index' { + declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist'>; +} declare module 'uglifyjs-webpack-plugin/dist/index.js' { - declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist/index'>; + declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist'>; } -declare module 'uglifyjs-webpack-plugin/dist/uglify/index.js' { - declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist/uglify/index'>; +declare module 'uglifyjs-webpack-plugin/dist/minify.js' { + declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist/minify'>; } -declare module 'uglifyjs-webpack-plugin/dist/uglify/minify.js' { - declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist/uglify/minify'>; +declare module 'uglifyjs-webpack-plugin/dist/TaskRunner.js' { + declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist/TaskRunner'>; } -declare module 'uglifyjs-webpack-plugin/dist/uglify/versions.js' { - declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist/uglify/versions'>; -} -declare module 'uglifyjs-webpack-plugin/dist/uglify/worker.js' { - declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist/uglify/worker'>; +declare module 'uglifyjs-webpack-plugin/dist/worker.js' { + declare module.exports: $Exports<'uglifyjs-webpack-plugin/dist/worker'>; } diff --git a/flow-typed/npm/url-loader_vx.x.x.js b/flow-typed/npm/url-loader_vx.x.x.js new file mode 100644 index 00000000..e1b32fa1 --- /dev/null +++ b/flow-typed/npm/url-loader_vx.x.x.js @@ -0,0 +1,49 @@ +// flow-typed signature: 06af075903a7c61460f41dd080b4baa1 +// flow-typed version: <>/url-loader_v2.2.0/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'url-loader' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'url-loader' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'url-loader/dist/cjs' { + declare module.exports: any; +} + +declare module 'url-loader/dist' { + declare module.exports: any; +} + +declare module 'url-loader/dist/utils/normalizeFallback' { + declare module.exports: any; +} + +// Filename aliases +declare module 'url-loader/dist/cjs.js' { + declare module.exports: $Exports<'url-loader/dist/cjs'>; +} +declare module 'url-loader/dist/index' { + declare module.exports: $Exports<'url-loader/dist'>; +} +declare module 'url-loader/dist/index.js' { + declare module.exports: $Exports<'url-loader/dist'>; +} +declare module 'url-loader/dist/utils/normalizeFallback.js' { + declare module.exports: $Exports<'url-loader/dist/utils/normalizeFallback'>; +} diff --git a/flow-typed/npm/web3_vx.x.x.js b/flow-typed/npm/web3_vx.x.x.js index 8a79ecf9..a493215b 100644 --- a/flow-typed/npm/web3_vx.x.x.js +++ b/flow-typed/npm/web3_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 7e463836ace64b04c97b6f81ac70b5ea -// flow-typed version: <>/web3_v0.18.4/flow_v0.66.0 +// flow-typed signature: 8666795a60ea2a1f36479657ed47f791 +// flow-typed version: <>/web3_v1.2.4/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,11 +22,7 @@ declare module 'web3' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'web3/dist/web3-light' { - declare module.exports: any; -} - -declare module 'web3/dist/web3-light.min' { +declare module 'web3/angular-patch' { declare module.exports: any; } @@ -38,220 +34,13 @@ declare module 'web3/dist/web3.min' { declare module.exports: any; } -declare module 'web3/example/node-app' { - declare module.exports: any; -} - -declare module 'web3/gulpfile' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/address' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/bool' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/bytes' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/coder' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/dynamicbytes' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/formatters' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/int' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/param' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/real' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/string' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/type' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/uint' { - declare module.exports: any; -} - -declare module 'web3/lib/solidity/ureal' { - declare module.exports: any; -} - -declare module 'web3/lib/utils/bloom' { - declare module.exports: any; -} - -declare module 'web3/lib/utils/browser-bn' { - declare module.exports: any; -} - -declare module 'web3/lib/utils/browser-xhr' { - declare module.exports: any; -} - -declare module 'web3/lib/utils/config' { - declare module.exports: any; -} - -declare module 'web3/lib/utils/sha3' { - declare module.exports: any; -} - -declare module 'web3/lib/utils/utils' { - declare module.exports: any; -} - -declare module 'web3/lib/web3' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/allevents' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/batch' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/contract' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/errors' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/event' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/extend' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/filter' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/formatters' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/function' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/httpprovider' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/iban' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/ipcprovider' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/jsonrpc' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/method' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/methods/db' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/methods/eth' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/methods/net' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/methods/personal' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/methods/shh' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/methods/swarm' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/methods/watches' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/namereg' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/property' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/requestmanager' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/settings' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/syncing' { - declare module.exports: any; -} - -declare module 'web3/lib/web3/transfer' { - declare module.exports: any; -} - -declare module 'web3/package-init' { - declare module.exports: any; -} - -declare module 'web3/package' { - declare module.exports: any; -} - -declare module 'web3/src/index_old' { +declare module 'web3/src' { declare module.exports: any; } // Filename aliases -declare module 'web3/dist/web3-light.js' { - declare module.exports: $Exports<'web3/dist/web3-light'>; -} -declare module 'web3/dist/web3-light.min.js' { - declare module.exports: $Exports<'web3/dist/web3-light.min'>; +declare module 'web3/angular-patch.js' { + declare module.exports: $Exports<'web3/angular-patch'>; } declare module 'web3/dist/web3.js' { declare module.exports: $Exports<'web3/dist/web3'>; @@ -259,165 +48,9 @@ declare module 'web3/dist/web3.js' { declare module 'web3/dist/web3.min.js' { declare module.exports: $Exports<'web3/dist/web3.min'>; } -declare module 'web3/example/node-app.js' { - declare module.exports: $Exports<'web3/example/node-app'>; +declare module 'web3/src/index' { + declare module.exports: $Exports<'web3/src'>; } -declare module 'web3/gulpfile.js' { - declare module.exports: $Exports<'web3/gulpfile'>; -} -declare module 'web3/index' { - declare module.exports: $Exports<'web3'>; -} -declare module 'web3/index.js' { - declare module.exports: $Exports<'web3'>; -} -declare module 'web3/lib/solidity/address.js' { - declare module.exports: $Exports<'web3/lib/solidity/address'>; -} -declare module 'web3/lib/solidity/bool.js' { - declare module.exports: $Exports<'web3/lib/solidity/bool'>; -} -declare module 'web3/lib/solidity/bytes.js' { - declare module.exports: $Exports<'web3/lib/solidity/bytes'>; -} -declare module 'web3/lib/solidity/coder.js' { - declare module.exports: $Exports<'web3/lib/solidity/coder'>; -} -declare module 'web3/lib/solidity/dynamicbytes.js' { - declare module.exports: $Exports<'web3/lib/solidity/dynamicbytes'>; -} -declare module 'web3/lib/solidity/formatters.js' { - declare module.exports: $Exports<'web3/lib/solidity/formatters'>; -} -declare module 'web3/lib/solidity/int.js' { - declare module.exports: $Exports<'web3/lib/solidity/int'>; -} -declare module 'web3/lib/solidity/param.js' { - declare module.exports: $Exports<'web3/lib/solidity/param'>; -} -declare module 'web3/lib/solidity/real.js' { - declare module.exports: $Exports<'web3/lib/solidity/real'>; -} -declare module 'web3/lib/solidity/string.js' { - declare module.exports: $Exports<'web3/lib/solidity/string'>; -} -declare module 'web3/lib/solidity/type.js' { - declare module.exports: $Exports<'web3/lib/solidity/type'>; -} -declare module 'web3/lib/solidity/uint.js' { - declare module.exports: $Exports<'web3/lib/solidity/uint'>; -} -declare module 'web3/lib/solidity/ureal.js' { - declare module.exports: $Exports<'web3/lib/solidity/ureal'>; -} -declare module 'web3/lib/utils/bloom.js' { - declare module.exports: $Exports<'web3/lib/utils/bloom'>; -} -declare module 'web3/lib/utils/browser-bn.js' { - declare module.exports: $Exports<'web3/lib/utils/browser-bn'>; -} -declare module 'web3/lib/utils/browser-xhr.js' { - declare module.exports: $Exports<'web3/lib/utils/browser-xhr'>; -} -declare module 'web3/lib/utils/config.js' { - declare module.exports: $Exports<'web3/lib/utils/config'>; -} -declare module 'web3/lib/utils/sha3.js' { - declare module.exports: $Exports<'web3/lib/utils/sha3'>; -} -declare module 'web3/lib/utils/utils.js' { - declare module.exports: $Exports<'web3/lib/utils/utils'>; -} -declare module 'web3/lib/web3.js' { - declare module.exports: $Exports<'web3/lib/web3'>; -} -declare module 'web3/lib/web3/allevents.js' { - declare module.exports: $Exports<'web3/lib/web3/allevents'>; -} -declare module 'web3/lib/web3/batch.js' { - declare module.exports: $Exports<'web3/lib/web3/batch'>; -} -declare module 'web3/lib/web3/contract.js' { - declare module.exports: $Exports<'web3/lib/web3/contract'>; -} -declare module 'web3/lib/web3/errors.js' { - declare module.exports: $Exports<'web3/lib/web3/errors'>; -} -declare module 'web3/lib/web3/event.js' { - declare module.exports: $Exports<'web3/lib/web3/event'>; -} -declare module 'web3/lib/web3/extend.js' { - declare module.exports: $Exports<'web3/lib/web3/extend'>; -} -declare module 'web3/lib/web3/filter.js' { - declare module.exports: $Exports<'web3/lib/web3/filter'>; -} -declare module 'web3/lib/web3/formatters.js' { - declare module.exports: $Exports<'web3/lib/web3/formatters'>; -} -declare module 'web3/lib/web3/function.js' { - declare module.exports: $Exports<'web3/lib/web3/function'>; -} -declare module 'web3/lib/web3/httpprovider.js' { - declare module.exports: $Exports<'web3/lib/web3/httpprovider'>; -} -declare module 'web3/lib/web3/iban.js' { - declare module.exports: $Exports<'web3/lib/web3/iban'>; -} -declare module 'web3/lib/web3/ipcprovider.js' { - declare module.exports: $Exports<'web3/lib/web3/ipcprovider'>; -} -declare module 'web3/lib/web3/jsonrpc.js' { - declare module.exports: $Exports<'web3/lib/web3/jsonrpc'>; -} -declare module 'web3/lib/web3/method.js' { - declare module.exports: $Exports<'web3/lib/web3/method'>; -} -declare module 'web3/lib/web3/methods/db.js' { - declare module.exports: $Exports<'web3/lib/web3/methods/db'>; -} -declare module 'web3/lib/web3/methods/eth.js' { - declare module.exports: $Exports<'web3/lib/web3/methods/eth'>; -} -declare module 'web3/lib/web3/methods/net.js' { - declare module.exports: $Exports<'web3/lib/web3/methods/net'>; -} -declare module 'web3/lib/web3/methods/personal.js' { - declare module.exports: $Exports<'web3/lib/web3/methods/personal'>; -} -declare module 'web3/lib/web3/methods/shh.js' { - declare module.exports: $Exports<'web3/lib/web3/methods/shh'>; -} -declare module 'web3/lib/web3/methods/swarm.js' { - declare module.exports: $Exports<'web3/lib/web3/methods/swarm'>; -} -declare module 'web3/lib/web3/methods/watches.js' { - declare module.exports: $Exports<'web3/lib/web3/methods/watches'>; -} -declare module 'web3/lib/web3/namereg.js' { - declare module.exports: $Exports<'web3/lib/web3/namereg'>; -} -declare module 'web3/lib/web3/property.js' { - declare module.exports: $Exports<'web3/lib/web3/property'>; -} -declare module 'web3/lib/web3/requestmanager.js' { - declare module.exports: $Exports<'web3/lib/web3/requestmanager'>; -} -declare module 'web3/lib/web3/settings.js' { - declare module.exports: $Exports<'web3/lib/web3/settings'>; -} -declare module 'web3/lib/web3/syncing.js' { - declare module.exports: $Exports<'web3/lib/web3/syncing'>; -} -declare module 'web3/lib/web3/transfer.js' { - declare module.exports: $Exports<'web3/lib/web3/transfer'>; -} -declare module 'web3/package-init.js' { - declare module.exports: $Exports<'web3/package-init'>; -} -declare module 'web3/package.js' { - declare module.exports: $Exports<'web3/package'>; -} -declare module 'web3/src/index_old.js' { - declare module.exports: $Exports<'web3/src/index_old'>; +declare module 'web3/src/index.js' { + declare module.exports: $Exports<'web3/src'>; } diff --git a/flow-typed/npm/web3connect_vx.x.x.js b/flow-typed/npm/web3connect_vx.x.x.js new file mode 100644 index 00000000..08344106 --- /dev/null +++ b/flow-typed/npm/web3connect_vx.x.x.js @@ -0,0 +1,35 @@ +// flow-typed signature: 35a325d1f39c616d4cc834ae2b5e9f92 +// flow-typed version: <>/web3connect_v^1.0.0-beta.23/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'web3connect' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'web3connect' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'web3connect/lib' { + declare module.exports: any; +} + +// Filename aliases +declare module 'web3connect/lib/index' { + declare module.exports: $Exports<'web3connect/lib'>; +} +declare module 'web3connect/lib/index.js' { + declare module.exports: $Exports<'web3connect/lib'>; +} diff --git a/flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js b/flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js index 98d8d825..ee2ecea8 100644 --- a/flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js +++ b/flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: dc4e0df65a1f68ab015fd6a5dab7fbbf -// flow-typed version: <>/webpack-bundle-analyzer_v^2.11.1/flow_v0.66.0 +// flow-typed signature: 91d7ee23ac1b6a31de754c5364ffd35c +// flow-typed version: <>/webpack-bundle-analyzer_v3.6.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -34,7 +34,7 @@ declare module 'webpack-bundle-analyzer/lib/BundleAnalyzerPlugin' { declare module.exports: any; } -declare module 'webpack-bundle-analyzer/lib/index' { +declare module 'webpack-bundle-analyzer/lib' { declare module.exports: any; } @@ -78,6 +78,10 @@ declare module 'webpack-bundle-analyzer/lib/tree/utils' { declare module.exports: any; } +declare module 'webpack-bundle-analyzer/lib/utils' { + declare module.exports: any; +} + declare module 'webpack-bundle-analyzer/lib/viewer' { declare module.exports: any; } @@ -98,7 +102,7 @@ declare module 'webpack-bundle-analyzer/src/BundleAnalyzerPlugin' { declare module.exports: any; } -declare module 'webpack-bundle-analyzer/src/index' { +declare module 'webpack-bundle-analyzer/src' { declare module.exports: any; } @@ -142,6 +146,10 @@ declare module 'webpack-bundle-analyzer/src/tree/utils' { declare module.exports: any; } +declare module 'webpack-bundle-analyzer/src/utils' { + declare module.exports: any; +} + declare module 'webpack-bundle-analyzer/src/viewer' { declare module.exports: any; } @@ -156,8 +164,11 @@ declare module 'webpack-bundle-analyzer/lib/bin/analyzer.js' { declare module 'webpack-bundle-analyzer/lib/BundleAnalyzerPlugin.js' { declare module.exports: $Exports<'webpack-bundle-analyzer/lib/BundleAnalyzerPlugin'>; } +declare module 'webpack-bundle-analyzer/lib/index' { + declare module.exports: $Exports<'webpack-bundle-analyzer/lib'>; +} declare module 'webpack-bundle-analyzer/lib/index.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/lib/index'>; + declare module.exports: $Exports<'webpack-bundle-analyzer/lib'>; } declare module 'webpack-bundle-analyzer/lib/Logger.js' { declare module.exports: $Exports<'webpack-bundle-analyzer/lib/Logger'>; @@ -189,6 +200,9 @@ declare module 'webpack-bundle-analyzer/lib/tree/Node.js' { declare module 'webpack-bundle-analyzer/lib/tree/utils.js' { declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/utils'>; } +declare module 'webpack-bundle-analyzer/lib/utils.js' { + declare module.exports: $Exports<'webpack-bundle-analyzer/lib/utils'>; +} declare module 'webpack-bundle-analyzer/lib/viewer.js' { declare module.exports: $Exports<'webpack-bundle-analyzer/lib/viewer'>; } @@ -204,8 +218,11 @@ declare module 'webpack-bundle-analyzer/src/bin/analyzer.js' { declare module 'webpack-bundle-analyzer/src/BundleAnalyzerPlugin.js' { declare module.exports: $Exports<'webpack-bundle-analyzer/src/BundleAnalyzerPlugin'>; } +declare module 'webpack-bundle-analyzer/src/index' { + declare module.exports: $Exports<'webpack-bundle-analyzer/src'>; +} declare module 'webpack-bundle-analyzer/src/index.js' { - declare module.exports: $Exports<'webpack-bundle-analyzer/src/index'>; + declare module.exports: $Exports<'webpack-bundle-analyzer/src'>; } declare module 'webpack-bundle-analyzer/src/Logger.js' { declare module.exports: $Exports<'webpack-bundle-analyzer/src/Logger'>; @@ -237,6 +254,9 @@ declare module 'webpack-bundle-analyzer/src/tree/Node.js' { declare module 'webpack-bundle-analyzer/src/tree/utils.js' { declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/utils'>; } +declare module 'webpack-bundle-analyzer/src/utils.js' { + declare module.exports: $Exports<'webpack-bundle-analyzer/src/utils'>; +} declare module 'webpack-bundle-analyzer/src/viewer.js' { declare module.exports: $Exports<'webpack-bundle-analyzer/src/viewer'>; } diff --git a/flow-typed/npm/webpack-cli_vx.x.x.js b/flow-typed/npm/webpack-cli_vx.x.x.js index ae27622b..fdbd2af4 100644 --- a/flow-typed/npm/webpack-cli_vx.x.x.js +++ b/flow-typed/npm/webpack-cli_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: e79c3736e47e9140aa90aeea345017d5 -// flow-typed version: <>/webpack-cli_v^2.0.8/flow_v0.66.0 +// flow-typed signature: c0d9da37983c7fa447eafe41f9f22c42 +// flow-typed version: <>/webpack-cli_v3.3.10/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,557 +22,60 @@ declare module 'webpack-cli' { * require those files directly. Feel free to delete any files that aren't * needed. */ -declare module 'webpack-cli/bin/config-yargs' { +declare module 'webpack-cli/bin/cli' { declare module.exports: any; } -declare module 'webpack-cli/bin/convert-argv' { +declare module 'webpack-cli/bin/config/config-yargs' { declare module.exports: any; } -declare module 'webpack-cli/bin/errorHelpers' { +declare module 'webpack-cli/bin/utils/constants' { declare module.exports: any; } -declare module 'webpack-cli/bin/prepareOptions' { +declare module 'webpack-cli/bin/utils/convert-argv' { declare module.exports: any; } -declare module 'webpack-cli/bin/process-options' { +declare module 'webpack-cli/bin/utils/errorHelpers' { declare module.exports: any; } -declare module 'webpack-cli/bin/webpack' { +declare module 'webpack-cli/bin/utils/prepareOptions' { declare module.exports: any; } -declare module 'webpack-cli/commitlint.config' { +declare module 'webpack-cli/bin/utils/prompt-command' { declare module.exports: any; } -declare module 'webpack-cli/lib/commands/add' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/init' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/make' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/migrate' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/remove' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/serve' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/commands/update' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generate-loader/index' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generate-plugin/index' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/add-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/init-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/loader-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/plugin-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/remove-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/update-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/entry' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/module' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/plugins' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/tooltip' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/utils/validate' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/generators/webpack-generator' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/index' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/index' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/context/context' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/devServer/devServer' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/devtool/devtool' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/entry/entry' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/externals/externals' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/mode/mode' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/module/module' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/node/node' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/other/amd' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/other/bail' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/other/cache' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/other/merge' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/other/parallelism' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/other/profile' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/other/recordsInputPath' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/other/recordsOutputPath' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/other/recordsPath' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/output/output' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/performance/performance' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/plugins/plugins' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/resolve/resolve' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/resolveLoader/resolveLoader' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/stats/stats' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/target/target' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/top-scope/top-scope' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/watch/watch' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/init/transformations/watch/watchOptions' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/bannerPlugin/bannerPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/extractTextPlugin/extractTextPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/index' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/loaderOptionsPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/loaders/loaders' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/outputPath/outputPath' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/removeDeprecatedPlugins' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/removeJsonLoader/removeJsonLoader' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/resolve/resolve' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/uglifyJsPlugin' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/ast-utils' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/copy-utils' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/defineTest' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/hashtable' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/is-local-path' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/modify-config-helper' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/npm-exists' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/npm-packages-exists' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/package-manager' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/prop-types' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/resolve-packages' { - declare module.exports: any; -} - -declare module 'webpack-cli/lib/utils/run-prettier' { +declare module 'webpack-cli/bin/utils/validate-options' { declare module.exports: any; } // Filename aliases -declare module 'webpack-cli/bin/config-yargs.js' { - declare module.exports: $Exports<'webpack-cli/bin/config-yargs'>; +declare module 'webpack-cli/bin/cli.js' { + declare module.exports: $Exports<'webpack-cli/bin/cli'>; } -declare module 'webpack-cli/bin/convert-argv.js' { - declare module.exports: $Exports<'webpack-cli/bin/convert-argv'>; +declare module 'webpack-cli/bin/config/config-yargs.js' { + declare module.exports: $Exports<'webpack-cli/bin/config/config-yargs'>; } -declare module 'webpack-cli/bin/errorHelpers.js' { - declare module.exports: $Exports<'webpack-cli/bin/errorHelpers'>; +declare module 'webpack-cli/bin/utils/constants.js' { + declare module.exports: $Exports<'webpack-cli/bin/utils/constants'>; } -declare module 'webpack-cli/bin/prepareOptions.js' { - declare module.exports: $Exports<'webpack-cli/bin/prepareOptions'>; +declare module 'webpack-cli/bin/utils/convert-argv.js' { + declare module.exports: $Exports<'webpack-cli/bin/utils/convert-argv'>; } -declare module 'webpack-cli/bin/process-options.js' { - declare module.exports: $Exports<'webpack-cli/bin/process-options'>; +declare module 'webpack-cli/bin/utils/errorHelpers.js' { + declare module.exports: $Exports<'webpack-cli/bin/utils/errorHelpers'>; } -declare module 'webpack-cli/bin/webpack.js' { - declare module.exports: $Exports<'webpack-cli/bin/webpack'>; +declare module 'webpack-cli/bin/utils/prepareOptions.js' { + declare module.exports: $Exports<'webpack-cli/bin/utils/prepareOptions'>; } -declare module 'webpack-cli/commitlint.config.js' { - declare module.exports: $Exports<'webpack-cli/commitlint.config'>; +declare module 'webpack-cli/bin/utils/prompt-command.js' { + declare module.exports: $Exports<'webpack-cli/bin/utils/prompt-command'>; } -declare module 'webpack-cli/lib/commands/add.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/add'>; -} -declare module 'webpack-cli/lib/commands/init.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/init'>; -} -declare module 'webpack-cli/lib/commands/make.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/make'>; -} -declare module 'webpack-cli/lib/commands/migrate.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/migrate'>; -} -declare module 'webpack-cli/lib/commands/remove.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/remove'>; -} -declare module 'webpack-cli/lib/commands/serve.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/serve'>; -} -declare module 'webpack-cli/lib/commands/update.js' { - declare module.exports: $Exports<'webpack-cli/lib/commands/update'>; -} -declare module 'webpack-cli/lib/generate-loader/index.js' { - declare module.exports: $Exports<'webpack-cli/lib/generate-loader/index'>; -} -declare module 'webpack-cli/lib/generate-plugin/index.js' { - declare module.exports: $Exports<'webpack-cli/lib/generate-plugin/index'>; -} -declare module 'webpack-cli/lib/generators/add-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/add-generator'>; -} -declare module 'webpack-cli/lib/generators/init-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/init-generator'>; -} -declare module 'webpack-cli/lib/generators/loader-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/loader-generator'>; -} -declare module 'webpack-cli/lib/generators/plugin-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/plugin-generator'>; -} -declare module 'webpack-cli/lib/generators/remove-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/remove-generator'>; -} -declare module 'webpack-cli/lib/generators/update-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/update-generator'>; -} -declare module 'webpack-cli/lib/generators/utils/entry.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/entry'>; -} -declare module 'webpack-cli/lib/generators/utils/module.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/module'>; -} -declare module 'webpack-cli/lib/generators/utils/plugins.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/plugins'>; -} -declare module 'webpack-cli/lib/generators/utils/tooltip.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/tooltip'>; -} -declare module 'webpack-cli/lib/generators/utils/validate.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/utils/validate'>; -} -declare module 'webpack-cli/lib/generators/webpack-generator.js' { - declare module.exports: $Exports<'webpack-cli/lib/generators/webpack-generator'>; -} -declare module 'webpack-cli/lib/index.js' { - declare module.exports: $Exports<'webpack-cli/lib/index'>; -} -declare module 'webpack-cli/lib/init/index.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/index'>; -} -declare module 'webpack-cli/lib/init/transformations/context/context.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/context/context'>; -} -declare module 'webpack-cli/lib/init/transformations/devServer/devServer.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/devServer/devServer'>; -} -declare module 'webpack-cli/lib/init/transformations/devtool/devtool.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/devtool/devtool'>; -} -declare module 'webpack-cli/lib/init/transformations/entry/entry.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/entry/entry'>; -} -declare module 'webpack-cli/lib/init/transformations/externals/externals.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/externals/externals'>; -} -declare module 'webpack-cli/lib/init/transformations/mode/mode.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/mode/mode'>; -} -declare module 'webpack-cli/lib/init/transformations/module/module.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/module/module'>; -} -declare module 'webpack-cli/lib/init/transformations/node/node.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/node/node'>; -} -declare module 'webpack-cli/lib/init/transformations/other/amd.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/other/amd'>; -} -declare module 'webpack-cli/lib/init/transformations/other/bail.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/other/bail'>; -} -declare module 'webpack-cli/lib/init/transformations/other/cache.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/other/cache'>; -} -declare module 'webpack-cli/lib/init/transformations/other/merge.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/other/merge'>; -} -declare module 'webpack-cli/lib/init/transformations/other/parallelism.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/other/parallelism'>; -} -declare module 'webpack-cli/lib/init/transformations/other/profile.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/other/profile'>; -} -declare module 'webpack-cli/lib/init/transformations/other/recordsInputPath.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/other/recordsInputPath'>; -} -declare module 'webpack-cli/lib/init/transformations/other/recordsOutputPath.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/other/recordsOutputPath'>; -} -declare module 'webpack-cli/lib/init/transformations/other/recordsPath.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/other/recordsPath'>; -} -declare module 'webpack-cli/lib/init/transformations/output/output.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/output/output'>; -} -declare module 'webpack-cli/lib/init/transformations/performance/performance.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/performance/performance'>; -} -declare module 'webpack-cli/lib/init/transformations/plugins/plugins.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/plugins/plugins'>; -} -declare module 'webpack-cli/lib/init/transformations/resolve/resolve.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/resolve/resolve'>; -} -declare module 'webpack-cli/lib/init/transformations/resolveLoader/resolveLoader.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/resolveLoader/resolveLoader'>; -} -declare module 'webpack-cli/lib/init/transformations/stats/stats.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/stats/stats'>; -} -declare module 'webpack-cli/lib/init/transformations/target/target.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/target/target'>; -} -declare module 'webpack-cli/lib/init/transformations/top-scope/top-scope.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/top-scope/top-scope'>; -} -declare module 'webpack-cli/lib/init/transformations/watch/watch.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/watch/watch'>; -} -declare module 'webpack-cli/lib/init/transformations/watch/watchOptions.js' { - declare module.exports: $Exports<'webpack-cli/lib/init/transformations/watch/watchOptions'>; -} -declare module 'webpack-cli/lib/migrate/bannerPlugin/bannerPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/bannerPlugin/bannerPlugin'>; -} -declare module 'webpack-cli/lib/migrate/extractTextPlugin/extractTextPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/extractTextPlugin/extractTextPlugin'>; -} -declare module 'webpack-cli/lib/migrate/index.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/index'>; -} -declare module 'webpack-cli/lib/migrate/loaderOptionsPlugin/loaderOptionsPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaderOptionsPlugin/loaderOptionsPlugin'>; -} -declare module 'webpack-cli/lib/migrate/loaders/loaders.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/loaders/loaders'>; -} -declare module 'webpack-cli/lib/migrate/outputPath/outputPath.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/outputPath/outputPath'>; -} -declare module 'webpack-cli/lib/migrate/removeDeprecatedPlugins/removeDeprecatedPlugins.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeDeprecatedPlugins/removeDeprecatedPlugins'>; -} -declare module 'webpack-cli/lib/migrate/removeJsonLoader/removeJsonLoader.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/removeJsonLoader/removeJsonLoader'>; -} -declare module 'webpack-cli/lib/migrate/resolve/resolve.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/resolve/resolve'>; -} -declare module 'webpack-cli/lib/migrate/uglifyJsPlugin/uglifyJsPlugin.js' { - declare module.exports: $Exports<'webpack-cli/lib/migrate/uglifyJsPlugin/uglifyJsPlugin'>; -} -declare module 'webpack-cli/lib/utils/ast-utils.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/ast-utils'>; -} -declare module 'webpack-cli/lib/utils/copy-utils.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/copy-utils'>; -} -declare module 'webpack-cli/lib/utils/defineTest.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/defineTest'>; -} -declare module 'webpack-cli/lib/utils/hashtable.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/hashtable'>; -} -declare module 'webpack-cli/lib/utils/is-local-path.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/is-local-path'>; -} -declare module 'webpack-cli/lib/utils/modify-config-helper.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/modify-config-helper'>; -} -declare module 'webpack-cli/lib/utils/npm-exists.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/npm-exists'>; -} -declare module 'webpack-cli/lib/utils/npm-packages-exists.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/npm-packages-exists'>; -} -declare module 'webpack-cli/lib/utils/package-manager.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/package-manager'>; -} -declare module 'webpack-cli/lib/utils/prop-types.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/prop-types'>; -} -declare module 'webpack-cli/lib/utils/resolve-packages.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/resolve-packages'>; -} -declare module 'webpack-cli/lib/utils/run-prettier.js' { - declare module.exports: $Exports<'webpack-cli/lib/utils/run-prettier'>; +declare module 'webpack-cli/bin/utils/validate-options.js' { + declare module.exports: $Exports<'webpack-cli/bin/utils/validate-options'>; } diff --git a/flow-typed/npm/webpack-dev-server_vx.x.x.js b/flow-typed/npm/webpack-dev-server_vx.x.x.js index 5279910f..c233d112 100644 --- a/flow-typed/npm/webpack-dev-server_vx.x.x.js +++ b/flow-typed/npm/webpack-dev-server_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 4240a2c7fe1e20086fc34729c483d938 -// flow-typed version: <>/webpack-dev-server_v^3.1.0/flow_v0.66.0 +// flow-typed signature: 618cf5507b07d7a873fa6353da6f2c92 +// flow-typed version: <>/webpack-dev-server_v3.9.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: @@ -22,15 +22,35 @@ declare module 'webpack-dev-server' { * require those files directly. Feel free to delete any files that aren't * needed. */ +declare module 'webpack-dev-server/bin/cli-flags' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/bin/options' { + declare module.exports: any; +} + declare module 'webpack-dev-server/bin/webpack-dev-server' { declare module.exports: any; } +declare module 'webpack-dev-server/client/clients/BaseClient' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/client/clients/SockJSClient' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/client/clients/WebsocketClient' { + declare module.exports: any; +} + declare module 'webpack-dev-server/client/index.bundle' { declare module.exports: any; } -declare module 'webpack-dev-server/client/index' { +declare module 'webpack-dev-server/client' { declare module.exports: any; } @@ -50,15 +70,23 @@ declare module 'webpack-dev-server/client/sockjs.bundle' { declare module.exports: any; } -declare module 'webpack-dev-server/lib/createLog' { +declare module 'webpack-dev-server/client/utils/createSocketUrl' { declare module.exports: any; } -declare module 'webpack-dev-server/lib/OptionsValidationError' { +declare module 'webpack-dev-server/client/utils/getCurrentScriptSource' { declare module.exports: any; } -declare module 'webpack-dev-server/lib/polyfills' { +declare module 'webpack-dev-server/client/utils/log' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/client/utils/reloadApp' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/client/utils/sendMessage' { declare module.exports: any; } @@ -66,23 +94,133 @@ declare module 'webpack-dev-server/lib/Server' { declare module.exports: any; } -declare module 'webpack-dev-server/lib/util/addDevServerEntrypoints' { +declare module 'webpack-dev-server/lib/servers/BaseServer' { declare module.exports: any; } -declare module 'webpack-dev-server/lib/util/createDomain' { +declare module 'webpack-dev-server/lib/servers/SockJSServer' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/servers/WebsocketServer' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/addEntries' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/colors' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/createCertificate' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/createConfig' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/createDomain' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/createLogger' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/defaultPort' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/defaultTo' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/findPort' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/getCertificate' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/getSocketClientPath' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/getSocketServerImplementation' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/getVersions' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/normalizeOptions' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/processOptions' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/routes' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/runBonjour' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/runOpen' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/setupExitSignals' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/status' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/tryParseInt' { + declare module.exports: any; +} + +declare module 'webpack-dev-server/lib/utils/updateCompiler' { declare module.exports: any; } // Filename aliases +declare module 'webpack-dev-server/bin/cli-flags.js' { + declare module.exports: $Exports<'webpack-dev-server/bin/cli-flags'>; +} +declare module 'webpack-dev-server/bin/options.js' { + declare module.exports: $Exports<'webpack-dev-server/bin/options'>; +} declare module 'webpack-dev-server/bin/webpack-dev-server.js' { declare module.exports: $Exports<'webpack-dev-server/bin/webpack-dev-server'>; } +declare module 'webpack-dev-server/client/clients/BaseClient.js' { + declare module.exports: $Exports<'webpack-dev-server/client/clients/BaseClient'>; +} +declare module 'webpack-dev-server/client/clients/SockJSClient.js' { + declare module.exports: $Exports<'webpack-dev-server/client/clients/SockJSClient'>; +} +declare module 'webpack-dev-server/client/clients/WebsocketClient.js' { + declare module.exports: $Exports<'webpack-dev-server/client/clients/WebsocketClient'>; +} declare module 'webpack-dev-server/client/index.bundle.js' { declare module.exports: $Exports<'webpack-dev-server/client/index.bundle'>; } +declare module 'webpack-dev-server/client/index' { + declare module.exports: $Exports<'webpack-dev-server/client'>; +} declare module 'webpack-dev-server/client/index.js' { - declare module.exports: $Exports<'webpack-dev-server/client/index'>; + declare module.exports: $Exports<'webpack-dev-server/client'>; } declare module 'webpack-dev-server/client/live.bundle.js' { declare module.exports: $Exports<'webpack-dev-server/client/live.bundle'>; @@ -96,21 +234,96 @@ declare module 'webpack-dev-server/client/socket.js' { declare module 'webpack-dev-server/client/sockjs.bundle.js' { declare module.exports: $Exports<'webpack-dev-server/client/sockjs.bundle'>; } -declare module 'webpack-dev-server/lib/createLog.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/createLog'>; +declare module 'webpack-dev-server/client/utils/createSocketUrl.js' { + declare module.exports: $Exports<'webpack-dev-server/client/utils/createSocketUrl'>; } -declare module 'webpack-dev-server/lib/OptionsValidationError.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/OptionsValidationError'>; +declare module 'webpack-dev-server/client/utils/getCurrentScriptSource.js' { + declare module.exports: $Exports<'webpack-dev-server/client/utils/getCurrentScriptSource'>; } -declare module 'webpack-dev-server/lib/polyfills.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/polyfills'>; +declare module 'webpack-dev-server/client/utils/log.js' { + declare module.exports: $Exports<'webpack-dev-server/client/utils/log'>; +} +declare module 'webpack-dev-server/client/utils/reloadApp.js' { + declare module.exports: $Exports<'webpack-dev-server/client/utils/reloadApp'>; +} +declare module 'webpack-dev-server/client/utils/sendMessage.js' { + declare module.exports: $Exports<'webpack-dev-server/client/utils/sendMessage'>; } declare module 'webpack-dev-server/lib/Server.js' { declare module.exports: $Exports<'webpack-dev-server/lib/Server'>; } -declare module 'webpack-dev-server/lib/util/addDevServerEntrypoints.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/util/addDevServerEntrypoints'>; +declare module 'webpack-dev-server/lib/servers/BaseServer.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/servers/BaseServer'>; } -declare module 'webpack-dev-server/lib/util/createDomain.js' { - declare module.exports: $Exports<'webpack-dev-server/lib/util/createDomain'>; +declare module 'webpack-dev-server/lib/servers/SockJSServer.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/servers/SockJSServer'>; +} +declare module 'webpack-dev-server/lib/servers/WebsocketServer.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/servers/WebsocketServer'>; +} +declare module 'webpack-dev-server/lib/utils/addEntries.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/addEntries'>; +} +declare module 'webpack-dev-server/lib/utils/colors.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/colors'>; +} +declare module 'webpack-dev-server/lib/utils/createCertificate.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/createCertificate'>; +} +declare module 'webpack-dev-server/lib/utils/createConfig.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/createConfig'>; +} +declare module 'webpack-dev-server/lib/utils/createDomain.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/createDomain'>; +} +declare module 'webpack-dev-server/lib/utils/createLogger.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/createLogger'>; +} +declare module 'webpack-dev-server/lib/utils/defaultPort.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/defaultPort'>; +} +declare module 'webpack-dev-server/lib/utils/defaultTo.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/defaultTo'>; +} +declare module 'webpack-dev-server/lib/utils/findPort.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/findPort'>; +} +declare module 'webpack-dev-server/lib/utils/getCertificate.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/getCertificate'>; +} +declare module 'webpack-dev-server/lib/utils/getSocketClientPath.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/getSocketClientPath'>; +} +declare module 'webpack-dev-server/lib/utils/getSocketServerImplementation.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/getSocketServerImplementation'>; +} +declare module 'webpack-dev-server/lib/utils/getVersions.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/getVersions'>; +} +declare module 'webpack-dev-server/lib/utils/normalizeOptions.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/normalizeOptions'>; +} +declare module 'webpack-dev-server/lib/utils/processOptions.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/processOptions'>; +} +declare module 'webpack-dev-server/lib/utils/routes.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/routes'>; +} +declare module 'webpack-dev-server/lib/utils/runBonjour.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/runBonjour'>; +} +declare module 'webpack-dev-server/lib/utils/runOpen.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/runOpen'>; +} +declare module 'webpack-dev-server/lib/utils/setupExitSignals.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/setupExitSignals'>; +} +declare module 'webpack-dev-server/lib/utils/status.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/status'>; +} +declare module 'webpack-dev-server/lib/utils/tryParseInt.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/tryParseInt'>; +} +declare module 'webpack-dev-server/lib/utils/updateCompiler.js' { + declare module.exports: $Exports<'webpack-dev-server/lib/utils/updateCompiler'>; } diff --git a/flow-typed/npm/webpack-manifest-plugin_vx.x.x.js b/flow-typed/npm/webpack-manifest-plugin_vx.x.x.js index c0a02b1b..f495507a 100644 --- a/flow-typed/npm/webpack-manifest-plugin_vx.x.x.js +++ b/flow-typed/npm/webpack-manifest-plugin_vx.x.x.js @@ -1,5 +1,5 @@ -// flow-typed signature: 4a47e87b8002ce26e0dd2f834a593d89 -// flow-typed version: <>/webpack-manifest-plugin_v^2.0.0-rc.2/flow_v0.66.0 +// flow-typed signature: 76943bdc23ab422ccbde4f74ab070387 +// flow-typed version: <>/webpack-manifest-plugin_v2.2.0/flow_v0.112.0 /** * This is an autogenerated libdef stub for: diff --git a/flow-typed/npm/webpack_v4.x.x.js b/flow-typed/npm/webpack_v4.x.x.js new file mode 100644 index 00000000..6b71c574 --- /dev/null +++ b/flow-typed/npm/webpack_v4.x.x.js @@ -0,0 +1,692 @@ +// flow-typed signature: fab19979b6b943bd172a4ace0f3a0550 +// flow-typed version: b942841feb/webpack_v4.x.x/flow_>=v0.104.x + +import * as http from 'http'; +import fs from 'fs'; + +declare module 'webpack' { + declare class $WebpackError extends Error { + constructor(message: string): WebpackError; + inspect(): string; + details: string; + } + + declare type WebpackError = $WebpackError; + + declare interface Stats { + hasErrors(): boolean; + hasWarnings(): boolean; + toJson(options?: StatsOptions): any; + toString(options?: StatsOptions & { colors?: boolean, ... }): string; + } + + declare type Callback = (error: WebpackError, stats: Stats) => void; + declare type WatchHandler = (error: WebpackError, stats: Stats) => void; + + declare type Watching = { + close(): void, + invalidate(): void, + ... + }; + + declare type WebpackCompiler = { + run(callback: Callback): void, + watch(options: WatchOptions, handler: WatchHandler): Watching, + ... + }; + + declare type WebpackMultiCompiler = { + run(callback: Callback): void, + watch(options: WatchOptions, handler: WatchHandler): Watching, + ... + }; + + declare class WebpackCompilation { + constructor(compiler: WebpackCompiler): WebpackCompilation; + // <...> + } + + declare class WebpackStats { + constructor(compilation: WebpackCompilation): WebpackStats; + // <...> + } + + declare type NonEmptyArrayOfUniqueStringValues = Array; + + declare type EntryObject = { [k: string]: string | NonEmptyArrayOfUniqueStringValues, ... }; + + declare type EntryItem = string | NonEmptyArrayOfUniqueStringValues; + + declare type EntryStatic = EntryObject | EntryItem; + + declare type EntryDynamic = () => EntryStatic | Promise; + + declare type Entry = EntryDynamic | EntryStatic; + + declare type ArrayOfStringValues = Array; + + declare type ExternalItem = + | string + | { [k: string]: + | string + | { [k: string]: any, ... } + | ArrayOfStringValues + | boolean, ... } + | RegExp; + + declare type Externals = + | (( + context: string, + request: string, + callback: (err?: Error, result?: string) => void + ) => void) + | ExternalItem + | Array< + | (( + context: string, + request: string, + callback: (err?: Error, result?: string) => void + ) => void) + | ExternalItem + >; + + declare type RuleSetCondition = + | RegExp + | string + | ((value: string) => boolean) + | RuleSetConditions + | { + and?: RuleSetConditions, + exclude?: RuleSetConditionOrConditions, + include?: RuleSetConditionOrConditions, + not?: RuleSetConditions, + or?: RuleSetConditions, + test?: RuleSetConditionOrConditions, + ... + }; + + declare type RuleSetConditions = Array; + + declare type RuleSetConditionOrConditions = + | RuleSetCondition + | RuleSetConditions; + + declare type RuleSetLoader = string; + + declare type RuleSetQuery = { [k: string]: any, ... } | string; + + declare type RuleSetUseItem = + | RuleSetLoader + | Function + | { + ident?: string, + loader?: RuleSetLoader, + options?: RuleSetQuery, + query?: RuleSetQuery, + ... + }; + + declare type RuleSetUse = RuleSetUseItem | Function | Array; + + declare type RuleSetRule = { + compiler?: RuleSetConditionOrConditions, + enforce?: 'pre' | 'post', + exclude?: RuleSetConditionOrConditions, + include?: RuleSetConditionOrConditions, + issuer?: RuleSetConditionOrConditions, + loader?: RuleSetLoader | RuleSetUse, + loaders?: RuleSetUse, + oneOf?: RuleSetRules, + options?: RuleSetQuery, + parser?: { [k: string]: any, ... }, + query?: RuleSetQuery, + resolve?: ResolveOptions, + resource?: RuleSetConditionOrConditions, + resourceQuery?: RuleSetConditionOrConditions, + rules?: RuleSetRules, + sideEffects?: boolean, + test?: RuleSetConditionOrConditions, + type?: + | 'javascript/auto' + | 'javascript/dynamic' + | 'javascript/esm' + | 'json' + | 'webassembly/experimental', + use?: RuleSetUse, + ... + }; + + declare type RuleSetRules = Array; + + declare type ModuleOptions = { + defaultRules?: RuleSetRules, + exprContextCritical?: boolean, + exprContextRecursive?: boolean, + exprContextRegExp?: boolean | RegExp, + exprContextRequest?: string, + noParse?: Array | RegExp | Function | Array | string, + rules?: RuleSetRules, + strictExportPresence?: boolean, + strictThisContextOnImports?: boolean, + unknownContextCritical?: boolean, + unknownContextRecursive?: boolean, + unknownContextRegExp?: boolean | RegExp, + unknownContextRequest?: string, + unsafeCache?: boolean | Function, + wrappedContextCritical?: boolean, + wrappedContextRecursive?: boolean, + wrappedContextRegExp?: RegExp, + ... + }; + + declare type NodeOptions = { + [k: string]: false | true | 'mock' | 'empty', + Buffer?: false | true | 'mock', + __dirname?: false | true | 'mock', + __filename?: false | true | 'mock', + console?: false | true | 'mock', + global?: boolean, + process?: false | true | 'mock', + ... + }; + + declare type WebpackPluginFunction = (compiler: WebpackCompiler) => void; + + declare type WebpackPluginInstance = { + [k: string]: any, + apply: WebpackPluginFunction, + ... + }; + + declare type OptimizationSplitChunksOptions = { + automaticNameDelimiter?: string, + cacheGroups?: { [k: string]: + | false + | Function + | string + | RegExp + | { + automaticNameDelimiter?: string, + automaticNamePrefix?: string, + chunks?: ('initial' | 'async' | 'all') | Function, + enforce?: boolean, + filename?: string, + maxAsyncRequests?: number, + maxInitialRequests?: number, + maxSize?: number, + minChunks?: number, + minSize?: number, + name?: boolean | Function | string, + priority?: number, + reuseExistingChunk?: boolean, + test?: Function | string | RegExp, + ... + }, ... }, + chunks?: ('initial' | 'async' | 'all') | Function, + fallbackCacheGroup?: { + automaticNameDelimiter?: string, + maxSize?: number, + minSize?: number, + ... + }, + filename?: string, + hidePathInfo?: boolean, + maxAsyncRequests?: number, + maxInitialRequests?: number, + maxSize?: number, + minChunks?: number, + minSize?: number, + name?: boolean | Function | string, + ... + }; + + declare type OptimizationOptions = { + checkWasmTypes?: boolean, + chunkIds?: 'natural' | 'named' | 'size' | 'total-size' | false, + concatenateModules?: boolean, + flagIncludedChunks?: boolean, + hashedModuleIds?: boolean, + mangleWasmImports?: boolean, + mergeDuplicateChunks?: boolean, + minimize?: boolean, + minimizer?: Array, + moduleIds?: 'natural' | 'named' | 'hashed' | 'size' | 'total-size' | false, + namedChunks?: boolean, + namedModules?: boolean, + noEmitOnErrors?: boolean, + nodeEnv?: false | string, + occurrenceOrder?: boolean, + portableRecords?: boolean, + providedExports?: boolean, + removeAvailableModules?: boolean, + removeEmptyChunks?: boolean, + runtimeChunk?: + | boolean + | ('single' | 'multiple') + | { name?: string | Function, ... }, + sideEffects?: boolean, + splitChunks?: false | OptimizationSplitChunksOptions, + usedExports?: boolean, + ... + }; + + declare type LibraryCustomUmdObject = { + amd?: string, + commonjs?: string, + root?: string | ArrayOfStringValues, + ... + }; + + declare type OutputOptions = { + auxiliaryComment?: + | string + | { + amd?: string, + commonjs?: string, + commonjs2?: string, + root?: string, + ... + }, + chunkCallbackName?: string, + chunkFilename?: string, + chunkLoadTimeout?: number, + crossOriginLoading?: false | 'anonymous' | 'use-credentials', + devtoolFallbackModuleFilenameTemplate?: string | Function, + devtoolLineToLine?: boolean | { [k: string]: any, ... }, + devtoolModuleFilenameTemplate?: string | Function, + devtoolNamespace?: string, + filename?: string | Function, + globalObject?: string, + hashDigest?: string, + hashDigestLength?: number, + hashFunction?: string | Function, + hashSalt?: string, + hotUpdateChunkFilename?: string | Function, + hotUpdateFunction?: string, + hotUpdateMainFilename?: string | Function, + jsonpFunction?: string, + jsonpScriptType?: false | 'text/javascript' | 'module', + library?: string | Array | LibraryCustomUmdObject, + libraryExport?: string | ArrayOfStringValues, + libraryTarget?: + | 'var' + | 'assign' + | 'this' + | 'window' + | 'self' + | 'global' + | 'commonjs' + | 'commonjs2' + | 'commonjs-module' + | 'amd' + | 'amd-require' + | 'umd' + | 'umd2' + | 'jsonp', + path?: string, + pathinfo?: boolean, + publicPath?: string | Function, + sourceMapFilename?: string, + sourcePrefix?: string, + strictModuleExceptionHandling?: boolean, + umdNamedDefine?: boolean, + webassemblyModuleFilename?: string, + ... + }; + + declare type PerformanceOptions = { + assetFilter?: Function, + hints?: false | 'warning' | 'error', + maxAssetSize?: number, + maxEntrypointSize?: number, + ... + }; + + declare type ArrayOfStringOrStringArrayValues = Array>; + + declare type ResolveOptions = { + alias?: + | { [k: string]: string, ... } + | Array<{ + alias?: string, + name?: string, + onlyModule?: boolean, + ... + }>, + aliasFields?: ArrayOfStringOrStringArrayValues, + cachePredicate?: Function, + cacheWithContext?: boolean, + concord?: boolean, + descriptionFiles?: ArrayOfStringValues, + enforceExtension?: boolean, + enforceModuleExtension?: boolean, + extensions?: ArrayOfStringValues, + fileSystem?: { [k: string]: any, ... }, + mainFields?: ArrayOfStringOrStringArrayValues, + mainFiles?: ArrayOfStringValues, + moduleExtensions?: ArrayOfStringValues, + modules?: ArrayOfStringValues, + plugins?: Array, + resolver?: { [k: string]: any, ... }, + symlinks?: boolean, + unsafeCache?: boolean | { [k: string]: any, ... }, + useSyncFileSystemCalls?: boolean, + ... + }; + + declare type FilterItemTypes = RegExp | string | Function; + + declare type FilterTypes = FilterItemTypes | Array; + + declare type StatsOptions = + | boolean + | ('none' | 'errors-only' | 'minimal' | 'normal' | 'detailed' | 'verbose') + | { + all?: boolean, + assets?: boolean, + assetsSort?: string, + builtAt?: boolean, + cached?: boolean, + cachedAssets?: boolean, + children?: boolean, + chunkGroups?: boolean, + chunkModules?: boolean, + chunkOrigins?: boolean, + chunks?: boolean, + chunksSort?: string, + colors?: + | boolean + | { + bold?: string, + cyan?: string, + green?: string, + magenta?: string, + red?: string, + yellow?: string, + ... + }, + context?: string, + depth?: boolean, + entrypoints?: boolean, + env?: boolean, + errorDetails?: boolean, + errors?: boolean, + exclude?: FilterTypes | boolean, + excludeAssets?: FilterTypes, + excludeModules?: FilterTypes | boolean, + hash?: boolean, + maxModules?: number, + moduleAssets?: boolean, + moduleTrace?: boolean, + modules?: boolean, + modulesSort?: string, + nestedModules?: boolean, + optimizationBailout?: boolean, + outputPath?: boolean, + performance?: boolean, + providedExports?: boolean, + publicPath?: boolean, + reasons?: boolean, + source?: boolean, + timings?: boolean, + usedExports?: boolean, + version?: boolean, + warnings?: boolean, + warningsFilter?: FilterTypes, + ... + }; + + declare type WatchOptions = { + aggregateTimeout?: number, + ignored?: { [k: string]: any, ... }, + poll?: boolean | number, + stdin?: boolean, + ... + }; + + declare type WebpackOptions = { + amd?: { [k: string]: any, ... }, + bail?: boolean, + cache?: boolean | { [k: string]: any, ... }, + context?: string, + dependencies?: Array, + devServer?: { + after?: (app: any, server: http.Server) => void, + allowedHosts?: string[], + before?: (app: any, server: http.Server) => void, + bonjour?: boolean, + clientLogLevel?: 'none' | 'info' | 'error' | 'warning', + compress?: boolean, + contentBase?: false | string | string[] | number, + disableHostCheck?: boolean, + filename?: string, + headers?: { [key: string]: string, ... }, + historyApiFallback?: + | boolean + | { + rewrites?: Array<{ + from: string, + to: string, + ... + }>, + disableDotRule?: boolean, + ... + }, + host?: string, + hot?: boolean, + hotOnly?: boolean, + https?: + | boolean + | { + key: string, + cert: string, + ca?: string, + ... + }, + index?: string, + inline?: boolean, + lazy?: boolean, + noInfo?: boolean, + open?: boolean | string, + openPage?: string, + overlay?: + | boolean + | { + errors?: boolean, + warnings?: boolean, + ... + }, + pfx?: string, + pfxPassphrase?: string, + port?: number, + proxy?: Object | Array, + public?: string, + publicPath?: string, + quiet?: boolean, + socket?: string, + staticOptions?: { + dotfiles?: string, + etag?: boolean, + extensions?: false | string[], + fallthrough?: boolean, + immutable?: boolean, + index?: false | string, + lastModified?: boolean, + maxAge?: number, + redirect?: boolean, + setHeaders?: ( + res: http.OutgoingMessage, + path: string, + stat: fs.Stat + ) => void, + ... + }, + stats?: StatsOptions, + useLocalIp?: boolean, + watchContentBase?: boolean, + watchOptions?: WatchOptions, + publicPath?: string, + ... + }, + devtool?: + | '@cheap-eval-source-map' + | '@cheap-module-eval-source-map' + | '@cheap-module-source-map' + | '@cheap-source-map' + | '@eval-source-map' + | '@eval' + | '@hidden-source-map' + | '@inline-source-map' + | '@nosources-source-map' + | '@source-map' + | '#@cheap-eval-source-map' + | '#@cheap-module-eval-source-map' + | '#@cheap-module-source-map' + | '#@cheap-source-map' + | '#@eval-source-map' + | '#@eval' + | '#@hidden-source-map' + | '#@inline-source-map' + | '#@nosources-source-map' + | '#@source-map' + | '#cheap-eval-source-map' + | '#cheap-module-eval-source-map' + | '#cheap-module-source-map' + | '#cheap-source-map' + | '#eval-source-map' + | '#eval' + | '#hidden-source-map' + | '#inline-source-map' + | '#nosources-source-map' + | '#source-map' + | 'cheap-eval-source-map' + | 'cheap-module-eval-source-map' + | 'cheap-module-source-map' + | 'cheap-source-map' + | 'eval-source-map' + | 'eval' + | 'hidden-source-map' + | 'inline-source-map' + | 'nosources-source-map' + | 'source-map' + | false, + entry?: Entry, + externals?: Externals, + loader?: { [k: string]: any, ... }, + mode?: 'development' | 'production' | 'none', + module?: ModuleOptions, + name?: string, + node?: false | NodeOptions, + optimization?: OptimizationOptions, + output?: OutputOptions, + parallelism?: number, + performance?: false | PerformanceOptions, + plugins?: Array, + profile?: boolean, + recordsInputPath?: string, + recordsOutputPath?: string, + recordsPath?: string, + resolve?: ResolveOptions, + resolveLoader?: ResolveOptions, + serve?: { [k: string]: any, ... }, + stats?: StatsOptions, + target?: + | 'web' + | 'webworker' + | 'node' + | 'async-node' + | 'node-webkit' + | 'electron-main' + | 'electron-renderer' + | ((compiler: WebpackCompiler) => void), + watch?: boolean, + watchOptions?: WatchOptions, + ... + }; + + declare class EnvironmentPlugin { + constructor(env: { [string]: mixed, ... } | string[]): $ElementType< + $NonMaybeType<$PropertyType>, + number + >; + } + + declare class DefinePlugin { + constructor({ [string]: string, ... }): $ElementType< + $NonMaybeType<$PropertyType>, + number + >; + } + + declare class IgnorePlugin { + constructor(RegExp | {| + resourceRegExp: RegExp, + contextRegExp?: RegExp, + |}, void | RegExp): $ElementType< + $NonMaybeType<$PropertyType>, + number + >; + } + + declare class SourceMapDevToolPlugin { + constructor({| + test?: ?(string | RegExp | Array), + include?: ?(string | RegExp | Array), + exclude?: ?(string | RegExp | Array), + filename?: ?string, + append?: ?(string | false), + moduleFilenameTemplate?: ?string, + fallbackModuleFilenameTemplate?: ?string, + namespace?: ?string, + module?: ?boolean, + columns?: ?boolean, + lineToLine?: ?(boolean | {| + test?: ?(string | RegExp | Array), + include?: ?(string | RegExp | Array), + exclude?: ?(string | RegExp | Array), + |}), + noSources?: ?boolean, + publicPath?: ?string, + fileContext?: ?string, + |}): $ElementType< + $NonMaybeType<$PropertyType>, + number + >; + } + + declare class HotModuleReplacementPlugin { + constructor(): $ElementType< + $NonMaybeType<$PropertyType>, + number + >; + } + + declare class ContextReplacementPlugin { + constructor( + resourceRegExp: RegExp, + newContentRegExp?: RegExp + ): $ElementType< + $NonMaybeType<$PropertyType>, + number + >; + } + + declare function builder( + options: WebpackOptions, + callback?: Callback + ): WebpackCompiler; + declare function builder( + options: WebpackOptions[], + callback?: Callback + ): WebpackMultiCompiler; + + declare module.exports: typeof builder & { + EnvironmentPlugin: typeof EnvironmentPlugin, + DefinePlugin: typeof DefinePlugin, + IgnorePlugin: typeof IgnorePlugin, + SourceMapDevToolPlugin: typeof SourceMapDevToolPlugin, + HotModuleReplacementPlugin: typeof HotModuleReplacementPlugin, + ContextReplacementPlugin: typeof ContextReplacementPlugin, + ... + }; +} diff --git a/flow-typed/npm/webpack_vx.x.x.js b/flow-typed/npm/webpack_vx.x.x.js deleted file mode 100644 index 16acc2c8..00000000 --- a/flow-typed/npm/webpack_vx.x.x.js +++ /dev/null @@ -1,2097 +0,0 @@ -// flow-typed signature: 3557fbc190b720039ecba5ac8ae2be41 -// flow-typed version: <>/webpack_v^4.1.1/flow_v0.66.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'webpack' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'webpack' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'webpack/bin/webpack' { - declare module.exports: any; -} - -declare module 'webpack/buildin/amd-define' { - declare module.exports: any; -} - -declare module 'webpack/buildin/amd-options' { - declare module.exports: any; -} - -declare module 'webpack/buildin/global' { - declare module.exports: any; -} - -declare module 'webpack/buildin/harmony-module' { - declare module.exports: any; -} - -declare module 'webpack/buildin/module' { - declare module.exports: any; -} - -declare module 'webpack/buildin/system' { - declare module.exports: any; -} - -declare module 'webpack/hot/dev-server' { - declare module.exports: any; -} - -declare module 'webpack/hot/emitter' { - declare module.exports: any; -} - -declare module 'webpack/hot/log-apply-result' { - declare module.exports: any; -} - -declare module 'webpack/hot/log' { - declare module.exports: any; -} - -declare module 'webpack/hot/only-dev-server' { - declare module.exports: any; -} - -declare module 'webpack/hot/poll' { - declare module.exports: any; -} - -declare module 'webpack/hot/signal' { - declare module.exports: any; -} - -declare module 'webpack/lib/AmdMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/APIPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/AsyncDependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/AsyncDependencyToInitialChunkError' { - declare module.exports: any; -} - -declare module 'webpack/lib/AutomaticPrefetchPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/BannerPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/BasicEvaluatedExpression' { - declare module.exports: any; -} - -declare module 'webpack/lib/CachePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/CaseSensitiveModulesWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/Chunk' { - declare module.exports: any; -} - -declare module 'webpack/lib/ChunkGroup' { - declare module.exports: any; -} - -declare module 'webpack/lib/ChunkRenderError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ChunkTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/compareLocations' { - declare module.exports: any; -} - -declare module 'webpack/lib/CompatibilityPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/Compilation' { - declare module.exports: any; -} - -declare module 'webpack/lib/Compiler' { - declare module.exports: any; -} - -declare module 'webpack/lib/ConstPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ContextExclusionPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ContextModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/ContextModuleFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/ContextReplacementPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/debug/ProfilingPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DefinePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DelegatedModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/DelegatedModuleFactoryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DelegatedPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDDefineDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDDefineDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireArrayDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/AMDRequireItemDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CommonJsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CommonJsRequireContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CommonJsRequireDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ConstDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextDependencyHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsId' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ContextElementDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/CriticalDependencyWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/DelegatedExportsDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/DelegatedSourceDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/DllEntryDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/getFunctionExpression' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyAcceptDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyAcceptImportDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyCompatibilityDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyDetectionParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportExpressionDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportHeaderDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyExportSpecifierDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyImportDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyImportDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyImportSideEffectDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyImportSpecifierDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyInitDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportDependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportEagerDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ImportWeakDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/JsonExportsDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LoaderDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LoaderPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LocalModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LocalModuleDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/LocalModulesHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsId' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleHotAcceptDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/ModuleHotDeclineDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/MultiEntryDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/NullDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/PrefetchDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireContextDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireContextPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsureDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsureItemDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireEnsurePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireHeaderDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireIncludeDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireIncludeDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireIncludePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireResolveContextDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireResolveDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireResolveDependencyParserPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/RequireResolveHeaderDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/SingleEntryDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/SystemPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/UnsupportedDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/WebAssemblyImportDependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/dependencies/WebpackMissingModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/DependenciesBlock' { - declare module.exports: any; -} - -declare module 'webpack/lib/DependenciesBlockVariable' { - declare module.exports: any; -} - -declare module 'webpack/lib/Dependency' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllEntryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllModuleFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DllReferencePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/DynamicEntryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/EntryModuleNotFoundError' { - declare module.exports: any; -} - -declare module 'webpack/lib/EntryOptionPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/Entrypoint' { - declare module.exports: any; -} - -declare module 'webpack/lib/EnvironmentPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ErrorHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/EvalDevToolModulePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/EvalDevToolModuleTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/EvalSourceMapDevToolPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExportPropertyMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExtendedAPIPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExternalModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExternalModuleFactoryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ExternalsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/FlagDependencyExportsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/FlagDependencyUsagePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/FlagInitialModulesAsUsedPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/formatLocation' { - declare module.exports: any; -} - -declare module 'webpack/lib/FunctionModulePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/FunctionModuleTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/GraphHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/HashedModuleIdsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/HotModuleReplacement.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/HotModuleReplacementPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/HotUpdateChunkTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/IgnorePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/JavascriptGenerator' { - declare module.exports: any; -} - -declare module 'webpack/lib/JavascriptModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/JsonGenerator' { - declare module.exports: any; -} - -declare module 'webpack/lib/JsonModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/JsonParser' { - declare module.exports: any; -} - -declare module 'webpack/lib/LibManifestPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/LibraryTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/LoaderOptionsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/LoaderTargetPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/MainTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/MemoryOutputFileSystem' { - declare module.exports: any; -} - -declare module 'webpack/lib/Module' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleBuildError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleDependencyError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleDependencyWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleFilenameHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleNotFoundError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleParseError' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleReason' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/ModuleWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiCompiler' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiEntryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiModuleFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiStats' { - declare module.exports: any; -} - -declare module 'webpack/lib/MultiWatching' { - declare module.exports: any; -} - -declare module 'webpack/lib/NamedChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NamedModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeEnvironmentPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeHotUpdateChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeMainTemplate.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeMainTemplateAsync.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeOutputFileSystem' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeSourcePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeTargetPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/NodeWatchFileSystem' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/ReadFileCompileWasmMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/node/ReadFileCompileWasmTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NodeStuffPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NoEmitOnErrorsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NoModeWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/NormalModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/NormalModuleFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/NormalModuleReplacementPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/NullFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/AggressiveMergingPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/AggressiveSplittingPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/ChunkModuleIdRangePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/ConcatenatedModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/EnsureChunkConditionsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/FlagIncludedChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/LimitChunkCountPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/MergeDuplicateChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/MinChunkSizePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/ModuleConcatenationPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/OccurrenceOrderPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/RemoveEmptyChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/RemoveParentModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/RuntimeChunkPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/SideEffectsFlagPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/optimize/SplitChunksPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/OptionsApply' { - declare module.exports: any; -} - -declare module 'webpack/lib/OptionsDefaulter' { - declare module.exports: any; -} - -declare module 'webpack/lib/Parser' { - declare module.exports: any; -} - -declare module 'webpack/lib/ParserHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/performance/AssetsOverSizeLimitWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/performance/EntrypointsOverSizeLimitWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/performance/NoAsyncChunksWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/performance/SizeLimitsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/PrefetchPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/prepareOptions' { - declare module.exports: any; -} - -declare module 'webpack/lib/ProgressPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ProvidePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/RawModule' { - declare module.exports: any; -} - -declare module 'webpack/lib/RecordIdsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/RemovedPluginError' { - declare module.exports: any; -} - -declare module 'webpack/lib/RequestShortener' { - declare module.exports: any; -} - -declare module 'webpack/lib/RequireJsStuffPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/ResolverFactory' { - declare module.exports: any; -} - -declare module 'webpack/lib/RuleSet' { - declare module.exports: any; -} - -declare module 'webpack/lib/RuntimeTemplate' { - declare module.exports: any; -} - -declare module 'webpack/lib/SetVarMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/SingleEntryPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/SizeFormatHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/SourceMapDevToolModuleOptionsPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/SourceMapDevToolPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/Stats' { - declare module.exports: any; -} - -declare module 'webpack/lib/Template' { - declare module.exports: any; -} - -declare module 'webpack/lib/TemplatedPathPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/UmdMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/UnsupportedFeatureWarning' { - declare module.exports: any; -} - -declare module 'webpack/lib/UseStrictPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/cachedMerge' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/createHash' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/identifier' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/objectToMap' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/Queue' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/Semaphore' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/SetHelpers' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/SortableSet' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/StackedSetMap' { - declare module.exports: any; -} - -declare module 'webpack/lib/util/TrackingSet' { - declare module.exports: any; -} - -declare module 'webpack/lib/validateSchema' { - declare module.exports: any; -} - -declare module 'webpack/lib/WarnCaseSensitiveModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/WarnNoModeSetPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/wasm/WasmModuleTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/WatchIgnorePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/Watching' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/FetchCompileWasmMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/FetchCompileWasmTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpExportMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpMainTemplate.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/JsonpTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/web/WebEnvironmentPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebAssemblyGenerator' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebAssemblyModulesPlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebAssemblyParser' { - declare module.exports: any; -} - -declare module 'webpack/lib/webpack' { - declare module.exports: any; -} - -declare module 'webpack/lib/webpack.web' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebpackError' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebpackOptionsApply' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebpackOptionsDefaulter' { - declare module.exports: any; -} - -declare module 'webpack/lib/WebpackOptionsValidationError' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerMainTemplate.runtime' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerMainTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/lib/webworker/WebWorkerTemplatePlugin' { - declare module.exports: any; -} - -declare module 'webpack/schemas/ajv.absolutePath' { - declare module.exports: any; -} - -declare module 'webpack/web_modules/node-libs-browser' { - declare module.exports: any; -} - -// Filename aliases -declare module 'webpack/bin/webpack.js' { - declare module.exports: $Exports<'webpack/bin/webpack'>; -} -declare module 'webpack/buildin/amd-define.js' { - declare module.exports: $Exports<'webpack/buildin/amd-define'>; -} -declare module 'webpack/buildin/amd-options.js' { - declare module.exports: $Exports<'webpack/buildin/amd-options'>; -} -declare module 'webpack/buildin/global.js' { - declare module.exports: $Exports<'webpack/buildin/global'>; -} -declare module 'webpack/buildin/harmony-module.js' { - declare module.exports: $Exports<'webpack/buildin/harmony-module'>; -} -declare module 'webpack/buildin/module.js' { - declare module.exports: $Exports<'webpack/buildin/module'>; -} -declare module 'webpack/buildin/system.js' { - declare module.exports: $Exports<'webpack/buildin/system'>; -} -declare module 'webpack/hot/dev-server.js' { - declare module.exports: $Exports<'webpack/hot/dev-server'>; -} -declare module 'webpack/hot/emitter.js' { - declare module.exports: $Exports<'webpack/hot/emitter'>; -} -declare module 'webpack/hot/log-apply-result.js' { - declare module.exports: $Exports<'webpack/hot/log-apply-result'>; -} -declare module 'webpack/hot/log.js' { - declare module.exports: $Exports<'webpack/hot/log'>; -} -declare module 'webpack/hot/only-dev-server.js' { - declare module.exports: $Exports<'webpack/hot/only-dev-server'>; -} -declare module 'webpack/hot/poll.js' { - declare module.exports: $Exports<'webpack/hot/poll'>; -} -declare module 'webpack/hot/signal.js' { - declare module.exports: $Exports<'webpack/hot/signal'>; -} -declare module 'webpack/lib/AmdMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/AmdMainTemplatePlugin'>; -} -declare module 'webpack/lib/APIPlugin.js' { - declare module.exports: $Exports<'webpack/lib/APIPlugin'>; -} -declare module 'webpack/lib/AsyncDependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/AsyncDependenciesBlock'>; -} -declare module 'webpack/lib/AsyncDependencyToInitialChunkError.js' { - declare module.exports: $Exports<'webpack/lib/AsyncDependencyToInitialChunkError'>; -} -declare module 'webpack/lib/AutomaticPrefetchPlugin.js' { - declare module.exports: $Exports<'webpack/lib/AutomaticPrefetchPlugin'>; -} -declare module 'webpack/lib/BannerPlugin.js' { - declare module.exports: $Exports<'webpack/lib/BannerPlugin'>; -} -declare module 'webpack/lib/BasicEvaluatedExpression.js' { - declare module.exports: $Exports<'webpack/lib/BasicEvaluatedExpression'>; -} -declare module 'webpack/lib/CachePlugin.js' { - declare module.exports: $Exports<'webpack/lib/CachePlugin'>; -} -declare module 'webpack/lib/CaseSensitiveModulesWarning.js' { - declare module.exports: $Exports<'webpack/lib/CaseSensitiveModulesWarning'>; -} -declare module 'webpack/lib/Chunk.js' { - declare module.exports: $Exports<'webpack/lib/Chunk'>; -} -declare module 'webpack/lib/ChunkGroup.js' { - declare module.exports: $Exports<'webpack/lib/ChunkGroup'>; -} -declare module 'webpack/lib/ChunkRenderError.js' { - declare module.exports: $Exports<'webpack/lib/ChunkRenderError'>; -} -declare module 'webpack/lib/ChunkTemplate.js' { - declare module.exports: $Exports<'webpack/lib/ChunkTemplate'>; -} -declare module 'webpack/lib/compareLocations.js' { - declare module.exports: $Exports<'webpack/lib/compareLocations'>; -} -declare module 'webpack/lib/CompatibilityPlugin.js' { - declare module.exports: $Exports<'webpack/lib/CompatibilityPlugin'>; -} -declare module 'webpack/lib/Compilation.js' { - declare module.exports: $Exports<'webpack/lib/Compilation'>; -} -declare module 'webpack/lib/Compiler.js' { - declare module.exports: $Exports<'webpack/lib/Compiler'>; -} -declare module 'webpack/lib/ConstPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ConstPlugin'>; -} -declare module 'webpack/lib/ContextExclusionPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ContextExclusionPlugin'>; -} -declare module 'webpack/lib/ContextModule.js' { - declare module.exports: $Exports<'webpack/lib/ContextModule'>; -} -declare module 'webpack/lib/ContextModuleFactory.js' { - declare module.exports: $Exports<'webpack/lib/ContextModuleFactory'>; -} -declare module 'webpack/lib/ContextReplacementPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ContextReplacementPlugin'>; -} -declare module 'webpack/lib/debug/ProfilingPlugin.js' { - declare module.exports: $Exports<'webpack/lib/debug/ProfilingPlugin'>; -} -declare module 'webpack/lib/DefinePlugin.js' { - declare module.exports: $Exports<'webpack/lib/DefinePlugin'>; -} -declare module 'webpack/lib/DelegatedModule.js' { - declare module.exports: $Exports<'webpack/lib/DelegatedModule'>; -} -declare module 'webpack/lib/DelegatedModuleFactoryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DelegatedModuleFactoryPlugin'>; -} -declare module 'webpack/lib/DelegatedPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DelegatedPlugin'>; -} -declare module 'webpack/lib/dependencies/AMDDefineDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDDefineDependency'>; -} -declare module 'webpack/lib/dependencies/AMDDefineDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDDefineDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/AMDPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDPlugin'>; -} -declare module 'webpack/lib/dependencies/AMDRequireArrayDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireArrayDependency'>; -} -declare module 'webpack/lib/dependencies/AMDRequireContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireContextDependency'>; -} -declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireDependenciesBlock'>; -} -declare module 'webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireDependenciesBlockParserPlugin'>; -} -declare module 'webpack/lib/dependencies/AMDRequireDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireDependency'>; -} -declare module 'webpack/lib/dependencies/AMDRequireItemDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/AMDRequireItemDependency'>; -} -declare module 'webpack/lib/dependencies/CommonJsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsPlugin'>; -} -declare module 'webpack/lib/dependencies/CommonJsRequireContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsRequireContextDependency'>; -} -declare module 'webpack/lib/dependencies/CommonJsRequireDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsRequireDependency'>; -} -declare module 'webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CommonJsRequireDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/ConstDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ConstDependency'>; -} -declare module 'webpack/lib/dependencies/ContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependency'>; -} -declare module 'webpack/lib/dependencies/ContextDependencyHelpers.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependencyHelpers'>; -} -declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsId.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependencyTemplateAsId'>; -} -declare module 'webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextDependencyTemplateAsRequireCall'>; -} -declare module 'webpack/lib/dependencies/ContextElementDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ContextElementDependency'>; -} -declare module 'webpack/lib/dependencies/CriticalDependencyWarning.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/CriticalDependencyWarning'>; -} -declare module 'webpack/lib/dependencies/DelegatedExportsDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/DelegatedExportsDependency'>; -} -declare module 'webpack/lib/dependencies/DelegatedSourceDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/DelegatedSourceDependency'>; -} -declare module 'webpack/lib/dependencies/DllEntryDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/DllEntryDependency'>; -} -declare module 'webpack/lib/dependencies/getFunctionExpression.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/getFunctionExpression'>; -} -declare module 'webpack/lib/dependencies/HarmonyAcceptDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyAcceptDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyAcceptImportDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyAcceptImportDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyCompatibilityDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyCompatibilityDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyDetectionParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyDetectionParserPlugin'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportExpressionDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportExpressionDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportHeaderDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportHeaderDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportImportedSpecifierDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyExportSpecifierDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyExportSpecifierDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyImportDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyImportDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/HarmonyImportSideEffectDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportSideEffectDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyImportSpecifierDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyImportSpecifierDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyInitDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyInitDependency'>; -} -declare module 'webpack/lib/dependencies/HarmonyModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyModulesPlugin'>; -} -declare module 'webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/HarmonyTopLevelThisParserPlugin'>; -} -declare module 'webpack/lib/dependencies/ImportContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportContextDependency'>; -} -declare module 'webpack/lib/dependencies/ImportDependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportDependenciesBlock'>; -} -declare module 'webpack/lib/dependencies/ImportDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportDependency'>; -} -declare module 'webpack/lib/dependencies/ImportEagerDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportEagerDependency'>; -} -declare module 'webpack/lib/dependencies/ImportParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportParserPlugin'>; -} -declare module 'webpack/lib/dependencies/ImportPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportPlugin'>; -} -declare module 'webpack/lib/dependencies/ImportWeakDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ImportWeakDependency'>; -} -declare module 'webpack/lib/dependencies/JsonExportsDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/JsonExportsDependency'>; -} -declare module 'webpack/lib/dependencies/LoaderDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LoaderDependency'>; -} -declare module 'webpack/lib/dependencies/LoaderPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LoaderPlugin'>; -} -declare module 'webpack/lib/dependencies/LocalModule.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LocalModule'>; -} -declare module 'webpack/lib/dependencies/LocalModuleDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LocalModuleDependency'>; -} -declare module 'webpack/lib/dependencies/LocalModulesHelpers.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/LocalModulesHelpers'>; -} -declare module 'webpack/lib/dependencies/ModuleDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleDependency'>; -} -declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsId.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleDependencyTemplateAsId'>; -} -declare module 'webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleDependencyTemplateAsRequireId'>; -} -declare module 'webpack/lib/dependencies/ModuleHotAcceptDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleHotAcceptDependency'>; -} -declare module 'webpack/lib/dependencies/ModuleHotDeclineDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/ModuleHotDeclineDependency'>; -} -declare module 'webpack/lib/dependencies/MultiEntryDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/MultiEntryDependency'>; -} -declare module 'webpack/lib/dependencies/NullDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/NullDependency'>; -} -declare module 'webpack/lib/dependencies/PrefetchDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/PrefetchDependency'>; -} -declare module 'webpack/lib/dependencies/RequireContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireContextDependency'>; -} -declare module 'webpack/lib/dependencies/RequireContextDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireContextDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireContextPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireContextPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureDependenciesBlock'>; -} -declare module 'webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireEnsureDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureDependency'>; -} -declare module 'webpack/lib/dependencies/RequireEnsureItemDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsureItemDependency'>; -} -declare module 'webpack/lib/dependencies/RequireEnsurePlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireEnsurePlugin'>; -} -declare module 'webpack/lib/dependencies/RequireHeaderDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireHeaderDependency'>; -} -declare module 'webpack/lib/dependencies/RequireIncludeDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireIncludeDependency'>; -} -declare module 'webpack/lib/dependencies/RequireIncludeDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireIncludeDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireIncludePlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireIncludePlugin'>; -} -declare module 'webpack/lib/dependencies/RequireResolveContextDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveContextDependency'>; -} -declare module 'webpack/lib/dependencies/RequireResolveDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveDependency'>; -} -declare module 'webpack/lib/dependencies/RequireResolveDependencyParserPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveDependencyParserPlugin'>; -} -declare module 'webpack/lib/dependencies/RequireResolveHeaderDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/RequireResolveHeaderDependency'>; -} -declare module 'webpack/lib/dependencies/SingleEntryDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/SingleEntryDependency'>; -} -declare module 'webpack/lib/dependencies/SystemPlugin.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/SystemPlugin'>; -} -declare module 'webpack/lib/dependencies/UnsupportedDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/UnsupportedDependency'>; -} -declare module 'webpack/lib/dependencies/WebAssemblyImportDependency.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/WebAssemblyImportDependency'>; -} -declare module 'webpack/lib/dependencies/WebpackMissingModule.js' { - declare module.exports: $Exports<'webpack/lib/dependencies/WebpackMissingModule'>; -} -declare module 'webpack/lib/DependenciesBlock.js' { - declare module.exports: $Exports<'webpack/lib/DependenciesBlock'>; -} -declare module 'webpack/lib/DependenciesBlockVariable.js' { - declare module.exports: $Exports<'webpack/lib/DependenciesBlockVariable'>; -} -declare module 'webpack/lib/Dependency.js' { - declare module.exports: $Exports<'webpack/lib/Dependency'>; -} -declare module 'webpack/lib/DllEntryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DllEntryPlugin'>; -} -declare module 'webpack/lib/DllModule.js' { - declare module.exports: $Exports<'webpack/lib/DllModule'>; -} -declare module 'webpack/lib/DllModuleFactory.js' { - declare module.exports: $Exports<'webpack/lib/DllModuleFactory'>; -} -declare module 'webpack/lib/DllPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DllPlugin'>; -} -declare module 'webpack/lib/DllReferencePlugin.js' { - declare module.exports: $Exports<'webpack/lib/DllReferencePlugin'>; -} -declare module 'webpack/lib/DynamicEntryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/DynamicEntryPlugin'>; -} -declare module 'webpack/lib/EntryModuleNotFoundError.js' { - declare module.exports: $Exports<'webpack/lib/EntryModuleNotFoundError'>; -} -declare module 'webpack/lib/EntryOptionPlugin.js' { - declare module.exports: $Exports<'webpack/lib/EntryOptionPlugin'>; -} -declare module 'webpack/lib/Entrypoint.js' { - declare module.exports: $Exports<'webpack/lib/Entrypoint'>; -} -declare module 'webpack/lib/EnvironmentPlugin.js' { - declare module.exports: $Exports<'webpack/lib/EnvironmentPlugin'>; -} -declare module 'webpack/lib/ErrorHelpers.js' { - declare module.exports: $Exports<'webpack/lib/ErrorHelpers'>; -} -declare module 'webpack/lib/EvalDevToolModulePlugin.js' { - declare module.exports: $Exports<'webpack/lib/EvalDevToolModulePlugin'>; -} -declare module 'webpack/lib/EvalDevToolModuleTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/EvalDevToolModuleTemplatePlugin'>; -} -declare module 'webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/EvalSourceMapDevToolModuleTemplatePlugin'>; -} -declare module 'webpack/lib/EvalSourceMapDevToolPlugin.js' { - declare module.exports: $Exports<'webpack/lib/EvalSourceMapDevToolPlugin'>; -} -declare module 'webpack/lib/ExportPropertyMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/ExportPropertyMainTemplatePlugin'>; -} -declare module 'webpack/lib/ExtendedAPIPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ExtendedAPIPlugin'>; -} -declare module 'webpack/lib/ExternalModule.js' { - declare module.exports: $Exports<'webpack/lib/ExternalModule'>; -} -declare module 'webpack/lib/ExternalModuleFactoryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ExternalModuleFactoryPlugin'>; -} -declare module 'webpack/lib/ExternalsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ExternalsPlugin'>; -} -declare module 'webpack/lib/FlagDependencyExportsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/FlagDependencyExportsPlugin'>; -} -declare module 'webpack/lib/FlagDependencyUsagePlugin.js' { - declare module.exports: $Exports<'webpack/lib/FlagDependencyUsagePlugin'>; -} -declare module 'webpack/lib/FlagInitialModulesAsUsedPlugin.js' { - declare module.exports: $Exports<'webpack/lib/FlagInitialModulesAsUsedPlugin'>; -} -declare module 'webpack/lib/formatLocation.js' { - declare module.exports: $Exports<'webpack/lib/formatLocation'>; -} -declare module 'webpack/lib/FunctionModulePlugin.js' { - declare module.exports: $Exports<'webpack/lib/FunctionModulePlugin'>; -} -declare module 'webpack/lib/FunctionModuleTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/FunctionModuleTemplatePlugin'>; -} -declare module 'webpack/lib/GraphHelpers.js' { - declare module.exports: $Exports<'webpack/lib/GraphHelpers'>; -} -declare module 'webpack/lib/HashedModuleIdsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/HashedModuleIdsPlugin'>; -} -declare module 'webpack/lib/HotModuleReplacement.runtime.js' { - declare module.exports: $Exports<'webpack/lib/HotModuleReplacement.runtime'>; -} -declare module 'webpack/lib/HotModuleReplacementPlugin.js' { - declare module.exports: $Exports<'webpack/lib/HotModuleReplacementPlugin'>; -} -declare module 'webpack/lib/HotUpdateChunkTemplate.js' { - declare module.exports: $Exports<'webpack/lib/HotUpdateChunkTemplate'>; -} -declare module 'webpack/lib/IgnorePlugin.js' { - declare module.exports: $Exports<'webpack/lib/IgnorePlugin'>; -} -declare module 'webpack/lib/JavascriptGenerator.js' { - declare module.exports: $Exports<'webpack/lib/JavascriptGenerator'>; -} -declare module 'webpack/lib/JavascriptModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/JavascriptModulesPlugin'>; -} -declare module 'webpack/lib/JsonGenerator.js' { - declare module.exports: $Exports<'webpack/lib/JsonGenerator'>; -} -declare module 'webpack/lib/JsonModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/JsonModulesPlugin'>; -} -declare module 'webpack/lib/JsonParser.js' { - declare module.exports: $Exports<'webpack/lib/JsonParser'>; -} -declare module 'webpack/lib/LibManifestPlugin.js' { - declare module.exports: $Exports<'webpack/lib/LibManifestPlugin'>; -} -declare module 'webpack/lib/LibraryTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/LibraryTemplatePlugin'>; -} -declare module 'webpack/lib/LoaderOptionsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/LoaderOptionsPlugin'>; -} -declare module 'webpack/lib/LoaderTargetPlugin.js' { - declare module.exports: $Exports<'webpack/lib/LoaderTargetPlugin'>; -} -declare module 'webpack/lib/MainTemplate.js' { - declare module.exports: $Exports<'webpack/lib/MainTemplate'>; -} -declare module 'webpack/lib/MemoryOutputFileSystem.js' { - declare module.exports: $Exports<'webpack/lib/MemoryOutputFileSystem'>; -} -declare module 'webpack/lib/Module.js' { - declare module.exports: $Exports<'webpack/lib/Module'>; -} -declare module 'webpack/lib/ModuleBuildError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleBuildError'>; -} -declare module 'webpack/lib/ModuleDependencyError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleDependencyError'>; -} -declare module 'webpack/lib/ModuleDependencyWarning.js' { - declare module.exports: $Exports<'webpack/lib/ModuleDependencyWarning'>; -} -declare module 'webpack/lib/ModuleError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleError'>; -} -declare module 'webpack/lib/ModuleFilenameHelpers.js' { - declare module.exports: $Exports<'webpack/lib/ModuleFilenameHelpers'>; -} -declare module 'webpack/lib/ModuleNotFoundError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleNotFoundError'>; -} -declare module 'webpack/lib/ModuleParseError.js' { - declare module.exports: $Exports<'webpack/lib/ModuleParseError'>; -} -declare module 'webpack/lib/ModuleReason.js' { - declare module.exports: $Exports<'webpack/lib/ModuleReason'>; -} -declare module 'webpack/lib/ModuleTemplate.js' { - declare module.exports: $Exports<'webpack/lib/ModuleTemplate'>; -} -declare module 'webpack/lib/ModuleWarning.js' { - declare module.exports: $Exports<'webpack/lib/ModuleWarning'>; -} -declare module 'webpack/lib/MultiCompiler.js' { - declare module.exports: $Exports<'webpack/lib/MultiCompiler'>; -} -declare module 'webpack/lib/MultiEntryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/MultiEntryPlugin'>; -} -declare module 'webpack/lib/MultiModule.js' { - declare module.exports: $Exports<'webpack/lib/MultiModule'>; -} -declare module 'webpack/lib/MultiModuleFactory.js' { - declare module.exports: $Exports<'webpack/lib/MultiModuleFactory'>; -} -declare module 'webpack/lib/MultiStats.js' { - declare module.exports: $Exports<'webpack/lib/MultiStats'>; -} -declare module 'webpack/lib/MultiWatching.js' { - declare module.exports: $Exports<'webpack/lib/MultiWatching'>; -} -declare module 'webpack/lib/NamedChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NamedChunksPlugin'>; -} -declare module 'webpack/lib/NamedModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NamedModulesPlugin'>; -} -declare module 'webpack/lib/node/NodeChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeChunkTemplatePlugin'>; -} -declare module 'webpack/lib/node/NodeEnvironmentPlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeEnvironmentPlugin'>; -} -declare module 'webpack/lib/node/NodeHotUpdateChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeHotUpdateChunkTemplatePlugin'>; -} -declare module 'webpack/lib/node/NodeMainTemplate.runtime.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeMainTemplate.runtime'>; -} -declare module 'webpack/lib/node/NodeMainTemplateAsync.runtime.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeMainTemplateAsync.runtime'>; -} -declare module 'webpack/lib/node/NodeMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeMainTemplatePlugin'>; -} -declare module 'webpack/lib/node/NodeOutputFileSystem.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeOutputFileSystem'>; -} -declare module 'webpack/lib/node/NodeSourcePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeSourcePlugin'>; -} -declare module 'webpack/lib/node/NodeTargetPlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeTargetPlugin'>; -} -declare module 'webpack/lib/node/NodeTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeTemplatePlugin'>; -} -declare module 'webpack/lib/node/NodeWatchFileSystem.js' { - declare module.exports: $Exports<'webpack/lib/node/NodeWatchFileSystem'>; -} -declare module 'webpack/lib/node/ReadFileCompileWasmMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/ReadFileCompileWasmMainTemplatePlugin'>; -} -declare module 'webpack/lib/node/ReadFileCompileWasmTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/node/ReadFileCompileWasmTemplatePlugin'>; -} -declare module 'webpack/lib/NodeStuffPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NodeStuffPlugin'>; -} -declare module 'webpack/lib/NoEmitOnErrorsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NoEmitOnErrorsPlugin'>; -} -declare module 'webpack/lib/NoModeWarning.js' { - declare module.exports: $Exports<'webpack/lib/NoModeWarning'>; -} -declare module 'webpack/lib/NormalModule.js' { - declare module.exports: $Exports<'webpack/lib/NormalModule'>; -} -declare module 'webpack/lib/NormalModuleFactory.js' { - declare module.exports: $Exports<'webpack/lib/NormalModuleFactory'>; -} -declare module 'webpack/lib/NormalModuleReplacementPlugin.js' { - declare module.exports: $Exports<'webpack/lib/NormalModuleReplacementPlugin'>; -} -declare module 'webpack/lib/NullFactory.js' { - declare module.exports: $Exports<'webpack/lib/NullFactory'>; -} -declare module 'webpack/lib/optimize/AggressiveMergingPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/AggressiveMergingPlugin'>; -} -declare module 'webpack/lib/optimize/AggressiveSplittingPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/AggressiveSplittingPlugin'>; -} -declare module 'webpack/lib/optimize/ChunkModuleIdRangePlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/ChunkModuleIdRangePlugin'>; -} -declare module 'webpack/lib/optimize/ConcatenatedModule.js' { - declare module.exports: $Exports<'webpack/lib/optimize/ConcatenatedModule'>; -} -declare module 'webpack/lib/optimize/EnsureChunkConditionsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/EnsureChunkConditionsPlugin'>; -} -declare module 'webpack/lib/optimize/FlagIncludedChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/FlagIncludedChunksPlugin'>; -} -declare module 'webpack/lib/optimize/LimitChunkCountPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/LimitChunkCountPlugin'>; -} -declare module 'webpack/lib/optimize/MergeDuplicateChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/MergeDuplicateChunksPlugin'>; -} -declare module 'webpack/lib/optimize/MinChunkSizePlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/MinChunkSizePlugin'>; -} -declare module 'webpack/lib/optimize/ModuleConcatenationPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/ModuleConcatenationPlugin'>; -} -declare module 'webpack/lib/optimize/OccurrenceOrderPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/OccurrenceOrderPlugin'>; -} -declare module 'webpack/lib/optimize/RemoveEmptyChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/RemoveEmptyChunksPlugin'>; -} -declare module 'webpack/lib/optimize/RemoveParentModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/RemoveParentModulesPlugin'>; -} -declare module 'webpack/lib/optimize/RuntimeChunkPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/RuntimeChunkPlugin'>; -} -declare module 'webpack/lib/optimize/SideEffectsFlagPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/SideEffectsFlagPlugin'>; -} -declare module 'webpack/lib/optimize/SplitChunksPlugin.js' { - declare module.exports: $Exports<'webpack/lib/optimize/SplitChunksPlugin'>; -} -declare module 'webpack/lib/OptionsApply.js' { - declare module.exports: $Exports<'webpack/lib/OptionsApply'>; -} -declare module 'webpack/lib/OptionsDefaulter.js' { - declare module.exports: $Exports<'webpack/lib/OptionsDefaulter'>; -} -declare module 'webpack/lib/Parser.js' { - declare module.exports: $Exports<'webpack/lib/Parser'>; -} -declare module 'webpack/lib/ParserHelpers.js' { - declare module.exports: $Exports<'webpack/lib/ParserHelpers'>; -} -declare module 'webpack/lib/performance/AssetsOverSizeLimitWarning.js' { - declare module.exports: $Exports<'webpack/lib/performance/AssetsOverSizeLimitWarning'>; -} -declare module 'webpack/lib/performance/EntrypointsOverSizeLimitWarning.js' { - declare module.exports: $Exports<'webpack/lib/performance/EntrypointsOverSizeLimitWarning'>; -} -declare module 'webpack/lib/performance/NoAsyncChunksWarning.js' { - declare module.exports: $Exports<'webpack/lib/performance/NoAsyncChunksWarning'>; -} -declare module 'webpack/lib/performance/SizeLimitsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/performance/SizeLimitsPlugin'>; -} -declare module 'webpack/lib/PrefetchPlugin.js' { - declare module.exports: $Exports<'webpack/lib/PrefetchPlugin'>; -} -declare module 'webpack/lib/prepareOptions.js' { - declare module.exports: $Exports<'webpack/lib/prepareOptions'>; -} -declare module 'webpack/lib/ProgressPlugin.js' { - declare module.exports: $Exports<'webpack/lib/ProgressPlugin'>; -} -declare module 'webpack/lib/ProvidePlugin.js' { - declare module.exports: $Exports<'webpack/lib/ProvidePlugin'>; -} -declare module 'webpack/lib/RawModule.js' { - declare module.exports: $Exports<'webpack/lib/RawModule'>; -} -declare module 'webpack/lib/RecordIdsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/RecordIdsPlugin'>; -} -declare module 'webpack/lib/RemovedPluginError.js' { - declare module.exports: $Exports<'webpack/lib/RemovedPluginError'>; -} -declare module 'webpack/lib/RequestShortener.js' { - declare module.exports: $Exports<'webpack/lib/RequestShortener'>; -} -declare module 'webpack/lib/RequireJsStuffPlugin.js' { - declare module.exports: $Exports<'webpack/lib/RequireJsStuffPlugin'>; -} -declare module 'webpack/lib/ResolverFactory.js' { - declare module.exports: $Exports<'webpack/lib/ResolverFactory'>; -} -declare module 'webpack/lib/RuleSet.js' { - declare module.exports: $Exports<'webpack/lib/RuleSet'>; -} -declare module 'webpack/lib/RuntimeTemplate.js' { - declare module.exports: $Exports<'webpack/lib/RuntimeTemplate'>; -} -declare module 'webpack/lib/SetVarMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/SetVarMainTemplatePlugin'>; -} -declare module 'webpack/lib/SingleEntryPlugin.js' { - declare module.exports: $Exports<'webpack/lib/SingleEntryPlugin'>; -} -declare module 'webpack/lib/SizeFormatHelpers.js' { - declare module.exports: $Exports<'webpack/lib/SizeFormatHelpers'>; -} -declare module 'webpack/lib/SourceMapDevToolModuleOptionsPlugin.js' { - declare module.exports: $Exports<'webpack/lib/SourceMapDevToolModuleOptionsPlugin'>; -} -declare module 'webpack/lib/SourceMapDevToolPlugin.js' { - declare module.exports: $Exports<'webpack/lib/SourceMapDevToolPlugin'>; -} -declare module 'webpack/lib/Stats.js' { - declare module.exports: $Exports<'webpack/lib/Stats'>; -} -declare module 'webpack/lib/Template.js' { - declare module.exports: $Exports<'webpack/lib/Template'>; -} -declare module 'webpack/lib/TemplatedPathPlugin.js' { - declare module.exports: $Exports<'webpack/lib/TemplatedPathPlugin'>; -} -declare module 'webpack/lib/UmdMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/UmdMainTemplatePlugin'>; -} -declare module 'webpack/lib/UnsupportedFeatureWarning.js' { - declare module.exports: $Exports<'webpack/lib/UnsupportedFeatureWarning'>; -} -declare module 'webpack/lib/UseStrictPlugin.js' { - declare module.exports: $Exports<'webpack/lib/UseStrictPlugin'>; -} -declare module 'webpack/lib/util/cachedMerge.js' { - declare module.exports: $Exports<'webpack/lib/util/cachedMerge'>; -} -declare module 'webpack/lib/util/createHash.js' { - declare module.exports: $Exports<'webpack/lib/util/createHash'>; -} -declare module 'webpack/lib/util/identifier.js' { - declare module.exports: $Exports<'webpack/lib/util/identifier'>; -} -declare module 'webpack/lib/util/objectToMap.js' { - declare module.exports: $Exports<'webpack/lib/util/objectToMap'>; -} -declare module 'webpack/lib/util/Queue.js' { - declare module.exports: $Exports<'webpack/lib/util/Queue'>; -} -declare module 'webpack/lib/util/Semaphore.js' { - declare module.exports: $Exports<'webpack/lib/util/Semaphore'>; -} -declare module 'webpack/lib/util/SetHelpers.js' { - declare module.exports: $Exports<'webpack/lib/util/SetHelpers'>; -} -declare module 'webpack/lib/util/SortableSet.js' { - declare module.exports: $Exports<'webpack/lib/util/SortableSet'>; -} -declare module 'webpack/lib/util/StackedSetMap.js' { - declare module.exports: $Exports<'webpack/lib/util/StackedSetMap'>; -} -declare module 'webpack/lib/util/TrackingSet.js' { - declare module.exports: $Exports<'webpack/lib/util/TrackingSet'>; -} -declare module 'webpack/lib/validateSchema.js' { - declare module.exports: $Exports<'webpack/lib/validateSchema'>; -} -declare module 'webpack/lib/WarnCaseSensitiveModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/WarnCaseSensitiveModulesPlugin'>; -} -declare module 'webpack/lib/WarnNoModeSetPlugin.js' { - declare module.exports: $Exports<'webpack/lib/WarnNoModeSetPlugin'>; -} -declare module 'webpack/lib/wasm/WasmModuleTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/wasm/WasmModuleTemplatePlugin'>; -} -declare module 'webpack/lib/WatchIgnorePlugin.js' { - declare module.exports: $Exports<'webpack/lib/WatchIgnorePlugin'>; -} -declare module 'webpack/lib/Watching.js' { - declare module.exports: $Exports<'webpack/lib/Watching'>; -} -declare module 'webpack/lib/web/FetchCompileWasmMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/FetchCompileWasmMainTemplatePlugin'>; -} -declare module 'webpack/lib/web/FetchCompileWasmTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/FetchCompileWasmTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpChunkTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpExportMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpExportMainTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpHotUpdateChunkTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpMainTemplate.runtime.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpMainTemplate.runtime'>; -} -declare module 'webpack/lib/web/JsonpMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpMainTemplatePlugin'>; -} -declare module 'webpack/lib/web/JsonpTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/JsonpTemplatePlugin'>; -} -declare module 'webpack/lib/web/WebEnvironmentPlugin.js' { - declare module.exports: $Exports<'webpack/lib/web/WebEnvironmentPlugin'>; -} -declare module 'webpack/lib/WebAssemblyGenerator.js' { - declare module.exports: $Exports<'webpack/lib/WebAssemblyGenerator'>; -} -declare module 'webpack/lib/WebAssemblyModulesPlugin.js' { - declare module.exports: $Exports<'webpack/lib/WebAssemblyModulesPlugin'>; -} -declare module 'webpack/lib/WebAssemblyParser.js' { - declare module.exports: $Exports<'webpack/lib/WebAssemblyParser'>; -} -declare module 'webpack/lib/webpack.js' { - declare module.exports: $Exports<'webpack/lib/webpack'>; -} -declare module 'webpack/lib/webpack.web.js' { - declare module.exports: $Exports<'webpack/lib/webpack.web'>; -} -declare module 'webpack/lib/WebpackError.js' { - declare module.exports: $Exports<'webpack/lib/WebpackError'>; -} -declare module 'webpack/lib/WebpackOptionsApply.js' { - declare module.exports: $Exports<'webpack/lib/WebpackOptionsApply'>; -} -declare module 'webpack/lib/WebpackOptionsDefaulter.js' { - declare module.exports: $Exports<'webpack/lib/WebpackOptionsDefaulter'>; -} -declare module 'webpack/lib/WebpackOptionsValidationError.js' { - declare module.exports: $Exports<'webpack/lib/WebpackOptionsValidationError'>; -} -declare module 'webpack/lib/webworker/WebWorkerChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerChunkTemplatePlugin'>; -} -declare module 'webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerHotUpdateChunkTemplatePlugin'>; -} -declare module 'webpack/lib/webworker/WebWorkerMainTemplate.runtime.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerMainTemplate.runtime'>; -} -declare module 'webpack/lib/webworker/WebWorkerMainTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerMainTemplatePlugin'>; -} -declare module 'webpack/lib/webworker/WebWorkerTemplatePlugin.js' { - declare module.exports: $Exports<'webpack/lib/webworker/WebWorkerTemplatePlugin'>; -} -declare module 'webpack/schemas/ajv.absolutePath.js' { - declare module.exports: $Exports<'webpack/schemas/ajv.absolutePath'>; -} -declare module 'webpack/web_modules/node-libs-browser.js' { - declare module.exports: $Exports<'webpack/web_modules/node-libs-browser'>; -} From cb8cabb8cfb90460b4693c65129e30f93c79e4d3 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Thu, 21 Nov 2019 16:59:36 -0300 Subject: [PATCH 006/116] (update) .eslint and .flowconfig --- .eslintignore | 11 +++++++---- .flowconfig | 12 ++++++++---- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/.eslintignore b/.eslintignore index 3d16c077..6c8e2095 100644 --- a/.eslintignore +++ b/.eslintignore @@ -1,4 +1,7 @@ -node_modules/ -build_webpack/ -flow_typed/ -config/ +node_modules +build_webpack +flow-typed +flow-typed/npm +config +scripts +migrations diff --git a/.flowconfig b/.flowconfig index ac88e7c5..b9bcc824 100644 --- a/.flowconfig +++ b/.flowconfig @@ -1,15 +1,19 @@ [ignore] -.*/node_modules/findup/* -.*/node_modules/** -.*/config/** .*/migrations/** -.*/flow-typed/** .*/scripts/** +[untyped] +.*/config/** + +[declarations] +.*/node_modules/** +.*/flow-typed/** + [include] /src/** [libs] +/flow-typed [lints] From 8848ecd54d4f4ec8bfbb3a7b4db5564cbb66e599 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Fri, 22 Nov 2019 20:23:57 -0300 Subject: [PATCH 007/116] (add) cookie banner --- .flowconfig | 20 ++- src/components/CookiesBanner/index.jsx | 145 ++++++++++++++++++ src/components/Notifier/index.js | 7 +- src/components/layout/PageFrame/index.jsx | 2 + src/index.js | 7 +- src/logic/contracts/safeContracts.js | 5 +- .../store/actions/setCookiesPermissions.js | 6 +- src/logic/cookies/store/model/cookie.js | 4 +- src/logic/cookies/store/selectors/index.js | 1 - .../store/actions/enqueueSnackbar.js | 4 +- .../notifications/store/selectors/index.js | 13 +- src/logic/tokens/store/selectors/index.js | 9 +- src/logic/wallets/store/selectors/index.js | 45 ++---- src/routes/index.js | 2 +- .../safe/store/actions/processTransaction.js | 6 +- .../safe/store/middleware/safeStorage.js | 10 +- src/routes/safe/store/reducer/safe.js | 13 +- src/test/builder/safe.dom.utils.js | 2 +- src/test/safe.dom.funds.threshold>1.test.js | 4 +- src/theme/variables.js | 104 +++++++------ 20 files changed, 277 insertions(+), 132 deletions(-) create mode 100644 src/components/CookiesBanner/index.jsx diff --git a/.flowconfig b/.flowconfig index b9bcc824..a03850b1 100644 --- a/.flowconfig +++ b/.flowconfig @@ -1,19 +1,25 @@ [ignore] -.*/migrations/** -.*/scripts/** +/migrations/**/.* +/contracts/**/.* +/scripts/**/.* +/public/**/.* +/src/test/**/.* +/babel.config.js +/jest.config.js +/truffle.js [untyped] -.*/config/** +/config/**/.* [declarations] -.*/node_modules/** -.*/flow-typed/** +/node_modules/**/.* +/flow-typed/**/.* [include] -/src/** +/src/**/.* [libs] -/flow-typed +/flow-typed/**/.* [lints] diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx new file mode 100644 index 00000000..f631ecd8 --- /dev/null +++ b/src/components/CookiesBanner/index.jsx @@ -0,0 +1,145 @@ +// @flow +import Checkbox from '@material-ui/core/Checkbox' +import Close from '@material-ui/icons/Close' +import FormControlLabel from '@material-ui/core/FormControlLabel' +import IconButton from '@material-ui/core/IconButton' +import React, { useState } from 'react' +import { makeStyles } from '@material-ui/core/styles' +import { useSelector, useDispatch } from 'react-redux' +import Link from '~/components/layout/Link' +import { WELCOME_ADDRESS } from '~/routes/routes' +import Button from '~/components/layout/Button' +import { primary, mainFontFamily } from '~/theme/variables' +import saveCookiesToStorage from '~/logic/cookies/store/actions/saveCookiesToStorage' +import type { CookiesProps } from '~/logic/cookies/store/model/cookie' +import { cookiesSelector } from '~/logic/cookies/store/selectors' + +const useStyles = makeStyles({ + container: { + backgroundColor: '#fff', + bottom: '0', + boxShadow: '0 2px 4px 0 rgba(212, 212, 211, 0.59)', + boxSizing: 'border-box', + display: 'flex', + justifyContent: 'center', + left: '0', + minHeight: '200px', + padding: '27px 15px', + position: 'fixed', + width: '100%', + }, + content: { + maxWidth: '100%', + width: '830px', + }, + text: { + color: primary, + fontFamily: mainFontFamily, + fontSize: '16px', + fontWeight: 'normal', + lineHeight: '1.38', + margin: '0 0 25px', + textAlign: 'center', + }, + form: { + columnGap: '10px', + display: 'grid', + gridTemplateColumns: '1fr', + rowGap: '10px', + '@media (min-width: 960px)': { + gridTemplateColumns: '1fr 1fr 1fr', + }, + }, + formItem: { + alignItems: 'center', + display: 'flex', + justifyContent: 'center', + }, + link: { + textDecoration: 'underline', + '&:hover': { + textDecoration: 'none', + }, + }, + close: { + position: 'absolute', + right: '12px', + top: '12px', + }, +}) + +const acceptCookiesHandler = (newState: CookiesProps) => { + const dispatch = useDispatch() + // Aca tenes q pasarle el estado nuevo de los dos switches + dispatch(saveCookiesToStorage(newState)) +} + +const CookiesBanner = () => { + const classes = useStyles() + const cookiesState: CookiesProps = useSelector(cookiesSelector) + const { acceptedNecessary, acceptedAnalytics } = cookiesState + const showBanner = !acceptedNecessary || !acceptedAnalytics + const [localNecessary, setLocalNecessary] = useState(true) + const [localAnalytics, setLocalAnalytics] = useState(false) + + + return showBanner ? ( +
+ {}} className={classes.close}> +
+

+We use cookies to give you the best + experience and to help improve our website. Please read our + {' '} + Cookie Policy + {' '} + for more information. By clicking "Accept cookies", + you agree to the storing of cookies on your device to enhance site + navigation and analyze site usage. +

+
+
+ setLocalNecessary((prev) => !prev)} + value={localNecessary} + control={( + + )} + /> +
+
+ setLocalAnalytics((prev) => !prev)} + value={localAnalytics} + control={( + + )} + /> +
+
+ +
+
+
+
+ ) : null +} + +export default CookiesBanner diff --git a/src/components/Notifier/index.js b/src/components/Notifier/index.js index 78143021..21206b5d 100644 --- a/src/components/Notifier/index.js +++ b/src/components/Notifier/index.js @@ -75,9 +75,4 @@ class Notifier extends Component { } } -export default withSnackbar( - connect( - selector, - actions, - )(Notifier), -) +export default withSnackbar(connect(selector, actions)(Notifier)) diff --git a/src/components/layout/PageFrame/index.jsx b/src/components/layout/PageFrame/index.jsx index e8559ea7..cdaf4f3f 100644 --- a/src/components/layout/PageFrame/index.jsx +++ b/src/components/layout/PageFrame/index.jsx @@ -15,6 +15,7 @@ import AlertIcon from './assets/alert.svg' import CheckIcon from './assets/check.svg' import ErrorIcon from './assets/error.svg' import InfoIcon from './assets/info.svg' +import CookiesBanner from '~/components/CookiesBanner' import styles from './index.scss' const notificationStyles = { @@ -92,6 +93,7 @@ const PageFrame = ({ children, classes, currentNetwork }: Props) => { {children} + ) } diff --git a/src/index.js b/src/index.js index a824221b..7759063b 100644 --- a/src/index.js +++ b/src/index.js @@ -16,9 +16,14 @@ if (process.env.NODE_ENV !== 'production') { whyDidYouRender(React) } +// $FlowFixMe store.dispatch(loadActiveTokens()) store.dispatch(loadSafesFromStorage()) store.dispatch(loadDefaultSafe()) store.dispatch(loadCookiesFromStorage()) -ReactDOM.render(, document.getElementById('root')) +const root = document.getElementById('root') + +if (root !== null) { + ReactDOM.render(, root) +} diff --git a/src/logic/contracts/safeContracts.js b/src/logic/contracts/safeContracts.js index a1fad299..258b35fb 100644 --- a/src/logic/contracts/safeContracts.js +++ b/src/logic/contracts/safeContracts.js @@ -75,7 +75,10 @@ export const deploySafeContract = async (safeAccounts: string[], numConfirmation const gasPrice = await calculateGasPrice() return proxyFactoryMaster.createProxy(safeMaster.address, gnosisSafeData, { - from: userAccount, gas, gasPrice, value: 0, + from: userAccount, + gas, + gasPrice, + value: 0, }) } diff --git a/src/logic/cookies/store/actions/setCookiesPermissions.js b/src/logic/cookies/store/actions/setCookiesPermissions.js index edeab5d8..ccddfc02 100644 --- a/src/logic/cookies/store/actions/setCookiesPermissions.js +++ b/src/logic/cookies/store/actions/setCookiesPermissions.js @@ -5,6 +5,8 @@ import type { Cookie, CookiesProps } from '~/logic/cookies/store/model/cookie' export const SET_COOKIES_PERMISSIONS = 'SET_COOKIES_PERMISSIONS' - // eslint-disable-next-line max-len -export const setCookiesPermissions = createAction(SET_COOKIES_PERMISSIONS, (cookies: Map): CookiesProps => cookies) +export const setCookiesPermissions = createAction( + SET_COOKIES_PERMISSIONS, + (cookies: Map): CookiesProps => cookies, +) diff --git a/src/logic/cookies/store/model/cookie.js b/src/logic/cookies/store/model/cookie.js index 4729659b..7435f6bb 100644 --- a/src/logic/cookies/store/model/cookie.js +++ b/src/logic/cookies/store/model/cookie.js @@ -2,8 +2,8 @@ import type { RecordOf } from 'immutable' export type CookiesProps = { - acceptedNecessary: boolean; - acceptedAnalytics: boolean; + acceptedNecessary: boolean, + acceptedAnalytics: boolean, } export type Cookie = RecordOf diff --git a/src/logic/cookies/store/selectors/index.js b/src/logic/cookies/store/selectors/index.js index 444432d8..604abe13 100644 --- a/src/logic/cookies/store/selectors/index.js +++ b/src/logic/cookies/store/selectors/index.js @@ -2,5 +2,4 @@ import { type GlobalState } from '~/store' import { COOKIE_REDUCER_ID } from '~/logic/cookies/store/reducer/cookies' - export const cookiesSelector = (state: GlobalState) => state[COOKIE_REDUCER_ID] diff --git a/src/logic/notifications/store/actions/enqueueSnackbar.js b/src/logic/notifications/store/actions/enqueueSnackbar.js index bcdd7c87..dae418f4 100644 --- a/src/logic/notifications/store/actions/enqueueSnackbar.js +++ b/src/logic/notifications/store/actions/enqueueSnackbar.js @@ -8,9 +8,7 @@ export const ENQUEUE_SNACKBAR = 'ENQUEUE_SNACKBAR' const addSnackbar = createAction(ENQUEUE_SNACKBAR) -const enqueueSnackbar = (notification: NotificationProps) => ( - dispatch: ReduxDispatch, -) => { +const enqueueSnackbar = (notification: NotificationProps) => (dispatch: ReduxDispatch) => { const newNotification = { ...notification, key: new Date().getTime(), diff --git a/src/logic/notifications/store/selectors/index.js b/src/logic/notifications/store/selectors/index.js index bf6371fa..de27db1c 100644 --- a/src/logic/notifications/store/selectors/index.js +++ b/src/logic/notifications/store/selectors/index.js @@ -5,11 +5,10 @@ import { type GlobalState } from '~/store' import { NOTIFICATIONS_REDUCER_ID } from '~/logic/notifications/store/reducer/notifications' import { type Notification } from '~/logic/notifications/store/models/notification' -const notificationsMapSelector = ( - state: GlobalState, -): Map => state[NOTIFICATIONS_REDUCER_ID] +const notificationsMapSelector = (state: GlobalState): Map => state[NOTIFICATIONS_REDUCER_ID] -export const notificationsListSelector: Selector> = createSelector( - notificationsMapSelector, - (notifications: Map): List => notifications.toList(), -) +export const notificationsListSelector: Selector< + GlobalState, + {}, + List, +> = createSelector(notificationsMapSelector, (notifications: Map): List => notifications.toList()) diff --git a/src/logic/tokens/store/selectors/index.js b/src/logic/tokens/store/selectors/index.js index 30ab6b48..b119c540 100644 --- a/src/logic/tokens/store/selectors/index.js +++ b/src/logic/tokens/store/selectors/index.js @@ -13,7 +13,8 @@ export const tokenListSelector: Selector, List) => tokens.toList(), ) -export const orderedTokenListSelector: Selector> = createSelector( - tokenListSelector, - (tokens: List) => tokens.sortBy((token: Token) => token.get('symbol')), -) +export const orderedTokenListSelector: Selector< + GlobalState, + RouterProps, + List, +> = createSelector(tokenListSelector, (tokens: List) => tokens.sortBy((token: Token) => token.get('symbol'))) diff --git a/src/logic/wallets/store/selectors/index.js b/src/logic/wallets/store/selectors/index.js index 17fdf1f3..d76af237 100644 --- a/src/logic/wallets/store/selectors/index.js +++ b/src/logic/wallets/store/selectors/index.js @@ -6,40 +6,25 @@ import { ETHEREUM_NETWORK_IDS, ETHEREUM_NETWORK } from '~/logic/wallets/getWeb3' const providerSelector = (state: any): Provider => state[PROVIDER_REDUCER_ID] -export const userAccountSelector = createSelector( - providerSelector, - (provider: Provider) => { - const account = provider.get('account') +export const userAccountSelector = createSelector(providerSelector, (provider: Provider) => { + const account = provider.get('account') - return account || '' - }, -) + return account || '' +}) -export const providerNameSelector = createSelector( - providerSelector, - (provider: Provider) => { - const name = provider.get('name') +export const providerNameSelector = createSelector(providerSelector, (provider: Provider) => { + const name = provider.get('name') - return name ? name.toLowerCase() : undefined - }, -) + return name ? name.toLowerCase() : undefined +}) -export const networkSelector = createSelector( - providerSelector, - (provider: Provider) => { - const networkId = provider.get('network') - const network = ETHEREUM_NETWORK_IDS[networkId] || ETHEREUM_NETWORK.UNKNOWN +export const networkSelector = createSelector(providerSelector, (provider: Provider) => { + const networkId = provider.get('network') + const network = ETHEREUM_NETWORK_IDS[networkId] || ETHEREUM_NETWORK.UNKNOWN - return network - }, -) + return network +}) -export const loadedSelector = createSelector( - providerSelector, - (provider: Provider) => provider.get('loaded'), -) +export const loadedSelector = createSelector(providerSelector, (provider: Provider) => provider.get('loaded')) -export const availableSelector = createSelector( - providerSelector, - (provider: Provider) => provider.get('available'), -) +export const availableSelector = createSelector(providerSelector, (provider: Provider) => provider.get('available')) diff --git a/src/routes/index.js b/src/routes/index.js index d6416d91..ff3d3271 100644 --- a/src/routes/index.js +++ b/src/routes/index.js @@ -72,8 +72,8 @@ const Routes = ({ defaultSafe, location }: RoutesProps) => { ) } +// $FlowFixMe export default connect( - // $FlowFixMe (state) => ({ defaultSafe: defaultSafeSelector(state) }), null, )(withRouter(Routes)) diff --git a/src/routes/safe/store/actions/processTransaction.js b/src/routes/safe/store/actions/processTransaction.js index e3425387..c87d13a7 100644 --- a/src/routes/safe/store/actions/processTransaction.js +++ b/src/routes/safe/store/actions/processTransaction.js @@ -16,11 +16,7 @@ import { TX_TYPE_EXECUTION, TX_TYPE_CONFIRMATION, } from '~/logic/safe/transactions' -import { - type NotificationsQueue, - getNotificationsFromTxType, - showSnackbar, -} from '~/logic/notifications' +import { type NotificationsQueue, getNotificationsFromTxType, showSnackbar } from '~/logic/notifications' import { getErrorMessage } from '~/test/utils/ethereumErrors' // https://gnosis-safe.readthedocs.io/en/latest/contracts/signatures.html#pre-validated-signatures diff --git a/src/routes/safe/store/middleware/safeStorage.js b/src/routes/safe/store/middleware/safeStorage.js index d52bd317..a58ed541 100644 --- a/src/routes/safe/store/middleware/safeStorage.js +++ b/src/routes/safe/store/middleware/safeStorage.js @@ -90,7 +90,10 @@ const safeStorageMware = (store: Store) => (next: Function) => asyn case REMOVE_SAFE_OWNER: { const { safeAddress, ownerAddress } = action.payload const { owners } = safes.get(safeAddress) - setOwners(safeAddress, owners.filter((o) => o.address.toLowerCase() !== ownerAddress.toLowerCase())) + setOwners( + safeAddress, + owners.filter((o) => o.address.toLowerCase() !== ownerAddress.toLowerCase()), + ) break } case REPLACE_SAFE_OWNER: { @@ -110,7 +113,10 @@ const safeStorageMware = (store: Store) => (next: Function) => asyn const { safeAddress, ownerAddress, ownerName } = action.payload const { owners } = safes.get(safeAddress) const ownerToUpdateIndex = owners.findIndex((o) => o.address.toLowerCase() === ownerAddress.toLowerCase()) - setOwners(safeAddress, owners.update(ownerToUpdateIndex, (owner) => owner.set('name', ownerName))) + setOwners( + safeAddress, + owners.update(ownerToUpdateIndex, (owner) => owner.set('name', ownerName)), + ) break } case SET_DEFAULT_SAFE: { diff --git a/src/routes/safe/store/reducer/safe.js b/src/routes/safe/store/reducer/safe.js index f4dc3467..bdb67ad8 100644 --- a/src/routes/safe/store/reducer/safe.js +++ b/src/routes/safe/store/reducer/safe.js @@ -46,12 +46,15 @@ export default handleActions( const tokenAddress = action.payload const newState = state.withMutations((map) => { - map.get('safes').keySeq().forEach((safeAddress) => { - const safeActiveTokens = map.getIn(['safes', safeAddress, 'activeTokens']) - const activeTokens = safeActiveTokens.add(tokenAddress) + map + .get('safes') + .keySeq() + .forEach((safeAddress) => { + const safeActiveTokens = map.getIn(['safes', safeAddress, 'activeTokens']) + const activeTokens = safeActiveTokens.add(tokenAddress) - map.updateIn(['safes', safeAddress], (prevSafe) => prevSafe.merge({ activeTokens })) - }) + map.updateIn(['safes', safeAddress], (prevSafe) => prevSafe.merge({ activeTokens })) + }) }) return newState diff --git a/src/test/builder/safe.dom.utils.js b/src/test/builder/safe.dom.utils.js index 18679c8f..729864ed 100644 --- a/src/test/builder/safe.dom.utils.js +++ b/src/test/builder/safe.dom.utils.js @@ -115,7 +115,7 @@ export const whenSafeDeployed = (): Promise => new Promise((resolve, rej const interval = setInterval(() => { if (times >= MAX_TIMES_EXECUTED) { clearInterval(interval) - reject(new Error('Didn\'t load the safe')) + reject(new Error("Didn't load the safe")) } const url = `${window.location}` console.log(url) diff --git a/src/test/safe.dom.funds.threshold>1.test.js b/src/test/safe.dom.funds.threshold>1.test.js index 9f4aaf77..4c507fa0 100644 --- a/src/test/safe.dom.funds.threshold>1.test.js +++ b/src/test/safe.dom.funds.threshold>1.test.js @@ -12,9 +12,7 @@ import { fillAndSubmitSendFundsForm } from './utils/transactions' import { TRANSACTIONS_TAB_BTN_TEST_ID } from '~/routes/safe/components/Layout' import { TRANSACTION_ROW_TEST_ID } from '~/routes/safe/components/Transactions/TxsTable' import { useTestAccountAt, resetTestAccount } from './utils/accounts' -import { - CONFIRM_TX_BTN_TEST_ID, -} from '~/routes/safe/components/Transactions/TxsTable/ExpandedTx/OwnersColumn/ButtonRow' +import { CONFIRM_TX_BTN_TEST_ID } from '~/routes/safe/components/Transactions/TxsTable/ExpandedTx/OwnersColumn/ButtonRow' import { APPROVE_TX_MODAL_SUBMIT_BTN_TEST_ID } from '~/routes/safe/components/Transactions/TxsTable/ExpandedTx/ApproveTxModal' afterEach(resetTestAccount) diff --git a/src/theme/variables.js b/src/theme/variables.js index 84d9f9ea..f39ffbd7 100644 --- a/src/theme/variables.js +++ b/src/theme/variables.js @@ -1,65 +1,67 @@ // @flow -const border = '#e8e7e6' const background = '#f7f5f5' -const primary = '#001428' -const secondary = '#008C73' -const fontColor = '#001428' -const fancyColor = '#f02525' -const warningColor = '#ffc05f' -const errorColor = '#f02525' -const secondaryTextOrSvg = '#B2B5B2' +const border = '#e8e7e6' const connectedColor = '#008C73' const disabled = '#5D6D74' -const xs = '4px' -const sm = '8px' -const md = '16px' -const lg = '24px' -const xl = '32px' -const xxl = '40px' -const marginButtonImg = '12px' +const errorColor = '#f02525' +const fancyColor = '#f02525' +const fontColor = '#001428' const headerHeight = '53px' +const lg = '24px' +const mainFontFamily = 'Averta, sans-serif' +const marginButtonImg = '12px' +const md = '16px' +const primary = '#001428' +const secondary = '#008C73' +const secondaryTextOrSvg = '#B2B5B2' +const sm = '8px' +const warningColor = '#ffc05f' +const xl = '32px' +const xs = '4px' +const xxl = '40px' module.exports = { - primary, - secondary, - disabled, background, - fontColor, - secondaryText: secondaryTextOrSvg, - fancy: fancyColor, - warning: warningColor, - error: errorColor, - connected: connectedColor, - headerHeight, - xs, - sm, - md, - lg, - xl, - xxl, - border, - marginButtonImg, - fontSizeHeadingXs: 13, - fontSizeHeadingSm: 16, - fontSizeHeadingMd: 20, - fontSizeHeadingLg: 32, - buttonLargeFontSize: '16px', - lightFont: 300, - regularFont: 400, - bolderFont: 500, boldFont: 700, + bolderFont: 500, + border, + buttonLargeFontSize: '16px', + connected: connectedColor, + disabled, + error: errorColor, extraBoldFont: 800, - extraSmallFontSize: '11px', - smallFontSize: '12px', - mediumFontSize: '14px', - largeFontSize: '16px', extraLargeFontSize: '20px', - xxlFontSize: '32px', - screenXs: 480, - screenXsMax: 767, - screenSm: 768, - screenSmMax: 991, + extraSmallFontSize: '11px', + fancy: fancyColor, + fontColor, + fontSizeHeadingLg: 32, + fontSizeHeadingMd: 20, + fontSizeHeadingSm: 16, + fontSizeHeadingXs: 13, + headerHeight, + largeFontSize: '16px', + lg, + lightFont: 300, + mainFontFamily, + marginButtonImg, + md, + mediumFontSize: '14px', + primary, + regularFont: 400, + screenLg: 1200, screenMd: 992, screenMdMax: 1199, - screenLg: 1200, + screenSm: 768, + screenSmMax: 991, + screenXs: 480, + screenXsMax: 767, + secondary, + secondaryText: secondaryTextOrSvg, + sm, + smallFontSize: '12px', + warning: warningColor, + xl, + xs, + xxl, + xxlFontSize: '32px', } From 6ea47d69908da5b6085b94a8e1debc19e29feecc Mon Sep 17 00:00:00 2001 From: apane Date: Mon, 25 Nov 2019 10:10:43 -0300 Subject: [PATCH 008/116] Finish cookie banner implementation --- src/components/CookiesBanner/index.jsx | 24 ++++++++++++++-------- src/logic/cookies/store/selectors/index.js | 2 +- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index f631ecd8..3bd9d89c 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -68,24 +68,32 @@ const useStyles = makeStyles({ }, }) -const acceptCookiesHandler = (newState: CookiesProps) => { - const dispatch = useDispatch() - // Aca tenes q pasarle el estado nuevo de los dos switches - dispatch(saveCookiesToStorage(newState)) -} const CookiesBanner = () => { const classes = useStyles() const cookiesState: CookiesProps = useSelector(cookiesSelector) - const { acceptedNecessary, acceptedAnalytics } = cookiesState - const showBanner = !acceptedNecessary || !acceptedAnalytics + const dispatch = useDispatch() + const { acceptedNecessary } = cookiesState + const showBanner = acceptedNecessary === false const [localNecessary, setLocalNecessary] = useState(true) const [localAnalytics, setLocalAnalytics] = useState(false) + const acceptCookiesHandler = (newState: CookiesProps) => { + dispatch(saveCookiesToStorage(newState)) + } + + const closeCookiesBannerHandler = () => { + const newState = { + acceptedNecessary: true, + acceptedAnalytics: false, + } + dispatch(saveCookiesToStorage(newState)) + } + return showBanner ? (
- {}} className={classes.close}> + closeCookiesBannerHandler()} className={classes.close}>

We use cookies to give you the best diff --git a/src/logic/cookies/store/selectors/index.js b/src/logic/cookies/store/selectors/index.js index 604abe13..f92172e9 100644 --- a/src/logic/cookies/store/selectors/index.js +++ b/src/logic/cookies/store/selectors/index.js @@ -2,4 +2,4 @@ import { type GlobalState } from '~/store' import { COOKIE_REDUCER_ID } from '~/logic/cookies/store/reducer/cookies' -export const cookiesSelector = (state: GlobalState) => state[COOKIE_REDUCER_ID] +export const cookiesSelector = (state: GlobalState) => state[COOKIE_REDUCER_ID].toJS() From 43a1990559bbf4439b15acac19b5f5b1dc96de61 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Mon, 25 Nov 2019 16:44:36 -0300 Subject: [PATCH 009/116] (Add) checkbox's disabled style. --- package.json | 1 + src/components/CookiesBanner/index.jsx | 1 + src/components/Root/index.js | 1 - src/components/Root/index.scss | 38 ++++++---- src/index.js | 7 +- src/logic/safe/transactions/send.js | 13 +++- .../safe/store/actions/createTransaction.js | 30 +++++++- src/routes/safe/store/actions/fetchSafe.js | 4 +- .../safe/store/actions/processTransaction.js | 26 ++++--- src/theme/mui.js | 75 ++++++++++++------- src/theme/variables.js | 4 +- yarn.lock | 6 +- 12 files changed, 133 insertions(+), 73 deletions(-) diff --git a/package.json b/package.json index 4862c2c7..78993247 100644 --- a/package.json +++ b/package.json @@ -52,6 +52,7 @@ "material-ui-search-bar": "^1.0.0-beta.13", "notistack": "https://github.com/gnosis/notistack.git#v0.9.4", "optimize-css-assets-webpack-plugin": "5.0.3", + "polish": "^0.2.3", "qrcode.react": "1.0.0", "react": "16.12.0", "react-dom": "16.12.0", diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index 3bd9d89c..222c374b 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -109,6 +109,7 @@ We use cookies to give you the best

setLocalNecessary((prev) => !prev)} diff --git a/src/components/Root/index.js b/src/components/Root/index.js index 8cfba635..cf91fb57 100644 --- a/src/components/Root/index.js +++ b/src/components/Root/index.js @@ -11,7 +11,6 @@ import Loader from '../Loader' import { history, store } from '~/store' import theme from '~/theme/mui' import AppRoutes from '~/routes' - import './index.scss' const Root = () => ( diff --git a/src/components/Root/index.scss b/src/components/Root/index.scss index 2bf39fde..ecc20309 100644 --- a/src/components/Root/index.scss +++ b/src/components/Root/index.scss @@ -1,3 +1,7 @@ +* { + box-sizing: border-box; +} + html, body { height: 100%; @@ -9,32 +13,34 @@ body { font-style: normal; font-weight: 400; font-display: swap; - src: local("Averta-Regular"), url(../../assets/fonts/Averta-normal.woff2) format('woff2'); + src: local("Averta-Regular"), + url(../../assets/fonts/Averta-normal.woff2) format("woff2"); } @font-face { - font-family: 'Averta'; + font-family: "Averta"; font-style: normal; font-weight: 800; font-display: swap; - src: local("Averta-Extrabold"), url(../../assets/fonts/Averta-ExtraBold.woff2) format('woff2'); + src: local("Averta-Extrabold"), + url(../../assets/fonts/Averta-ExtraBold.woff2) format("woff2"); } body { - position: absolute; - bottom: 0; - top: 0; - left: 0; - right: 0; - overflow-x: hidden; - color: $fontColor; - font-family: 'Averta', monospace; - font-size: $mediumFontSize; - margin: 0; - background-color: $background; - text-rendering: geometricPrecision; - -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + background-color: $background; + bottom: 0; + color: $fontColor; + font-family: "Averta", monospace; + font-size: $mediumFontSize; + left: 0; + margin: 0; + overflow-x: hidden; + position: absolute; + right: 0; + text-rendering: geometricPrecision; + top: 0; } body > div:first-child { diff --git a/src/index.js b/src/index.js index 7759063b..92373cbc 100644 --- a/src/index.js +++ b/src/index.js @@ -1,14 +1,13 @@ // @flow import 'babel-polyfill' - import React from 'react' import ReactDOM from 'react-dom' import Root from '~/components/Root' -import { store } from '~/store' -import loadSafesFromStorage from '~/routes/safe/store/actions/loadSafesFromStorage' import loadActiveTokens from '~/logic/tokens/store/actions/loadActiveTokens' -import loadDefaultSafe from '~/routes/safe/store/actions/loadDefaultSafe' import loadCookiesFromStorage from '~/logic/cookies/store/actions/loadCookiesFromStorage' +import loadDefaultSafe from '~/routes/safe/store/actions/loadDefaultSafe' +import loadSafesFromStorage from '~/routes/safe/store/actions/loadSafesFromStorage' +import { store } from '~/store' if (process.env.NODE_ENV !== 'production') { // eslint-disable-next-line diff --git a/src/logic/safe/transactions/send.js b/src/logic/safe/transactions/send.js index a82fc6e3..96c93279 100644 --- a/src/logic/safe/transactions/send.js +++ b/src/logic/safe/transactions/send.js @@ -68,7 +68,18 @@ export const getExecutionTransaction = async ( const web3 = getWeb3() const contract = new web3.eth.Contract(GnosisSafeSol.abi, safeInstance.address) - return contract.methods.execTransaction(to, valueInWei, data, operation, safeTxGas, baseGas, gasPrice, gasToken, refundReceiver, sigs) + return contract.methods.execTransaction( + to, + valueInWei, + data, + operation, + safeTxGas, + baseGas, + gasPrice, + gasToken, + refundReceiver, + sigs, + ) } catch (err) { console.error(`Error while creating transaction: ${err}`) diff --git a/src/routes/safe/store/actions/createTransaction.js b/src/routes/safe/store/actions/createTransaction.js index 201f2587..4edf117f 100644 --- a/src/routes/safe/store/actions/createTransaction.js +++ b/src/routes/safe/store/actions/createTransaction.js @@ -55,13 +55,35 @@ const createTransaction = ( try { if (isExecution) { tx = await getExecutionTransaction( - safeInstance, to, valueInWei, txData, CALL, nonce, - 0, 0, 0, ZERO_ADDRESS, ZERO_ADDRESS, from, sigs + safeInstance, + to, + valueInWei, + txData, + CALL, + nonce, + 0, + 0, + 0, + ZERO_ADDRESS, + ZERO_ADDRESS, + from, + sigs, ) } else { tx = await getApprovalTransaction( - safeInstance, to, valueInWei, txData, CALL, nonce, - 0, 0, 0, ZERO_ADDRESS, ZERO_ADDRESS, from, sigs + safeInstance, + to, + valueInWei, + txData, + CALL, + nonce, + 0, + 0, + 0, + ZERO_ADDRESS, + ZERO_ADDRESS, + from, + sigs, ) } diff --git a/src/routes/safe/store/actions/fetchSafe.js b/src/routes/safe/store/actions/fetchSafe.js index bf54d7c8..6d9da670 100644 --- a/src/routes/safe/store/actions/fetchSafe.js +++ b/src/routes/safe/store/actions/fetchSafe.js @@ -43,9 +43,7 @@ const getLocalSafe = async (safeAddress: string) => { return storedSafes[safeAddress] } -export const checkAndUpdateSafeOwners = (safeAddress: string) => async ( - dispatch: ReduxDispatch, -) => { +export const checkAndUpdateSafeOwners = (safeAddress: string) => async (dispatch: ReduxDispatch) => { // Check if the owner's safe did change and update them const [gnosisSafe, localSafe] = await Promise.all([getGnosisSafeInstanceAt(safeAddress), getLocalSafe(safeAddress)]) const remoteOwners = await gnosisSafe.getOwners() diff --git a/src/routes/safe/store/actions/processTransaction.js b/src/routes/safe/store/actions/processTransaction.js index 0fa9f1a7..26878600 100644 --- a/src/routes/safe/store/actions/processTransaction.js +++ b/src/routes/safe/store/actions/processTransaction.js @@ -36,18 +36,20 @@ export const generateSignaturesFromTxConfirmations = ( } let sigs = '0x' - Object.keys(confirmationsMap).sort().forEach((addr) => { - const conf = confirmationsMap[addr] - if (conf.signature) { - sigs += conf.signature.slice(2) - } else { - // https://gnosis-safe.readthedocs.io/en/latest/contracts/signatures.html#pre-validated-signatures - sigs += `000000000000000000000000${addr.replace( - '0x', - '', - )}000000000000000000000000000000000000000000000000000000000000000001` - } - }) + Object.keys(confirmationsMap) + .sort() + .forEach((addr) => { + const conf = confirmationsMap[addr] + if (conf.signature) { + sigs += conf.signature.slice(2) + } else { + // https://gnosis-safe.readthedocs.io/en/latest/contracts/signatures.html#pre-validated-signatures + sigs += `000000000000000000000000${addr.replace( + '0x', + '', + )}000000000000000000000000000000000000000000000000000000000000000001` + } + }) return sigs } diff --git a/src/theme/mui.js b/src/theme/mui.js index 44188038..1ab43df6 100644 --- a/src/theme/mui.js +++ b/src/theme/mui.js @@ -1,23 +1,26 @@ // @flow import { createMuiTheme } from '@material-ui/core/styles' +import { rgba } from 'polished' import { - extraSmallFontSize, - mediumFontSize, - smallFontSize, - disabled, - primary, - secondary, - error, - sm, - md, - lg, - bolderFont, - regularFont, boldFont, + bolderFont, buttonLargeFontSize, + disabled, + error, + extraSmallFontSize, largeFontSize, - xs, + lg, + mainFontFamily, + md, + mediumFontSize, + primary, + regularFont, + secondary, + secondaryFontFamily, secondaryText, + sm, + smallFontSize, + xs, } from './variables' export type WithStyles = { @@ -42,7 +45,7 @@ const palette = { // see https://github.com/mui-org/material-ui/blob/v1-beta/src/styles/createMuiTheme.js export default createMuiTheme({ typography: { - fontFamily: 'Averta,sans-serif', + fontFamily: mainFontFamily, useNextVariants: true, }, overrides: { @@ -53,7 +56,7 @@ export default createMuiTheme({ fontWeight: regularFont, }, root: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, letterSpacing: '0.9px', '&$disabled': { color: disabled, @@ -109,7 +112,7 @@ export default createMuiTheme({ }, MuiChip: { root: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, }, }, MuiStepIcon: { @@ -132,30 +135,30 @@ export default createMuiTheme({ }, MuiTypography: { body1: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, letterSpacing: '-0.5px', fontSize: mediumFontSize, }, body2: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, }, }, MuiFormHelperText: { root: { - fontFamily: 'Averta, monospace', + color: secondary, + fontFamily: secondaryFontFamily, fontSize: '12px', + marginTop: '0px', + order: 0, padding: `0 0 0 ${md}`, position: 'absolute', top: '5px', - color: secondary, - order: 0, - marginTop: '0px', zIndex: 1, // for firefox }, }, MuiInput: { root: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, color: primary, fontSize: mediumFontSize, lineHeight: '56px', @@ -222,7 +225,7 @@ export default createMuiTheme({ }, MuiTab: { root: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, fontWeight: 'normal', fontSize: extraSmallFontSize, '&$selected': { @@ -244,7 +247,7 @@ export default createMuiTheme({ top: '0px', }, caption: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, fontSize: mediumFontSize, order: 2, color: disabled, @@ -270,7 +273,7 @@ export default createMuiTheme({ }, MuiTableCell: { root: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, fontSize: mediumFontSize, borderBottomWidth: '2px', }, @@ -298,7 +301,7 @@ export default createMuiTheme({ }, MuiMenuItem: { root: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, }, }, MuiListItemIcon: { @@ -308,17 +311,31 @@ export default createMuiTheme({ }, MuiListItemText: { primary: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, fontSize: mediumFontSize, fontWeight: bolderFont, color: primary, }, secondary: { - fontFamily: 'Averta, monospace', + fontFamily: secondaryFontFamily, fontSize: smallFontSize, color: disabled, }, }, + MuiCheckbox: { + colorSecondary: { + '&$disabled': { + color: rgba(secondary, 0.5), + }, + }, + }, + MuiFormControlLabel: { + label: { + '&$disabled': { + color: primary, + }, + }, + }, }, palette, }) diff --git a/src/theme/variables.js b/src/theme/variables.js index f39ffbd7..8dc7a2db 100644 --- a/src/theme/variables.js +++ b/src/theme/variables.js @@ -8,7 +8,6 @@ const fancyColor = '#f02525' const fontColor = '#001428' const headerHeight = '53px' const lg = '24px' -const mainFontFamily = 'Averta, sans-serif' const marginButtonImg = '12px' const md = '16px' const primary = '#001428' @@ -42,7 +41,7 @@ module.exports = { largeFontSize: '16px', lg, lightFont: 300, - mainFontFamily, + mainFontFamily: 'Averta, sans-serif', marginButtonImg, md, mediumFontSize: '14px', @@ -56,6 +55,7 @@ module.exports = { screenXs: 480, screenXsMax: 767, secondary, + secondaryFontFamily: 'Averta, monospace', secondaryText: secondaryTextOrSvg, sm, smallFontSize: '12px', diff --git a/yarn.lock b/yarn.lock index d5da1ee0..14694202 100644 --- a/yarn.lock +++ b/yarn.lock @@ -13881,6 +13881,11 @@ pocket-js-core@0.0.3: dependencies: axios "^0.18.0" +polish@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/polish/-/polish-0.2.3.tgz#4a95296b5501dd10d3b25b8e6ed8339ef4deb147" + integrity sha1-SpUpa1UB3RDTsluObtgznvTesUc= + polished@^3.3.1: version "3.4.2" resolved "https://registry.yarnpkg.com/polished/-/polished-3.4.2.tgz#b4780dad81d64df55615fbfc77acb52fd17d88cd" @@ -19731,7 +19736,6 @@ websocket@1.0.29, "websocket@github:web3-js/WebSocket-Node#polyfill/globalThis": dependencies: debug "^2.2.0" es5-ext "^0.10.50" - gulp "^4.0.2" nan "^2.14.0" typedarray-to-buffer "^3.1.5" yaeti "^0.0.6" From 9c6235f8db335c33fe420f14c2af76fae87bf130 Mon Sep 17 00:00:00 2001 From: apane Date: Tue, 26 Nov 2019 10:37:16 -0300 Subject: [PATCH 010/116] Removes redux for cookiesStorage --- src/components/CookiesBanner/index.jsx | 46 +++++++++++++------ .../store/actions/loadCookiesFromStorage.js | 26 ----------- .../store/actions/saveCookiesToStorage.js | 21 --------- .../store/actions/setCookiesPermissions.js | 12 ----- src/logic/cookies/store/model/cookie.js | 9 ---- src/logic/cookies/store/reducer/cookies.js | 25 ---------- src/logic/cookies/store/selectors/index.js | 5 -- src/logic/cookies/utils/cookiesStorage.js | 2 - 8 files changed, 31 insertions(+), 115 deletions(-) delete mode 100644 src/logic/cookies/store/actions/loadCookiesFromStorage.js delete mode 100644 src/logic/cookies/store/actions/saveCookiesToStorage.js delete mode 100644 src/logic/cookies/store/actions/setCookiesPermissions.js delete mode 100644 src/logic/cookies/store/model/cookie.js delete mode 100644 src/logic/cookies/store/reducer/cookies.js delete mode 100644 src/logic/cookies/store/selectors/index.js delete mode 100644 src/logic/cookies/utils/cookiesStorage.js diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index 3bd9d89c..3ba1fb81 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -3,16 +3,14 @@ import Checkbox from '@material-ui/core/Checkbox' import Close from '@material-ui/icons/Close' import FormControlLabel from '@material-ui/core/FormControlLabel' import IconButton from '@material-ui/core/IconButton' -import React, { useState } from 'react' +import React, { useEffect, useState } from 'react' import { makeStyles } from '@material-ui/core/styles' -import { useSelector, useDispatch } from 'react-redux' import Link from '~/components/layout/Link' import { WELCOME_ADDRESS } from '~/routes/routes' import Button from '~/components/layout/Button' import { primary, mainFontFamily } from '~/theme/variables' -import saveCookiesToStorage from '~/logic/cookies/store/actions/saveCookiesToStorage' -import type { CookiesProps } from '~/logic/cookies/store/model/cookie' -import { cookiesSelector } from '~/logic/cookies/store/selectors' +import { loadFromStorage, saveToStorage } from '~/utils/storage' +import { COOKIES_KEY } from '~/logic/cookies/utils/cookiesStorage' const useStyles = makeStyles({ container: { @@ -68,26 +66,45 @@ const useStyles = makeStyles({ }, }) +export type CookiesProps = { + acceptedNecessary: boolean, + acceptedAnalytics: boolean, +} const CookiesBanner = () => { const classes = useStyles() - const cookiesState: CookiesProps = useSelector(cookiesSelector) - const dispatch = useDispatch() - const { acceptedNecessary } = cookiesState - const showBanner = acceptedNecessary === false + + const [showBanner, setShowBanner] = useState(false) const [localNecessary, setLocalNecessary] = useState(true) const [localAnalytics, setLocalAnalytics] = useState(false) - const acceptCookiesHandler = (newState: CookiesProps) => { - dispatch(saveCookiesToStorage(newState)) + useEffect(() => { + async function fetchCookiesFromStorage() { + const cookiesState: CookiesProps = await loadFromStorage(COOKIES_KEY) + if (cookiesState) { + const { acceptedNecessary, acceptedAnalytics } = cookiesState + setLocalAnalytics(acceptedAnalytics) + setLocalNecessary(acceptedNecessary) + setShowBanner(acceptedNecessary === false) + } else { + setShowBanner(true) + } + } + fetchCookiesFromStorage() + }, []) + + const acceptCookiesHandler = async (newState: CookiesProps) => { + await saveToStorage(COOKIES_KEY, newState) + setShowBanner(false) } - const closeCookiesBannerHandler = () => { + const closeCookiesBannerHandler = async () => { const newState = { acceptedNecessary: true, acceptedAnalytics: false, } - dispatch(saveCookiesToStorage(newState)) + await saveToStorage(COOKIES_KEY, newState) + setShowBanner(false) } @@ -114,7 +131,7 @@ We use cookies to give you the best onChange={() => setLocalNecessary((prev) => !prev)} value={localNecessary} control={( - + )} />
@@ -133,7 +150,6 @@ We use cookies to give you the best From c995cc21bacb05cd656807cf74b5c51df4806914 Mon Sep 17 00:00:00 2001 From: apane Date: Wed, 27 Nov 2019 16:19:37 -0300 Subject: [PATCH 013/116] Fixs cookies banner verbiage Fix "x" in wrong place for snackbar messages --- src/components/CookiesBanner/index.jsx | 10 ++++------ src/components/Root/index.js | 1 + src/components/Root/index.scss | 4 ---- 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index b0638cc7..9cb94e52 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -113,14 +113,12 @@ const CookiesBanner = () => { closeCookiesBannerHandler()} className={classes.close}>

-We use cookies to give you the best - experience and to help improve our website. Please read our + We use cookies to give you the best experience and to help improve our website. Please read our {' '} Cookie Policy {' '} - for more information. By clicking "Accept cookies", - you agree to the storing of cookies on your device to enhance site - navigation and analyze site usage. + for more information. By clicking "Accept all", you agree to the storing of cookies on your device + to enhance site navigation, analyze site usage and provide customer support.

@@ -155,7 +153,7 @@ We use cookies to give you the best variant="outlined" onClick={() => acceptCookiesHandler()} > - Accept Cookies + Accept All
diff --git a/src/components/Root/index.js b/src/components/Root/index.js index cf91fb57..8cfba635 100644 --- a/src/components/Root/index.js +++ b/src/components/Root/index.js @@ -11,6 +11,7 @@ import Loader from '../Loader' import { history, store } from '~/store' import theme from '~/theme/mui' import AppRoutes from '~/routes' + import './index.scss' const Root = () => ( diff --git a/src/components/Root/index.scss b/src/components/Root/index.scss index ecc20309..b9d9adfa 100644 --- a/src/components/Root/index.scss +++ b/src/components/Root/index.scss @@ -1,7 +1,3 @@ -* { - box-sizing: border-box; -} - html, body { height: 100%; From fe422cba9f053a41b498df209ce19e46c69d8229 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Mon, 2 Dec 2019 08:44:21 -0300 Subject: [PATCH 014/116] (remove) unused library --- package.json | 1 - src/theme/mui.js | 1 - yarn.lock | 738 +++++++++++++++++++++++++++++++++++++++++++++-- 3 files changed, 710 insertions(+), 30 deletions(-) diff --git a/package.json b/package.json index 3ffa6538..76b79ec6 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,6 @@ "material-ui-search-bar": "^1.0.0-beta.13", "notistack": "https://github.com/gnosis/notistack.git#v0.9.4", "optimize-css-assets-webpack-plugin": "5.0.3", - "polish": "^0.2.3", "qrcode.react": "1.0.0", "react": "16.12.0", "react-dom": "16.12.0", diff --git a/src/theme/mui.js b/src/theme/mui.js index 1ab43df6..54b23539 100644 --- a/src/theme/mui.js +++ b/src/theme/mui.js @@ -1,6 +1,5 @@ // @flow import { createMuiTheme } from '@material-ui/core/styles' -import { rgba } from 'polished' import { boldFont, bolderFont, diff --git a/yarn.lock b/yarn.lock index d0f32690..d1b5036d 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3936,6 +3936,13 @@ ansi-align@^3.0.0: dependencies: string-width "^3.0.0" +ansi-colors@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" + integrity sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA== + dependencies: + ansi-wrap "^0.1.0" + ansi-colors@^3.0.0: version "3.2.4" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" @@ -3953,6 +3960,13 @@ ansi-escapes@^4.2.1: dependencies: type-fest "^0.5.2" +ansi-gray@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" + integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= + dependencies: + ansi-wrap "0.1.0" + ansi-html@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" @@ -3997,6 +4011,11 @@ ansi-to-html@^0.6.11: dependencies: entities "^1.1.2" +ansi-wrap@0.1.0, ansi-wrap@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" + integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= + any-promise@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" @@ -4020,11 +4039,23 @@ app-root-dir@^1.0.2: resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg= +append-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/append-buffer/-/append-buffer-1.0.2.tgz#d8220cf466081525efea50614f3de6514dfa58f1" + integrity sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE= + dependencies: + buffer-equal "^1.0.0" + aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== +archy@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" + integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= + are-we-there-yet@~1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" @@ -4060,16 +4091,35 @@ arr-diff@^4.0.0: resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= +arr-filter@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/arr-filter/-/arr-filter-1.1.2.tgz#43fdddd091e8ef11aa4c45d9cdc18e2dff1711ee" + integrity sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4= + dependencies: + make-iterator "^1.0.0" + arr-flatten@^1.0.1, arr-flatten@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== +arr-map@^2.0.0, arr-map@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/arr-map/-/arr-map-2.0.2.tgz#3a77345ffc1cf35e2a91825601f9e58f2e24cac4" + integrity sha1-Onc0X/wc814qkYJWAfnljy4kysQ= + dependencies: + make-iterator "^1.0.0" + arr-union@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= +array-each@^1.0.0, array-each@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" + integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8= + array-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" @@ -4093,6 +4143,35 @@ array-includes@^3.0.3: define-properties "^1.1.2" es-abstract "^1.7.0" +array-initial@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/array-initial/-/array-initial-1.1.0.tgz#2fa74b26739371c3947bd7a7adc73be334b3d795" + integrity sha1-L6dLJnOTccOUe9enrcc74zSz15U= + dependencies: + array-slice "^1.0.0" + is-number "^4.0.0" + +array-last@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/array-last/-/array-last-1.3.0.tgz#7aa77073fec565ddab2493f5f88185f404a9d336" + integrity sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg== + dependencies: + is-number "^4.0.0" + +array-slice@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" + integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== + +array-sort@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-sort/-/array-sort-1.0.0.tgz#e4c05356453f56f53512a7d1d6123f2c54c0a88a" + integrity sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg== + dependencies: + default-compare "^1.0.0" + get-value "^2.0.6" + kind-of "^5.0.2" + array-union@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" @@ -4212,6 +4291,16 @@ astral-regex@^1.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== +async-done@^1.2.0, async-done@^1.2.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/async-done/-/async-done-1.3.2.tgz#5e15aa729962a4b07414f528a88cdf18e0b290a2" + integrity sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.2" + process-nextick-args "^2.0.0" + stream-exhaust "^1.0.1" + async-each@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" @@ -4229,6 +4318,13 @@ async-limiter@^1.0.0, async-limiter@~1.0.0: resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== +async-settle@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/async-settle/-/async-settle-1.0.0.tgz#1d0a914bb02575bec8a8f3a74e5080f72b2c0c6b" + integrity sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs= + dependencies: + async-done "^1.2.2" + async@2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" @@ -5228,6 +5324,21 @@ babylon@6.18.0, babylon@^6.18.0: resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== +bach@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/bach/-/bach-1.2.0.tgz#4b3ce96bf27134f79a1b414a51c14e34c3bd9880" + integrity sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA= + dependencies: + arr-filter "^1.1.1" + arr-flatten "^1.0.1" + arr-map "^2.0.0" + array-each "^1.0.0" + array-initial "^1.0.0" + array-last "^1.1.1" + async-done "^1.2.2" + async-settle "^1.0.0" + now-and-later "^2.0.0" + backoff@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/backoff/-/backoff-2.5.0.tgz#f616eda9d3e4b66b8ca7fca79f695722c5f8e26f" @@ -5679,6 +5790,11 @@ buffer-crc32@~0.2.3: resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= +buffer-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" + integrity sha1-WWFrSYME1Var1GaWayLu2j7KX74= + buffer-fill@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" @@ -6020,7 +6136,7 @@ cheerio@1.0.0-rc.2: lodash "^4.15.0" parse5 "^3.0.1" -chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.8: +chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.8: version "2.1.8" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== @@ -6161,6 +6277,11 @@ cliui@^5.0.0: strip-ansi "^5.2.0" wrap-ansi "^5.1.0" +clone-buffer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" + integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg= + clone-deep@^0.2.4: version "0.2.4" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6" @@ -6184,6 +6305,11 @@ clone-stats@^0.0.1: resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" integrity sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE= +clone-stats@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" + integrity sha1-s3gt/4u1R04Yuba/D9/ngvh3doA= + clone@2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" @@ -6199,6 +6325,15 @@ clone@^1.0.0, clone@^1.0.2: resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= +cloneable-readable@^1.0.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.3.tgz#120a00cb053bfb63a222e709f9683ea2e11d8cec" + integrity sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ== + dependencies: + inherits "^2.0.1" + process-nextick-args "^2.0.0" + readable-stream "^2.3.5" + clsx@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.0.4.tgz#0c0171f6d5cb2fe83848463c15fcc26b4df8c2ec" @@ -6231,6 +6366,15 @@ coinstring@^2.0.0: bs58 "^2.0.1" create-hash "^1.1.1" +collection-map@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-map/-/collection-map-1.0.0.tgz#aea0f06f8d26c780c2b75494385544b2255af18c" + integrity sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw= + dependencies: + arr-map "^2.0.2" + for-own "^1.0.0" + make-iterator "^1.0.0" + collection-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" @@ -6274,6 +6418,11 @@ color-string@^1.5.2: color-name "^1.0.0" simple-swizzle "^0.2.2" +color-support@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + color@^3.0.0: version "3.1.2" resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" @@ -6390,7 +6539,7 @@ concat-stream@1.5.1: readable-stream "~2.0.0" typedarray "~0.0.5" -concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.5.1: +concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.5.1, concat-stream@^1.6.0: version "1.6.2" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== @@ -6507,6 +6656,14 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= +copy-props@^2.0.1: + version "2.0.4" + resolved "https://registry.yarnpkg.com/copy-props/-/copy-props-2.0.4.tgz#93bb1cadfafd31da5bb8a9d4b41f471ec3a72dfe" + integrity sha512-7cjuUME+p+S3HZlbllgsn2CDwS+5eCCX16qBgNC4jgSTf49qR1VKy/Zhl400m0IQXl/bPGEVqncgUUMjrr4s8A== + dependencies: + each-props "^1.3.0" + is-plain-object "^2.0.1" + copy-to-clipboard@^3.0.8: version "3.2.0" resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz#d2724a3ccbfed89706fac8a894872c979ac74467" @@ -7117,6 +7274,13 @@ deep-object-diff@^1.1.0: resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a" integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw== +default-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/default-compare/-/default-compare-1.0.0.tgz#cb61131844ad84d84788fb68fd01681ca7781a2f" + integrity sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ== + dependencies: + kind-of "^5.0.2" + default-gateway@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" @@ -7125,6 +7289,11 @@ default-gateway@^4.2.0: execa "^1.0.0" ip-regex "^2.1.0" +default-resolution@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/default-resolution/-/default-resolution-2.0.0.tgz#bcb82baa72ad79b426a76732f1a81ad6df26d684" + integrity sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ= + defaults@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" @@ -7529,6 +7698,14 @@ duplexify@^3.2.0, duplexify@^3.4.2, duplexify@^3.6.0: readable-stream "^2.0.0" stream-shift "^1.0.0" +each-props@^1.3.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/each-props/-/each-props-1.3.2.tgz#ea45a414d16dd5cfa419b1a81720d5ca06892333" + integrity sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA== + dependencies: + is-plain-object "^2.0.1" + object.defaults "^1.1.0" + easy-stack@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/easy-stack/-/easy-stack-1.0.0.tgz#12c91b3085a37f0baa336e9486eac4bf94e3e788" @@ -7727,12 +7904,21 @@ es5-ext@^0.10.35, es5-ext@^0.10.50: es6-symbol "~3.1.2" next-tick "~1.0.0" +es5-ext@^0.10.46: + version "0.10.53" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" + integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== + dependencies: + es6-iterator "~2.0.3" + es6-symbol "~3.1.3" + next-tick "~1.0.0" + es5-shim@^4.5.13: version "4.5.13" resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.13.tgz#5d88062de049f8969f83783f4a4884395f21d28b" integrity sha512-xi6hh6gsvDE0MaW4Vp1lgNEBpVcCXRWfPXj5egDvtgLz4L9MEvNwYEMdJH+JJinWkwa8c3c3o5HduV7dB/e1Hw== -es6-iterator@~2.0.3: +es6-iterator@^2.0.1, es6-iterator@^2.0.3, es6-iterator@~2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= @@ -7746,7 +7932,7 @@ es6-shim@^0.35.5: resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.5.tgz#46f59dc0a84a1c5029e8ff1166ca0a902077a9ab" integrity sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg== -es6-symbol@^3.1.1, es6-symbol@~3.1.2: +es6-symbol@^3.1.1, es6-symbol@~3.1.2, es6-symbol@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== @@ -7762,6 +7948,16 @@ es6-templates@^0.2.3: recast "~0.11.12" through "~2.3.6" +es6-weak-map@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" + integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== + dependencies: + d "1" + es5-ext "^0.10.46" + es6-iterator "^2.0.3" + es6-symbol "^3.1.1" + escape-html@1.0.3, escape-html@^1.0.3, escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" @@ -8848,6 +9044,16 @@ fake-merkle-patricia-tree@^1.0.1: dependencies: checkpoint-store "^1.1.0" +fancy-log@^1.3.2: + version "1.3.3" + resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" + integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== + dependencies: + ansi-gray "^0.1.1" + color-support "^1.1.3" + parse-node-version "^1.0.0" + time-stamp "^1.0.0" + fast-deep-equal@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" @@ -9120,7 +9326,7 @@ find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" -findup-sync@3.0.0: +findup-sync@3.0.0, findup-sync@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== @@ -9130,11 +9336,37 @@ findup-sync@3.0.0: micromatch "^3.0.4" resolve-dir "^1.0.1" +findup-sync@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" + integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw= + dependencies: + detect-file "^1.0.0" + is-glob "^3.1.0" + micromatch "^3.0.4" + resolve-dir "^1.0.1" + +fined@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz#d00beccf1aa2b475d16d423b0238b713a2c4a37b" + integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng== + dependencies: + expand-tilde "^2.0.2" + is-plain-object "^2.0.3" + object.defaults "^1.1.0" + object.pick "^1.2.0" + parse-filepath "^1.0.1" + first-chunk-stream@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" integrity sha1-Wb+1DNkF9g18OUzT2ayqtOatk04= +flagged-respawn@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41" + integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q== + flat-cache@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" @@ -9159,7 +9391,7 @@ flow-stoplight@^1.0.0: resolved "https://registry.yarnpkg.com/flow-stoplight/-/flow-stoplight-1.0.0.tgz#4a292c5bcff8b39fa6cc0cb1a853d86f27eeff7b" integrity sha1-SiksW8/4s5+mzAyxqFPYbyfu/3s= -flush-write-stream@^1.0.0: +flush-write-stream@^1.0.0, flush-write-stream@^1.0.2: version "1.1.1" resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== @@ -9210,6 +9442,13 @@ for-own@^0.1.3, for-own@^0.1.4: dependencies: for-in "^1.0.1" +for-own@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" + integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= + dependencies: + for-in "^1.0.1" + foreach@^2.0.4: version "2.0.5" resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" @@ -9359,6 +9598,14 @@ fs-minipass@^1.2.5: dependencies: minipass "^2.6.0" +fs-mkdirp-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz#0b7815fc3201c6a69e14db98ce098c16935259eb" + integrity sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes= + dependencies: + graceful-fs "^4.1.11" + through2 "^2.0.3" + fs-readdir-recursive@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" @@ -9623,11 +9870,39 @@ glob-stream@^5.3.2: to-absolute-glob "^0.1.1" unique-stream "^2.0.2" +glob-stream@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz#7045c99413b3eb94888d83ab46d0b404cc7bdde4" + integrity sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ= + dependencies: + extend "^3.0.0" + glob "^7.1.1" + glob-parent "^3.1.0" + is-negated-glob "^1.0.0" + ordered-read-streams "^1.0.0" + pumpify "^1.3.5" + readable-stream "^2.1.5" + remove-trailing-separator "^1.0.1" + to-absolute-glob "^2.0.0" + unique-stream "^2.0.2" + glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= +glob-watcher@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-5.0.3.tgz#88a8abf1c4d131eb93928994bc4a593c2e5dd626" + integrity sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg== + dependencies: + anymatch "^2.0.0" + async-done "^1.2.0" + chokidar "^2.0.0" + is-negated-glob "^1.0.0" + just-debounce "^1.0.0" + object.defaults "^1.1.0" + glob@7.1.2: version "7.1.2" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" @@ -9770,6 +10045,13 @@ globby@^6.1.0: pify "^2.0.0" pinkie-promise "^2.0.0" +glogg@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.2.tgz#2d7dd702beda22eb3bffadf880696da6d846313f" + integrity sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA== + dependencies: + sparkles "^1.0.0" + good-listener@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" @@ -9839,6 +10121,30 @@ gud@^1.0.0: resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== +gulp-cli@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/gulp-cli/-/gulp-cli-2.2.0.tgz#5533126eeb7fe415a7e3e84a297d334d5cf70ebc" + integrity sha512-rGs3bVYHdyJpLqR0TUBnlcZ1O5O++Zs4bA0ajm+zr3WFCfiSLjGwoCBqFs18wzN+ZxahT9DkOK5nDf26iDsWjA== + dependencies: + ansi-colors "^1.0.1" + archy "^1.0.0" + array-sort "^1.0.0" + color-support "^1.1.3" + concat-stream "^1.6.0" + copy-props "^2.0.1" + fancy-log "^1.3.2" + gulplog "^1.0.0" + interpret "^1.1.0" + isobject "^3.0.1" + liftoff "^3.1.0" + matchdep "^2.0.0" + mute-stdout "^1.0.0" + pretty-hrtime "^1.0.0" + replace-homedir "^1.0.0" + semver-greatest-satisfied-range "^1.1.0" + v8flags "^3.0.1" + yargs "^7.1.0" + gulp-sourcemaps@^1.5.2: version "1.12.1" resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.12.1.tgz#b437d1f3d980cf26e81184823718ce15ae6597b6" @@ -9856,6 +10162,23 @@ gulp-sourcemaps@^1.5.2: through2 "2.X" vinyl "1.X" +gulp@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/gulp/-/gulp-4.0.2.tgz#543651070fd0f6ab0a0650c6a3e6ff5a7cb09caa" + integrity sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA== + dependencies: + glob-watcher "^5.0.3" + gulp-cli "^2.2.0" + undertaker "^1.2.1" + vinyl-fs "^3.0.0" + +gulplog@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" + integrity sha1-4oxNRdBey77YGDY86PnFkmIp/+U= + dependencies: + glogg "^1.0.0" + gzip-size@5.1.1, gzip-size@^5.0.0: version "5.1.1" resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" @@ -10579,7 +10902,7 @@ internal-ip@^4.3.0: default-gateway "^4.2.0" ipaddr.js "^1.9.0" -interpret@1.2.0, interpret@^1.0.0, interpret@^1.2.0: +interpret@1.2.0, interpret@^1.0.0, interpret@^1.1.0, interpret@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== @@ -10638,6 +10961,14 @@ is-absolute-url@^3.0.3: resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== +is-absolute@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" + integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== + dependencies: + is-relative "^1.0.0" + is-windows "^1.0.1" + is-accessor-descriptor@^0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" @@ -10890,6 +11221,11 @@ is-natural-number@^4.0.1: resolved "https://registry.yarnpkg.com/is-natural-number/-/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8" integrity sha1-q5124dtM7VHjXeDHLr7PCfc0zeg= +is-negated-glob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" + integrity sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI= + is-number@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" @@ -10998,6 +11334,13 @@ is-regex@^1.0.4: dependencies: has "^1.0.1" +is-relative@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" + integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== + dependencies: + is-unc-path "^1.0.0" + is-resolvable@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" @@ -11037,7 +11380,14 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0: resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= -is-utf8@^0.2.0: +is-unc-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" + integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== + dependencies: + unc-path-regex "^0.1.2" + +is-utf8@^0.2.0, is-utf8@^0.2.1: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= @@ -11047,6 +11397,11 @@ is-valid-glob@^0.3.0: resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" integrity sha1-1LVcafUYhvm2XHDWwmItN+KfSP4= +is-valid-glob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" + integrity sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao= + is-window@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d" @@ -11893,6 +12248,11 @@ just-curry-it@^3.1.0: resolved "https://registry.yarnpkg.com/just-curry-it/-/just-curry-it-3.1.0.tgz#ab59daed308a58b847ada166edd0a2d40766fbc5" integrity sha512-mjzgSOFzlrurlURaHVjnQodyPNvrHrf1TbQP2XU9NSqBtHQPuHZ+Eb6TAJP7ASeJN9h9K0KXoRTs8u6ouHBKvg== +just-debounce@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/just-debounce/-/just-debounce-1.0.0.tgz#87fccfaeffc0b68cd19d55f6722943f929ea35ea" + integrity sha1-h/zPrv/AtozRnVX2cilD+SnqNeo= + keccak@^1.0.2: version "1.4.0" resolved "https://registry.yarnpkg.com/keccak/-/keccak-1.4.0.tgz#572f8a6dbee8e7b3aa421550f9e6408ca2186f80" @@ -11954,7 +12314,7 @@ kind-of@^4.0.0: dependencies: is-buffer "^1.1.5" -kind-of@^5.0.0: +kind-of@^5.0.0, kind-of@^5.0.2: version "5.1.0" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== @@ -11984,6 +12344,14 @@ last-call-webpack-plugin@^3.0.0: lodash "^4.17.5" webpack-sources "^1.1.0" +last-run@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/last-run/-/last-run-1.1.1.tgz#45b96942c17b1c79c772198259ba943bebf8ca5b" + integrity sha1-RblpQsF7HHnHchmCWbqUO+v4yls= + dependencies: + default-resolution "^2.0.0" + es6-weak-map "^2.0.1" + lazy-cache@^0.2.3: version "0.2.7" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" @@ -12031,6 +12399,13 @@ lcid@^2.0.0: dependencies: invert-kv "^2.0.0" +lead@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lead/-/lead-1.0.0.tgz#6f14f99a37be3a9dd784f5495690e5903466ee42" + integrity sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI= + dependencies: + flush-write-stream "^1.0.2" + left-pad@^1.1.3, left-pad@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" @@ -12178,6 +12553,20 @@ levn@^0.3.0, levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" +liftoff@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-3.1.0.tgz#c9ba6081f908670607ee79062d700df062c52ed3" + integrity sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog== + dependencies: + extend "^3.0.0" + findup-sync "^3.0.0" + fined "^1.0.1" + flagged-respawn "^1.0.0" + is-plain-object "^2.0.4" + object.map "^1.0.0" + rechoir "^0.6.2" + resolve "^1.1.7" + linked-list@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/linked-list/-/linked-list-0.1.0.tgz#798b0ff97d1b92a4fd08480f55aea4e9d49d37bf" @@ -12509,6 +12898,13 @@ make-error@^1.3.4: resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g== +make-iterator@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" + integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw== + dependencies: + kind-of "^6.0.2" + make-plural@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-4.3.0.tgz#f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735" @@ -12535,7 +12931,7 @@ map-age-cleaner@^0.1.1: dependencies: p-defer "^1.0.0" -map-cache@^0.2.2: +map-cache@^0.2.0, map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= @@ -12575,6 +12971,16 @@ marked@0.3.19: resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" integrity sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg== +matchdep@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/matchdep/-/matchdep-2.0.0.tgz#c6f34834a0d8dbc3b37c27ee8bbcb27c7775582e" + integrity sha1-xvNINKDY28OzfCfui7yyfHd1WC4= + dependencies: + findup-sync "^2.0.0" + micromatch "^3.0.4" + resolve "^1.4.0" + stack-trace "0.0.10" + material-colors@^1.2.1: version "1.2.6" resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.6.tgz#6d1958871126992ceecc72f4bcc4d8f010865f46" @@ -13051,6 +13457,11 @@ multicast-dns@^6.0.1: dns-packet "^1.3.1" thunky "^1.0.2" +mute-stdout@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mute-stdout/-/mute-stdout-1.0.1.tgz#acb0300eb4de23a7ddeec014e3e96044b3472331" + integrity sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg== + mute-stream@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" @@ -13327,6 +13738,13 @@ normalize-url@^4.1.0: prop-types "^15.7.2" react-is "^16.9.0" +now-and-later@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/now-and-later/-/now-and-later-2.0.1.tgz#8e579c8685764a7cc02cb680380e94f43ccb1f7c" + integrity sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ== + dependencies: + once "^1.3.2" + npm-bundled@^1.0.1: version "1.0.6" resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" @@ -13464,7 +13882,7 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" -object.assign@^4.1.0: +object.assign@^4.0.4, object.assign@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== @@ -13474,6 +13892,16 @@ object.assign@^4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" +object.defaults@^1.0.0, object.defaults@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" + integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8= + dependencies: + array-each "^1.0.1" + array-slice "^1.0.0" + for-own "^1.0.0" + isobject "^3.0.0" + object.entries@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" @@ -13502,6 +13930,14 @@ object.getownpropertydescriptors@^2.0.3: define-properties "^1.1.2" es-abstract "^1.5.1" +object.map@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" + integrity sha1-z4Plncj8wK1fQlDh94s7gb2AHTc= + dependencies: + for-own "^1.0.0" + make-iterator "^1.0.0" + object.omit@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" @@ -13510,13 +13946,21 @@ object.omit@^2.0.0: for-own "^0.1.4" is-extendable "^0.1.1" -object.pick@^1.3.0: +object.pick@^1.2.0, object.pick@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= dependencies: isobject "^3.0.1" +object.reduce@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object.reduce/-/object.reduce-1.0.1.tgz#6fe348f2ac7fa0f95ca621226599096825bb03ad" + integrity sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60= + dependencies: + for-own "^1.0.0" + make-iterator "^1.0.0" + object.values@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" @@ -13561,7 +14005,7 @@ on-headers@~1.0.2: resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== -once@^1.3.0, once@^1.3.1, once@^1.4.0: +once@^1.3.0, once@^1.3.1, once@^1.3.2, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= @@ -13654,6 +14098,13 @@ ordered-read-streams@^0.3.0: is-stream "^1.0.1" readable-stream "^2.0.1" +ordered-read-streams@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz#77c0cb37c41525d64166d990ffad7ec6a0e1363e" + integrity sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4= + dependencies: + readable-stream "^2.0.1" + original-require@1.0.1, original-require@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/original-require/-/original-require-1.0.1.tgz#0f130471584cd33511c5ec38c8d59213f9ac5e20" @@ -13872,6 +14323,15 @@ parse-entities@^1.1.2: is-decimal "^1.0.0" is-hexadecimal "^1.0.0" +parse-filepath@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" + integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= + dependencies: + is-absolute "^1.0.0" + map-cache "^0.2.0" + path-root "^0.1.1" + parse-glob@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" @@ -13905,6 +14365,11 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" +parse-node-version@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" + integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== + parse-passwd@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" @@ -13984,6 +14449,18 @@ path-parse@^1.0.6: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== +path-root-regex@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" + integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= + +path-root@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" + integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= + dependencies: + path-root-regex "^0.1.0" + path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" @@ -14141,11 +14618,6 @@ pocket-js-core@0.0.3: dependencies: axios "^0.18.0" -polish@^0.2.3: - version "0.2.3" - resolved "https://registry.yarnpkg.com/polish/-/polish-0.2.3.tgz#4a95296b5501dd10d3b25b8e6ed8339ef4deb147" - integrity sha1-SpUpa1UB3RDTsluObtgznvTesUc= - polished@^3.3.1: version "3.4.2" resolved "https://registry.yarnpkg.com/polished/-/polished-3.4.2.tgz#b4780dad81d64df55615fbfc77acb52fd17d88cd" @@ -14673,7 +15145,7 @@ pretty-format@^24.0.0, pretty-format@^24.3.0, pretty-format@^24.9.0: ansi-styles "^3.2.0" react-is "^16.8.4" -pretty-hrtime@^1.0.3: +pretty-hrtime@^1.0.0, pretty-hrtime@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= @@ -14690,16 +15162,16 @@ private@^0.1.6, private@^0.1.8, private@~0.1.5: resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== +process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= -process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" @@ -14876,7 +15348,7 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -pumpify@^1.3.3: +pumpify@^1.3.3, pumpify@^1.3.5: version "1.5.1" resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== @@ -15868,7 +16340,24 @@ remotedev-serialize@^0.1.8: dependencies: jsan "^3.1.13" -remove-trailing-separator@^1.0.1: +remove-bom-buffer@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz#c2bf1e377520d324f623892e33c10cac2c252b53" + integrity sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ== + dependencies: + is-buffer "^1.1.5" + is-utf8 "^0.2.1" + +remove-bom-stream@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz#05f1a593f16e42e1fb90ebf59de8e569525f9523" + integrity sha1-BfGlk/FuQuH7kOv1nejlaVJflSM= + dependencies: + remove-bom-buffer "^3.0.0" + safe-buffer "^5.1.0" + through2 "^2.0.3" + +remove-trailing-separator@^1.0.1, remove-trailing-separator@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= @@ -15906,6 +16395,20 @@ replace-ext@0.0.1: resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" integrity sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ= +replace-ext@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" + integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs= + +replace-homedir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/replace-homedir/-/replace-homedir-1.0.0.tgz#e87f6d513b928dde808260c12be7fec6ff6e798c" + integrity sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw= + dependencies: + homedir-polyfill "^1.0.1" + is-absolute "^1.0.0" + remove-trailing-separator "^1.1.0" + request-promise-core@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" @@ -16039,6 +16542,13 @@ resolve-from@^5.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== +resolve-options@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/resolve-options/-/resolve-options-1.1.0.tgz#32bb9e39c06d67338dc9378c0d6d6074566ad131" + integrity sha1-MrueOcBtZzONyTeMDW1gdFZq0TE= + dependencies: + value-or-function "^3.0.0" + resolve-pathname@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" @@ -16061,6 +16571,13 @@ resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.3. dependencies: path-parse "^1.0.6" +resolve@^1.1.7, resolve@^1.4.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.13.1.tgz#be0aa4c06acd53083505abb35f4d66932ab35d16" + integrity sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w== + dependencies: + path-parse "^1.0.6" + resolve@~1.11.1: version "1.11.1" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" @@ -16426,6 +16943,13 @@ semaphore@>=1.0.1, semaphore@^1.0.3, semaphore@^1.1.0: resolved "https://registry.yarnpkg.com/semaphore/-/semaphore-1.1.0.tgz#aaad8b86b20fe8e9b32b16dc2ee682a8cd26a8aa" integrity sha512-O4OZEaNtkMd/K0i6js9SL+gqy0ZCBMgUvlSqHKi4IBdjhe7wB8pwztUk1BbZ1fmrvpwFrPbHzqd2w5pTcJH6LA== +semver-greatest-satisfied-range@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz#13e8c2658ab9691cb0cd71093240280d36f77a5b" + integrity sha1-E+jCZYq5aRywzXEJMkAoDTb3els= + dependencies: + sver-compat "^1.5.0" + "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" @@ -16847,6 +17371,11 @@ space-separated-tokens@^1.0.0: resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.4.tgz#27910835ae00d0adfcdbd0ad7e611fb9544351fa" integrity sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA== +sparkles@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.1.tgz#008db65edce6c50eec0c5e228e1945061dd0437c" + integrity sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw== + spawn-args@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/spawn-args/-/spawn-args-0.1.0.tgz#3e0232a0571b387907f8b3f544aa531c6224848c" @@ -16989,6 +17518,11 @@ stable@^0.1.8: resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== +stack-trace@0.0.10: + version "0.0.10" + resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" + integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= + stack-utils@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" @@ -17056,6 +17590,11 @@ stream-each@^1.1.0: end-of-stream "^1.1.0" stream-shift "^1.0.0" +stream-exhaust@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/stream-exhaust/-/stream-exhaust-1.0.2.tgz#acdac8da59ef2bc1e17a2c0ccf6c320d120e555d" + integrity sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw== + stream-http@^2.7.2: version "2.8.3" resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" @@ -17093,7 +17632,7 @@ string-length@^2.0.0: astral-regex "^1.0.0" strip-ansi "^4.0.0" -string-width@^1.0.1: +string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= @@ -17374,6 +17913,14 @@ supports-color@^5.3.0, supports-color@^5.5.0: dependencies: has-flag "^3.0.0" +sver-compat@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/sver-compat/-/sver-compat-1.5.0.tgz#3cf87dfeb4d07b4a3f14827bc186b3fd0c645cd8" + integrity sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg= + dependencies: + es6-iterator "^2.0.1" + es6-symbol "^3.1.1" + svg-parser@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.2.tgz#d134cc396fa2681dc64f518330784e98bd801ec8" @@ -17642,6 +18189,11 @@ tildify@1.2.0: dependencies: os-homedir "^1.0.0" +time-stamp@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" + integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= + timed-out@^4.0.0, timed-out@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" @@ -17705,6 +18257,14 @@ to-absolute-glob@^0.1.1: dependencies: extend-shallow "^2.0.1" +to-absolute-glob@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1865f43d9e74b0822db9f145b78cff7d0f7c849b" + integrity sha1-GGX0PZ50sIItufFFt4z/fQ98hJs= + dependencies: + is-absolute "^1.0.0" + is-negated-glob "^1.0.0" + to-arraybuffer@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" @@ -17774,6 +18334,13 @@ to-space-case@^1.0.0: dependencies: to-no-case "^1.0.0" +to-through@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-through/-/to-through-2.0.0.tgz#fc92adaba072647bc0b67d6b03664aa195093af6" + integrity sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY= + dependencies: + through2 "^2.0.3" + toggle-selection@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" @@ -18345,11 +18912,36 @@ unbzip2-stream@^1.0.9: buffer "^5.2.1" through "^2.3.8" +unc-path-regex@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" + integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= + underscore@1.9.1, underscore@^1.8.3: version "1.9.1" resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961" integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg== +undertaker-registry@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/undertaker-registry/-/undertaker-registry-1.0.1.tgz#5e4bda308e4a8a2ae584f9b9a4359a499825cc50" + integrity sha1-XkvaMI5KiirlhPm5pDWaSZglzFA= + +undertaker@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/undertaker/-/undertaker-1.2.1.tgz#701662ff8ce358715324dfd492a4f036055dfe4b" + integrity sha512-71WxIzDkgYk9ZS+spIB8iZXchFhAdEo2YU8xYqBYJ39DIUIqziK78ftm26eecoIY49X0J2MLhG4hr18Yp6/CMA== + dependencies: + arr-flatten "^1.0.1" + arr-map "^2.0.0" + bach "^1.0.0" + collection-map "^1.0.0" + es6-weak-map "^2.0.1" + last-run "^1.1.0" + object.defaults "^1.0.0" + object.reduce "^1.0.0" + undertaker-registry "^1.0.0" + unfetch@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.1.0.tgz#6ec2dd0de887e58a4dee83a050ded80ffc4137db" @@ -18640,6 +19232,13 @@ v8-compile-cache@2.0.3: resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== +v8flags@^3.0.1: + version "3.1.3" + resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.1.3.tgz#fc9dc23521ca20c5433f81cc4eb9b3033bb105d8" + integrity sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w== + dependencies: + homedir-polyfill "^1.0.1" + vali-date@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" @@ -18658,6 +19257,11 @@ value-equal@^1.0.1: resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== +value-or-function@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/value-or-function/-/value-or-function-3.0.0.tgz#1c243a50b595c1be54a754bfece8563b9ff8d813" + integrity sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM= + vary@^1, vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" @@ -18705,6 +19309,42 @@ vinyl-fs@2.4.3: vali-date "^1.0.0" vinyl "^1.0.0" +vinyl-fs@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7" + integrity sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng== + dependencies: + fs-mkdirp-stream "^1.0.0" + glob-stream "^6.1.0" + graceful-fs "^4.0.0" + is-valid-glob "^1.0.0" + lazystream "^1.0.0" + lead "^1.0.0" + object.assign "^4.0.4" + pumpify "^1.3.5" + readable-stream "^2.3.3" + remove-bom-buffer "^3.0.0" + remove-bom-stream "^1.2.0" + resolve-options "^1.1.0" + through2 "^2.0.0" + to-through "^2.0.0" + value-or-function "^3.0.0" + vinyl "^2.0.0" + vinyl-sourcemap "^1.1.0" + +vinyl-sourcemap@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz#92a800593a38703a8cdb11d8b300ad4be63b3e16" + integrity sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY= + dependencies: + append-buffer "^1.0.2" + convert-source-map "^1.5.0" + graceful-fs "^4.1.6" + normalize-path "^2.1.1" + now-and-later "^2.0.0" + remove-bom-buffer "^3.0.0" + vinyl "^2.0.0" + vinyl@1.X, vinyl@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" @@ -18714,6 +19354,18 @@ vinyl@1.X, vinyl@^1.0.0: clone-stats "^0.0.1" replace-ext "0.0.1" +vinyl@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86" + integrity sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg== + dependencies: + clone "^2.1.1" + clone-buffer "^1.0.0" + clone-stats "^1.0.0" + cloneable-readable "^1.0.0" + remove-trailing-separator "^1.0.1" + replace-ext "^1.0.0" + vm-browserify@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" @@ -19832,7 +20484,6 @@ websocket@1.0.29, "websocket@github:web3-js/WebSocket-Node#polyfill/globalThis": dependencies: debug "^2.2.0" es5-ext "^0.10.50" - gulp "^4.0.2" nan "^2.14.0" typedarray-to-buffer "^3.1.5" yaeti "^0.0.6" @@ -19892,6 +20543,11 @@ whatwg-url@^7.0.0: tr46 "^1.0.1" webidl-conversions "^4.0.2" +which-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" + integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= + which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" @@ -20161,6 +20817,13 @@ yargs-parser@^2.4.0: camelcase "^3.0.0" lodash.assign "^4.0.6" +yargs-parser@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" + integrity sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= + dependencies: + camelcase "^3.0.0" + yargs-parser@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" @@ -20237,6 +20900,25 @@ yargs@^13.2.0, yargs@^13.2.4, yargs@^13.3.0: y18n "^4.0.0" yargs-parser "^13.1.1" +yargs@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" + integrity sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= + dependencies: + camelcase "^3.0.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^1.4.0" + read-pkg-up "^1.0.1" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^1.0.2" + which-module "^1.0.0" + y18n "^3.2.1" + yargs-parser "^5.0.0" + yargs@^8.0.2: version "8.0.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" From bc994dc355033a6de713104cd0dc5601c38bde12 Mon Sep 17 00:00:00 2001 From: apane Date: Mon, 2 Dec 2019 10:44:29 -0300 Subject: [PATCH 015/116] Adds cookies utils Replaces localStorage with cookies Adds js-cookie --- package.json | 1 + src/components/CookiesBanner/index.jsx | 9 +- src/utils/cookies/index.js | 29 + yarn.lock | 734 +------------------------ 4 files changed, 58 insertions(+), 715 deletions(-) create mode 100644 src/utils/cookies/index.js diff --git a/package.json b/package.json index 76b79ec6..748a5069 100644 --- a/package.json +++ b/package.json @@ -49,6 +49,7 @@ "history": "4.10.1", "immortal-db": "^1.0.2", "immutable": "^4.0.0-rc.9", + "js-cookie": "^2.2.1", "material-ui-search-bar": "^1.0.0-beta.13", "notistack": "https://github.com/gnosis/notistack.git#v0.9.4", "optimize-css-assets-webpack-plugin": "5.0.3", diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index 9cb94e52..5be3d9fe 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -9,9 +9,9 @@ import Link from '~/components/layout/Link' import { WELCOME_ADDRESS } from '~/routes/routes' import Button from '~/components/layout/Button' import { primary, mainFontFamily } from '~/theme/variables' -import { loadFromStorage, saveToStorage } from '~/utils/storage' import type { CookiesProps } from '~/logic/cookies/model/cookie' import { COOKIES_KEY } from '~/logic/cookies/model/cookie' +import { loadFromCookie, saveCookie } from '~/utils/cookies' const useStyles = makeStyles({ container: { @@ -76,7 +76,7 @@ const CookiesBanner = () => { useEffect(() => { async function fetchCookiesFromStorage() { - const cookiesState: CookiesProps = await loadFromStorage(COOKIES_KEY) + const cookiesState: CookiesProps = await loadFromCookie(COOKIES_KEY) if (cookiesState) { const { acceptedNecessary, acceptedAnalytics } = cookiesState setLocalAnalytics(acceptedAnalytics) @@ -94,7 +94,7 @@ const CookiesBanner = () => { acceptedNecessary: true, acceptedAnalytics: true, } - await saveToStorage(COOKIES_KEY, newState) + await saveCookie(COOKIES_KEY, newState, 365) setShowBanner(false) } @@ -103,7 +103,8 @@ const CookiesBanner = () => { acceptedNecessary: true, acceptedAnalytics: localAnalytics, } - await saveToStorage(COOKIES_KEY, newState) + const expDays = localAnalytics ? 365 : 7 + await saveCookie(COOKIES_KEY, newState, expDays) setShowBanner(false) } diff --git a/src/utils/cookies/index.js b/src/utils/cookies/index.js new file mode 100644 index 00000000..cfe65107 --- /dev/null +++ b/src/utils/cookies/index.js @@ -0,0 +1,29 @@ +// @flow +import Cookies from 'js-cookie' +import { getNetwork } from '~/config' + +const PREFIX = `v1_${getNetwork()}` + +export const loadFromCookie = async (key: string): Promise<*> => { + try { + const stringifiedValue = await Cookies.get(`${PREFIX}__${key}`) + if (stringifiedValue === null || stringifiedValue === undefined) { + return undefined + } + + return JSON.parse(stringifiedValue) + } catch (err) { + console.error(`Failed to load ${key} from cookies:`, err) + return undefined + } +} + +export const saveCookie = async (key: string, value: *, expirationDays: number): Promise<*> => { + try { + const stringifiedValue = JSON.stringify(value) + const expiration = expirationDays ? { expires: expirationDays } : undefined + await Cookies.set(`${PREFIX}__${key}`, stringifiedValue, expiration) + } catch (err) { + console.error(`Failed to save ${key} in cookies:`, err) + } +} diff --git a/yarn.lock b/yarn.lock index d1b5036d..852ef0b1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3936,13 +3936,6 @@ ansi-align@^3.0.0: dependencies: string-width "^3.0.0" -ansi-colors@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" - integrity sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA== - dependencies: - ansi-wrap "^0.1.0" - ansi-colors@^3.0.0: version "3.2.4" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" @@ -3960,13 +3953,6 @@ ansi-escapes@^4.2.1: dependencies: type-fest "^0.5.2" -ansi-gray@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" - integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= - dependencies: - ansi-wrap "0.1.0" - ansi-html@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" @@ -4011,11 +3997,6 @@ ansi-to-html@^0.6.11: dependencies: entities "^1.1.2" -ansi-wrap@0.1.0, ansi-wrap@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" - integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= - any-promise@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" @@ -4039,23 +4020,11 @@ app-root-dir@^1.0.2: resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg= -append-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/append-buffer/-/append-buffer-1.0.2.tgz#d8220cf466081525efea50614f3de6514dfa58f1" - integrity sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE= - dependencies: - buffer-equal "^1.0.0" - aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== -archy@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" - integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= - are-we-there-yet@~1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" @@ -4091,35 +4060,16 @@ arr-diff@^4.0.0: resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= -arr-filter@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/arr-filter/-/arr-filter-1.1.2.tgz#43fdddd091e8ef11aa4c45d9cdc18e2dff1711ee" - integrity sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4= - dependencies: - make-iterator "^1.0.0" - arr-flatten@^1.0.1, arr-flatten@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== -arr-map@^2.0.0, arr-map@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/arr-map/-/arr-map-2.0.2.tgz#3a77345ffc1cf35e2a91825601f9e58f2e24cac4" - integrity sha1-Onc0X/wc814qkYJWAfnljy4kysQ= - dependencies: - make-iterator "^1.0.0" - arr-union@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= -array-each@^1.0.0, array-each@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" - integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8= - array-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" @@ -4143,35 +4093,6 @@ array-includes@^3.0.3: define-properties "^1.1.2" es-abstract "^1.7.0" -array-initial@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/array-initial/-/array-initial-1.1.0.tgz#2fa74b26739371c3947bd7a7adc73be334b3d795" - integrity sha1-L6dLJnOTccOUe9enrcc74zSz15U= - dependencies: - array-slice "^1.0.0" - is-number "^4.0.0" - -array-last@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/array-last/-/array-last-1.3.0.tgz#7aa77073fec565ddab2493f5f88185f404a9d336" - integrity sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg== - dependencies: - is-number "^4.0.0" - -array-slice@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" - integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== - -array-sort@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-sort/-/array-sort-1.0.0.tgz#e4c05356453f56f53512a7d1d6123f2c54c0a88a" - integrity sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg== - dependencies: - default-compare "^1.0.0" - get-value "^2.0.6" - kind-of "^5.0.2" - array-union@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" @@ -4291,16 +4212,6 @@ astral-regex@^1.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== -async-done@^1.2.0, async-done@^1.2.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/async-done/-/async-done-1.3.2.tgz#5e15aa729962a4b07414f528a88cdf18e0b290a2" - integrity sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.2" - process-nextick-args "^2.0.0" - stream-exhaust "^1.0.1" - async-each@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" @@ -4318,13 +4229,6 @@ async-limiter@^1.0.0, async-limiter@~1.0.0: resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== -async-settle@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/async-settle/-/async-settle-1.0.0.tgz#1d0a914bb02575bec8a8f3a74e5080f72b2c0c6b" - integrity sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs= - dependencies: - async-done "^1.2.2" - async@2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" @@ -5324,21 +5228,6 @@ babylon@6.18.0, babylon@^6.18.0: resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== -bach@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/bach/-/bach-1.2.0.tgz#4b3ce96bf27134f79a1b414a51c14e34c3bd9880" - integrity sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA= - dependencies: - arr-filter "^1.1.1" - arr-flatten "^1.0.1" - arr-map "^2.0.0" - array-each "^1.0.0" - array-initial "^1.0.0" - array-last "^1.1.1" - async-done "^1.2.2" - async-settle "^1.0.0" - now-and-later "^2.0.0" - backoff@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/backoff/-/backoff-2.5.0.tgz#f616eda9d3e4b66b8ca7fca79f695722c5f8e26f" @@ -5790,11 +5679,6 @@ buffer-crc32@~0.2.3: resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= -buffer-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" - integrity sha1-WWFrSYME1Var1GaWayLu2j7KX74= - buffer-fill@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" @@ -6136,7 +6020,7 @@ cheerio@1.0.0-rc.2: lodash "^4.15.0" parse5 "^3.0.1" -chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.8: +chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.8: version "2.1.8" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== @@ -6277,11 +6161,6 @@ cliui@^5.0.0: strip-ansi "^5.2.0" wrap-ansi "^5.1.0" -clone-buffer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" - integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg= - clone-deep@^0.2.4: version "0.2.4" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6" @@ -6305,11 +6184,6 @@ clone-stats@^0.0.1: resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" integrity sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE= -clone-stats@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" - integrity sha1-s3gt/4u1R04Yuba/D9/ngvh3doA= - clone@2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" @@ -6325,15 +6199,6 @@ clone@^1.0.0, clone@^1.0.2: resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= -cloneable-readable@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.3.tgz#120a00cb053bfb63a222e709f9683ea2e11d8cec" - integrity sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ== - dependencies: - inherits "^2.0.1" - process-nextick-args "^2.0.0" - readable-stream "^2.3.5" - clsx@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.0.4.tgz#0c0171f6d5cb2fe83848463c15fcc26b4df8c2ec" @@ -6366,15 +6231,6 @@ coinstring@^2.0.0: bs58 "^2.0.1" create-hash "^1.1.1" -collection-map@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/collection-map/-/collection-map-1.0.0.tgz#aea0f06f8d26c780c2b75494385544b2255af18c" - integrity sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw= - dependencies: - arr-map "^2.0.2" - for-own "^1.0.0" - make-iterator "^1.0.0" - collection-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" @@ -6418,11 +6274,6 @@ color-string@^1.5.2: color-name "^1.0.0" simple-swizzle "^0.2.2" -color-support@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - color@^3.0.0: version "3.1.2" resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" @@ -6539,7 +6390,7 @@ concat-stream@1.5.1: readable-stream "~2.0.0" typedarray "~0.0.5" -concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.5.1, concat-stream@^1.6.0: +concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.5.1: version "1.6.2" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== @@ -6656,14 +6507,6 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= -copy-props@^2.0.1: - version "2.0.4" - resolved "https://registry.yarnpkg.com/copy-props/-/copy-props-2.0.4.tgz#93bb1cadfafd31da5bb8a9d4b41f471ec3a72dfe" - integrity sha512-7cjuUME+p+S3HZlbllgsn2CDwS+5eCCX16qBgNC4jgSTf49qR1VKy/Zhl400m0IQXl/bPGEVqncgUUMjrr4s8A== - dependencies: - each-props "^1.3.0" - is-plain-object "^2.0.1" - copy-to-clipboard@^3.0.8: version "3.2.0" resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz#d2724a3ccbfed89706fac8a894872c979ac74467" @@ -7274,13 +7117,6 @@ deep-object-diff@^1.1.0: resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a" integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw== -default-compare@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/default-compare/-/default-compare-1.0.0.tgz#cb61131844ad84d84788fb68fd01681ca7781a2f" - integrity sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ== - dependencies: - kind-of "^5.0.2" - default-gateway@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" @@ -7289,11 +7125,6 @@ default-gateway@^4.2.0: execa "^1.0.0" ip-regex "^2.1.0" -default-resolution@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/default-resolution/-/default-resolution-2.0.0.tgz#bcb82baa72ad79b426a76732f1a81ad6df26d684" - integrity sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ= - defaults@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" @@ -7698,14 +7529,6 @@ duplexify@^3.2.0, duplexify@^3.4.2, duplexify@^3.6.0: readable-stream "^2.0.0" stream-shift "^1.0.0" -each-props@^1.3.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/each-props/-/each-props-1.3.2.tgz#ea45a414d16dd5cfa419b1a81720d5ca06892333" - integrity sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA== - dependencies: - is-plain-object "^2.0.1" - object.defaults "^1.1.0" - easy-stack@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/easy-stack/-/easy-stack-1.0.0.tgz#12c91b3085a37f0baa336e9486eac4bf94e3e788" @@ -7904,21 +7727,12 @@ es5-ext@^0.10.35, es5-ext@^0.10.50: es6-symbol "~3.1.2" next-tick "~1.0.0" -es5-ext@^0.10.46: - version "0.10.53" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" - integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== - dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.3" - next-tick "~1.0.0" - es5-shim@^4.5.13: version "4.5.13" resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.13.tgz#5d88062de049f8969f83783f4a4884395f21d28b" integrity sha512-xi6hh6gsvDE0MaW4Vp1lgNEBpVcCXRWfPXj5egDvtgLz4L9MEvNwYEMdJH+JJinWkwa8c3c3o5HduV7dB/e1Hw== -es6-iterator@^2.0.1, es6-iterator@^2.0.3, es6-iterator@~2.0.3: +es6-iterator@~2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= @@ -7932,7 +7746,7 @@ es6-shim@^0.35.5: resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.5.tgz#46f59dc0a84a1c5029e8ff1166ca0a902077a9ab" integrity sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg== -es6-symbol@^3.1.1, es6-symbol@~3.1.2, es6-symbol@~3.1.3: +es6-symbol@^3.1.1, es6-symbol@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== @@ -7948,16 +7762,6 @@ es6-templates@^0.2.3: recast "~0.11.12" through "~2.3.6" -es6-weak-map@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" - integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== - dependencies: - d "1" - es5-ext "^0.10.46" - es6-iterator "^2.0.3" - es6-symbol "^3.1.1" - escape-html@1.0.3, escape-html@^1.0.3, escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" @@ -9044,16 +8848,6 @@ fake-merkle-patricia-tree@^1.0.1: dependencies: checkpoint-store "^1.1.0" -fancy-log@^1.3.2: - version "1.3.3" - resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" - integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== - dependencies: - ansi-gray "^0.1.1" - color-support "^1.1.3" - parse-node-version "^1.0.0" - time-stamp "^1.0.0" - fast-deep-equal@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" @@ -9326,7 +9120,7 @@ find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" -findup-sync@3.0.0, findup-sync@^3.0.0: +findup-sync@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== @@ -9336,37 +9130,11 @@ findup-sync@3.0.0, findup-sync@^3.0.0: micromatch "^3.0.4" resolve-dir "^1.0.1" -findup-sync@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" - integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw= - dependencies: - detect-file "^1.0.0" - is-glob "^3.1.0" - micromatch "^3.0.4" - resolve-dir "^1.0.1" - -fined@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz#d00beccf1aa2b475d16d423b0238b713a2c4a37b" - integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng== - dependencies: - expand-tilde "^2.0.2" - is-plain-object "^2.0.3" - object.defaults "^1.1.0" - object.pick "^1.2.0" - parse-filepath "^1.0.1" - first-chunk-stream@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" integrity sha1-Wb+1DNkF9g18OUzT2ayqtOatk04= -flagged-respawn@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41" - integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q== - flat-cache@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" @@ -9391,7 +9159,7 @@ flow-stoplight@^1.0.0: resolved "https://registry.yarnpkg.com/flow-stoplight/-/flow-stoplight-1.0.0.tgz#4a292c5bcff8b39fa6cc0cb1a853d86f27eeff7b" integrity sha1-SiksW8/4s5+mzAyxqFPYbyfu/3s= -flush-write-stream@^1.0.0, flush-write-stream@^1.0.2: +flush-write-stream@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== @@ -9442,13 +9210,6 @@ for-own@^0.1.3, for-own@^0.1.4: dependencies: for-in "^1.0.1" -for-own@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" - integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= - dependencies: - for-in "^1.0.1" - foreach@^2.0.4: version "2.0.5" resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" @@ -9598,14 +9359,6 @@ fs-minipass@^1.2.5: dependencies: minipass "^2.6.0" -fs-mkdirp-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz#0b7815fc3201c6a69e14db98ce098c16935259eb" - integrity sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes= - dependencies: - graceful-fs "^4.1.11" - through2 "^2.0.3" - fs-readdir-recursive@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" @@ -9870,39 +9623,11 @@ glob-stream@^5.3.2: to-absolute-glob "^0.1.1" unique-stream "^2.0.2" -glob-stream@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz#7045c99413b3eb94888d83ab46d0b404cc7bdde4" - integrity sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ= - dependencies: - extend "^3.0.0" - glob "^7.1.1" - glob-parent "^3.1.0" - is-negated-glob "^1.0.0" - ordered-read-streams "^1.0.0" - pumpify "^1.3.5" - readable-stream "^2.1.5" - remove-trailing-separator "^1.0.1" - to-absolute-glob "^2.0.0" - unique-stream "^2.0.2" - glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= -glob-watcher@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-5.0.3.tgz#88a8abf1c4d131eb93928994bc4a593c2e5dd626" - integrity sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg== - dependencies: - anymatch "^2.0.0" - async-done "^1.2.0" - chokidar "^2.0.0" - is-negated-glob "^1.0.0" - just-debounce "^1.0.0" - object.defaults "^1.1.0" - glob@7.1.2: version "7.1.2" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" @@ -10045,13 +9770,6 @@ globby@^6.1.0: pify "^2.0.0" pinkie-promise "^2.0.0" -glogg@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.2.tgz#2d7dd702beda22eb3bffadf880696da6d846313f" - integrity sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA== - dependencies: - sparkles "^1.0.0" - good-listener@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" @@ -10121,30 +9839,6 @@ gud@^1.0.0: resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== -gulp-cli@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/gulp-cli/-/gulp-cli-2.2.0.tgz#5533126eeb7fe415a7e3e84a297d334d5cf70ebc" - integrity sha512-rGs3bVYHdyJpLqR0TUBnlcZ1O5O++Zs4bA0ajm+zr3WFCfiSLjGwoCBqFs18wzN+ZxahT9DkOK5nDf26iDsWjA== - dependencies: - ansi-colors "^1.0.1" - archy "^1.0.0" - array-sort "^1.0.0" - color-support "^1.1.3" - concat-stream "^1.6.0" - copy-props "^2.0.1" - fancy-log "^1.3.2" - gulplog "^1.0.0" - interpret "^1.1.0" - isobject "^3.0.1" - liftoff "^3.1.0" - matchdep "^2.0.0" - mute-stdout "^1.0.0" - pretty-hrtime "^1.0.0" - replace-homedir "^1.0.0" - semver-greatest-satisfied-range "^1.1.0" - v8flags "^3.0.1" - yargs "^7.1.0" - gulp-sourcemaps@^1.5.2: version "1.12.1" resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.12.1.tgz#b437d1f3d980cf26e81184823718ce15ae6597b6" @@ -10162,23 +9856,6 @@ gulp-sourcemaps@^1.5.2: through2 "2.X" vinyl "1.X" -gulp@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/gulp/-/gulp-4.0.2.tgz#543651070fd0f6ab0a0650c6a3e6ff5a7cb09caa" - integrity sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA== - dependencies: - glob-watcher "^5.0.3" - gulp-cli "^2.2.0" - undertaker "^1.2.1" - vinyl-fs "^3.0.0" - -gulplog@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" - integrity sha1-4oxNRdBey77YGDY86PnFkmIp/+U= - dependencies: - glogg "^1.0.0" - gzip-size@5.1.1, gzip-size@^5.0.0: version "5.1.1" resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" @@ -10902,7 +10579,7 @@ internal-ip@^4.3.0: default-gateway "^4.2.0" ipaddr.js "^1.9.0" -interpret@1.2.0, interpret@^1.0.0, interpret@^1.1.0, interpret@^1.2.0: +interpret@1.2.0, interpret@^1.0.0, interpret@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== @@ -10961,14 +10638,6 @@ is-absolute-url@^3.0.3: resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== -is-absolute@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" - integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== - dependencies: - is-relative "^1.0.0" - is-windows "^1.0.1" - is-accessor-descriptor@^0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" @@ -11221,11 +10890,6 @@ is-natural-number@^4.0.1: resolved "https://registry.yarnpkg.com/is-natural-number/-/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8" integrity sha1-q5124dtM7VHjXeDHLr7PCfc0zeg= -is-negated-glob@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" - integrity sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI= - is-number@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" @@ -11334,13 +10998,6 @@ is-regex@^1.0.4: dependencies: has "^1.0.1" -is-relative@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" - integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== - dependencies: - is-unc-path "^1.0.0" - is-resolvable@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" @@ -11380,14 +11037,7 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0: resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= -is-unc-path@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" - integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== - dependencies: - unc-path-regex "^0.1.2" - -is-utf8@^0.2.0, is-utf8@^0.2.1: +is-utf8@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= @@ -11397,11 +11047,6 @@ is-valid-glob@^0.3.0: resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" integrity sha1-1LVcafUYhvm2XHDWwmItN+KfSP4= -is-valid-glob@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" - integrity sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao= - is-window@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d" @@ -11874,7 +11519,7 @@ jest@24.9.0: import-local "^2.0.0" jest-cli "^24.9.0" -js-cookie@^2.2.0: +js-cookie@^2.2.0, js-cookie@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-2.2.1.tgz#69e106dc5d5806894562902aa5baec3744e9b2b8" integrity sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ== @@ -12248,11 +11893,6 @@ just-curry-it@^3.1.0: resolved "https://registry.yarnpkg.com/just-curry-it/-/just-curry-it-3.1.0.tgz#ab59daed308a58b847ada166edd0a2d40766fbc5" integrity sha512-mjzgSOFzlrurlURaHVjnQodyPNvrHrf1TbQP2XU9NSqBtHQPuHZ+Eb6TAJP7ASeJN9h9K0KXoRTs8u6ouHBKvg== -just-debounce@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/just-debounce/-/just-debounce-1.0.0.tgz#87fccfaeffc0b68cd19d55f6722943f929ea35ea" - integrity sha1-h/zPrv/AtozRnVX2cilD+SnqNeo= - keccak@^1.0.2: version "1.4.0" resolved "https://registry.yarnpkg.com/keccak/-/keccak-1.4.0.tgz#572f8a6dbee8e7b3aa421550f9e6408ca2186f80" @@ -12314,7 +11954,7 @@ kind-of@^4.0.0: dependencies: is-buffer "^1.1.5" -kind-of@^5.0.0, kind-of@^5.0.2: +kind-of@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== @@ -12344,14 +11984,6 @@ last-call-webpack-plugin@^3.0.0: lodash "^4.17.5" webpack-sources "^1.1.0" -last-run@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/last-run/-/last-run-1.1.1.tgz#45b96942c17b1c79c772198259ba943bebf8ca5b" - integrity sha1-RblpQsF7HHnHchmCWbqUO+v4yls= - dependencies: - default-resolution "^2.0.0" - es6-weak-map "^2.0.1" - lazy-cache@^0.2.3: version "0.2.7" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" @@ -12399,13 +12031,6 @@ lcid@^2.0.0: dependencies: invert-kv "^2.0.0" -lead@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lead/-/lead-1.0.0.tgz#6f14f99a37be3a9dd784f5495690e5903466ee42" - integrity sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI= - dependencies: - flush-write-stream "^1.0.2" - left-pad@^1.1.3, left-pad@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" @@ -12553,20 +12178,6 @@ levn@^0.3.0, levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -liftoff@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-3.1.0.tgz#c9ba6081f908670607ee79062d700df062c52ed3" - integrity sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog== - dependencies: - extend "^3.0.0" - findup-sync "^3.0.0" - fined "^1.0.1" - flagged-respawn "^1.0.0" - is-plain-object "^2.0.4" - object.map "^1.0.0" - rechoir "^0.6.2" - resolve "^1.1.7" - linked-list@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/linked-list/-/linked-list-0.1.0.tgz#798b0ff97d1b92a4fd08480f55aea4e9d49d37bf" @@ -12898,13 +12509,6 @@ make-error@^1.3.4: resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g== -make-iterator@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" - integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw== - dependencies: - kind-of "^6.0.2" - make-plural@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-4.3.0.tgz#f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735" @@ -12931,7 +12535,7 @@ map-age-cleaner@^0.1.1: dependencies: p-defer "^1.0.0" -map-cache@^0.2.0, map-cache@^0.2.2: +map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= @@ -12971,16 +12575,6 @@ marked@0.3.19: resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" integrity sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg== -matchdep@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/matchdep/-/matchdep-2.0.0.tgz#c6f34834a0d8dbc3b37c27ee8bbcb27c7775582e" - integrity sha1-xvNINKDY28OzfCfui7yyfHd1WC4= - dependencies: - findup-sync "^2.0.0" - micromatch "^3.0.4" - resolve "^1.4.0" - stack-trace "0.0.10" - material-colors@^1.2.1: version "1.2.6" resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.6.tgz#6d1958871126992ceecc72f4bcc4d8f010865f46" @@ -13457,11 +13051,6 @@ multicast-dns@^6.0.1: dns-packet "^1.3.1" thunky "^1.0.2" -mute-stdout@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mute-stdout/-/mute-stdout-1.0.1.tgz#acb0300eb4de23a7ddeec014e3e96044b3472331" - integrity sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg== - mute-stream@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" @@ -13738,13 +13327,6 @@ normalize-url@^4.1.0: prop-types "^15.7.2" react-is "^16.9.0" -now-and-later@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/now-and-later/-/now-and-later-2.0.1.tgz#8e579c8685764a7cc02cb680380e94f43ccb1f7c" - integrity sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ== - dependencies: - once "^1.3.2" - npm-bundled@^1.0.1: version "1.0.6" resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" @@ -13882,7 +13464,7 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" -object.assign@^4.0.4, object.assign@^4.1.0: +object.assign@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== @@ -13892,16 +13474,6 @@ object.assign@^4.0.4, object.assign@^4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" -object.defaults@^1.0.0, object.defaults@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" - integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8= - dependencies: - array-each "^1.0.1" - array-slice "^1.0.0" - for-own "^1.0.0" - isobject "^3.0.0" - object.entries@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" @@ -13930,14 +13502,6 @@ object.getownpropertydescriptors@^2.0.3: define-properties "^1.1.2" es-abstract "^1.5.1" -object.map@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" - integrity sha1-z4Plncj8wK1fQlDh94s7gb2AHTc= - dependencies: - for-own "^1.0.0" - make-iterator "^1.0.0" - object.omit@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" @@ -13946,21 +13510,13 @@ object.omit@^2.0.0: for-own "^0.1.4" is-extendable "^0.1.1" -object.pick@^1.2.0, object.pick@^1.3.0: +object.pick@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= dependencies: isobject "^3.0.1" -object.reduce@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object.reduce/-/object.reduce-1.0.1.tgz#6fe348f2ac7fa0f95ca621226599096825bb03ad" - integrity sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60= - dependencies: - for-own "^1.0.0" - make-iterator "^1.0.0" - object.values@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" @@ -14005,7 +13561,7 @@ on-headers@~1.0.2: resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== -once@^1.3.0, once@^1.3.1, once@^1.3.2, once@^1.4.0: +once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= @@ -14098,13 +13654,6 @@ ordered-read-streams@^0.3.0: is-stream "^1.0.1" readable-stream "^2.0.1" -ordered-read-streams@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz#77c0cb37c41525d64166d990ffad7ec6a0e1363e" - integrity sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4= - dependencies: - readable-stream "^2.0.1" - original-require@1.0.1, original-require@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/original-require/-/original-require-1.0.1.tgz#0f130471584cd33511c5ec38c8d59213f9ac5e20" @@ -14323,15 +13872,6 @@ parse-entities@^1.1.2: is-decimal "^1.0.0" is-hexadecimal "^1.0.0" -parse-filepath@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" - integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= - dependencies: - is-absolute "^1.0.0" - map-cache "^0.2.0" - path-root "^0.1.1" - parse-glob@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" @@ -14365,11 +13905,6 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" -parse-node-version@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" - integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== - parse-passwd@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" @@ -14449,18 +13984,6 @@ path-parse@^1.0.6: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== -path-root-regex@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" - integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= - -path-root@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" - integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= - dependencies: - path-root-regex "^0.1.0" - path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" @@ -15145,7 +14668,7 @@ pretty-format@^24.0.0, pretty-format@^24.3.0, pretty-format@^24.9.0: ansi-styles "^3.2.0" react-is "^16.8.4" -pretty-hrtime@^1.0.0, pretty-hrtime@^1.0.3: +pretty-hrtime@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= @@ -15162,16 +14685,16 @@ private@^0.1.6, private@^0.1.8, private@~0.1.5: resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== -process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" @@ -15348,7 +14871,7 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -pumpify@^1.3.3, pumpify@^1.3.5: +pumpify@^1.3.3: version "1.5.1" resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== @@ -16340,24 +15863,7 @@ remotedev-serialize@^0.1.8: dependencies: jsan "^3.1.13" -remove-bom-buffer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz#c2bf1e377520d324f623892e33c10cac2c252b53" - integrity sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ== - dependencies: - is-buffer "^1.1.5" - is-utf8 "^0.2.1" - -remove-bom-stream@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz#05f1a593f16e42e1fb90ebf59de8e569525f9523" - integrity sha1-BfGlk/FuQuH7kOv1nejlaVJflSM= - dependencies: - remove-bom-buffer "^3.0.0" - safe-buffer "^5.1.0" - through2 "^2.0.3" - -remove-trailing-separator@^1.0.1, remove-trailing-separator@^1.1.0: +remove-trailing-separator@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= @@ -16395,20 +15901,6 @@ replace-ext@0.0.1: resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" integrity sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ= -replace-ext@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" - integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs= - -replace-homedir@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/replace-homedir/-/replace-homedir-1.0.0.tgz#e87f6d513b928dde808260c12be7fec6ff6e798c" - integrity sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw= - dependencies: - homedir-polyfill "^1.0.1" - is-absolute "^1.0.0" - remove-trailing-separator "^1.1.0" - request-promise-core@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" @@ -16542,13 +16034,6 @@ resolve-from@^5.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== -resolve-options@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/resolve-options/-/resolve-options-1.1.0.tgz#32bb9e39c06d67338dc9378c0d6d6074566ad131" - integrity sha1-MrueOcBtZzONyTeMDW1gdFZq0TE= - dependencies: - value-or-function "^3.0.0" - resolve-pathname@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" @@ -16571,13 +16056,6 @@ resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.3. dependencies: path-parse "^1.0.6" -resolve@^1.1.7, resolve@^1.4.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.13.1.tgz#be0aa4c06acd53083505abb35f4d66932ab35d16" - integrity sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w== - dependencies: - path-parse "^1.0.6" - resolve@~1.11.1: version "1.11.1" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" @@ -16943,13 +16421,6 @@ semaphore@>=1.0.1, semaphore@^1.0.3, semaphore@^1.1.0: resolved "https://registry.yarnpkg.com/semaphore/-/semaphore-1.1.0.tgz#aaad8b86b20fe8e9b32b16dc2ee682a8cd26a8aa" integrity sha512-O4OZEaNtkMd/K0i6js9SL+gqy0ZCBMgUvlSqHKi4IBdjhe7wB8pwztUk1BbZ1fmrvpwFrPbHzqd2w5pTcJH6LA== -semver-greatest-satisfied-range@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz#13e8c2658ab9691cb0cd71093240280d36f77a5b" - integrity sha1-E+jCZYq5aRywzXEJMkAoDTb3els= - dependencies: - sver-compat "^1.5.0" - "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" @@ -17371,11 +16842,6 @@ space-separated-tokens@^1.0.0: resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.4.tgz#27910835ae00d0adfcdbd0ad7e611fb9544351fa" integrity sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA== -sparkles@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.1.tgz#008db65edce6c50eec0c5e228e1945061dd0437c" - integrity sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw== - spawn-args@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/spawn-args/-/spawn-args-0.1.0.tgz#3e0232a0571b387907f8b3f544aa531c6224848c" @@ -17518,11 +16984,6 @@ stable@^0.1.8: resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== -stack-trace@0.0.10: - version "0.0.10" - resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" - integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= - stack-utils@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" @@ -17590,11 +17051,6 @@ stream-each@^1.1.0: end-of-stream "^1.1.0" stream-shift "^1.0.0" -stream-exhaust@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/stream-exhaust/-/stream-exhaust-1.0.2.tgz#acdac8da59ef2bc1e17a2c0ccf6c320d120e555d" - integrity sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw== - stream-http@^2.7.2: version "2.8.3" resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" @@ -17632,7 +17088,7 @@ string-length@^2.0.0: astral-regex "^1.0.0" strip-ansi "^4.0.0" -string-width@^1.0.1, string-width@^1.0.2: +string-width@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= @@ -17913,14 +17369,6 @@ supports-color@^5.3.0, supports-color@^5.5.0: dependencies: has-flag "^3.0.0" -sver-compat@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/sver-compat/-/sver-compat-1.5.0.tgz#3cf87dfeb4d07b4a3f14827bc186b3fd0c645cd8" - integrity sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg= - dependencies: - es6-iterator "^2.0.1" - es6-symbol "^3.1.1" - svg-parser@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.2.tgz#d134cc396fa2681dc64f518330784e98bd801ec8" @@ -18189,11 +17637,6 @@ tildify@1.2.0: dependencies: os-homedir "^1.0.0" -time-stamp@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" - integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= - timed-out@^4.0.0, timed-out@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" @@ -18257,14 +17700,6 @@ to-absolute-glob@^0.1.1: dependencies: extend-shallow "^2.0.1" -to-absolute-glob@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1865f43d9e74b0822db9f145b78cff7d0f7c849b" - integrity sha1-GGX0PZ50sIItufFFt4z/fQ98hJs= - dependencies: - is-absolute "^1.0.0" - is-negated-glob "^1.0.0" - to-arraybuffer@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" @@ -18334,13 +17769,6 @@ to-space-case@^1.0.0: dependencies: to-no-case "^1.0.0" -to-through@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-through/-/to-through-2.0.0.tgz#fc92adaba072647bc0b67d6b03664aa195093af6" - integrity sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY= - dependencies: - through2 "^2.0.3" - toggle-selection@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" @@ -18912,36 +18340,11 @@ unbzip2-stream@^1.0.9: buffer "^5.2.1" through "^2.3.8" -unc-path-regex@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" - integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= - underscore@1.9.1, underscore@^1.8.3: version "1.9.1" resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961" integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg== -undertaker-registry@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/undertaker-registry/-/undertaker-registry-1.0.1.tgz#5e4bda308e4a8a2ae584f9b9a4359a499825cc50" - integrity sha1-XkvaMI5KiirlhPm5pDWaSZglzFA= - -undertaker@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/undertaker/-/undertaker-1.2.1.tgz#701662ff8ce358715324dfd492a4f036055dfe4b" - integrity sha512-71WxIzDkgYk9ZS+spIB8iZXchFhAdEo2YU8xYqBYJ39DIUIqziK78ftm26eecoIY49X0J2MLhG4hr18Yp6/CMA== - dependencies: - arr-flatten "^1.0.1" - arr-map "^2.0.0" - bach "^1.0.0" - collection-map "^1.0.0" - es6-weak-map "^2.0.1" - last-run "^1.1.0" - object.defaults "^1.0.0" - object.reduce "^1.0.0" - undertaker-registry "^1.0.0" - unfetch@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.1.0.tgz#6ec2dd0de887e58a4dee83a050ded80ffc4137db" @@ -19232,13 +18635,6 @@ v8-compile-cache@2.0.3: resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== -v8flags@^3.0.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.1.3.tgz#fc9dc23521ca20c5433f81cc4eb9b3033bb105d8" - integrity sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w== - dependencies: - homedir-polyfill "^1.0.1" - vali-date@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" @@ -19257,11 +18653,6 @@ value-equal@^1.0.1: resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== -value-or-function@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/value-or-function/-/value-or-function-3.0.0.tgz#1c243a50b595c1be54a754bfece8563b9ff8d813" - integrity sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM= - vary@^1, vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" @@ -19309,42 +18700,6 @@ vinyl-fs@2.4.3: vali-date "^1.0.0" vinyl "^1.0.0" -vinyl-fs@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7" - integrity sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng== - dependencies: - fs-mkdirp-stream "^1.0.0" - glob-stream "^6.1.0" - graceful-fs "^4.0.0" - is-valid-glob "^1.0.0" - lazystream "^1.0.0" - lead "^1.0.0" - object.assign "^4.0.4" - pumpify "^1.3.5" - readable-stream "^2.3.3" - remove-bom-buffer "^3.0.0" - remove-bom-stream "^1.2.0" - resolve-options "^1.1.0" - through2 "^2.0.0" - to-through "^2.0.0" - value-or-function "^3.0.0" - vinyl "^2.0.0" - vinyl-sourcemap "^1.1.0" - -vinyl-sourcemap@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz#92a800593a38703a8cdb11d8b300ad4be63b3e16" - integrity sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY= - dependencies: - append-buffer "^1.0.2" - convert-source-map "^1.5.0" - graceful-fs "^4.1.6" - normalize-path "^2.1.1" - now-and-later "^2.0.0" - remove-bom-buffer "^3.0.0" - vinyl "^2.0.0" - vinyl@1.X, vinyl@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" @@ -19354,18 +18709,6 @@ vinyl@1.X, vinyl@^1.0.0: clone-stats "^0.0.1" replace-ext "0.0.1" -vinyl@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86" - integrity sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg== - dependencies: - clone "^2.1.1" - clone-buffer "^1.0.0" - clone-stats "^1.0.0" - cloneable-readable "^1.0.0" - remove-trailing-separator "^1.0.1" - replace-ext "^1.0.0" - vm-browserify@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" @@ -20543,11 +19886,6 @@ whatwg-url@^7.0.0: tr46 "^1.0.1" webidl-conversions "^4.0.2" -which-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" - integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= - which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" @@ -20817,13 +20155,6 @@ yargs-parser@^2.4.0: camelcase "^3.0.0" lodash.assign "^4.0.6" -yargs-parser@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" - integrity sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= - dependencies: - camelcase "^3.0.0" - yargs-parser@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" @@ -20900,25 +20231,6 @@ yargs@^13.2.0, yargs@^13.2.4, yargs@^13.3.0: y18n "^4.0.0" yargs-parser "^13.1.1" -yargs@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" - integrity sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= - dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - y18n "^3.2.1" - yargs-parser "^5.0.0" - yargs@^8.0.2: version "8.0.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" From 1fa3c04d950cf4fc4c38a888cbbcbb6bed05f185 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Mon, 2 Dec 2019 10:47:44 -0300 Subject: [PATCH 016/116] (fix) added correct polished library and import, updated flow-typed --- package.json | 1 + src/theme/mui.js | 1 + yarn.lock | 734 ++--------------------------------------------- 3 files changed, 25 insertions(+), 711 deletions(-) diff --git a/package.json b/package.json index 76b79ec6..0eeb281d 100644 --- a/package.json +++ b/package.json @@ -52,6 +52,7 @@ "material-ui-search-bar": "^1.0.0-beta.13", "notistack": "https://github.com/gnosis/notistack.git#v0.9.4", "optimize-css-assets-webpack-plugin": "5.0.3", + "polished": "^3.4.2", "qrcode.react": "1.0.0", "react": "16.12.0", "react-dom": "16.12.0", diff --git a/src/theme/mui.js b/src/theme/mui.js index 54b23539..1ab43df6 100644 --- a/src/theme/mui.js +++ b/src/theme/mui.js @@ -1,5 +1,6 @@ // @flow import { createMuiTheme } from '@material-ui/core/styles' +import { rgba } from 'polished' import { boldFont, bolderFont, diff --git a/yarn.lock b/yarn.lock index d1b5036d..d3ff3a91 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3936,13 +3936,6 @@ ansi-align@^3.0.0: dependencies: string-width "^3.0.0" -ansi-colors@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" - integrity sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA== - dependencies: - ansi-wrap "^0.1.0" - ansi-colors@^3.0.0: version "3.2.4" resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" @@ -3960,13 +3953,6 @@ ansi-escapes@^4.2.1: dependencies: type-fest "^0.5.2" -ansi-gray@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" - integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= - dependencies: - ansi-wrap "0.1.0" - ansi-html@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e" @@ -4011,11 +3997,6 @@ ansi-to-html@^0.6.11: dependencies: entities "^1.1.2" -ansi-wrap@0.1.0, ansi-wrap@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" - integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= - any-promise@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" @@ -4039,23 +4020,11 @@ app-root-dir@^1.0.2: resolved "https://registry.yarnpkg.com/app-root-dir/-/app-root-dir-1.0.2.tgz#38187ec2dea7577fff033ffcb12172692ff6e118" integrity sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg= -append-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/append-buffer/-/append-buffer-1.0.2.tgz#d8220cf466081525efea50614f3de6514dfa58f1" - integrity sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE= - dependencies: - buffer-equal "^1.0.0" - aproba@^1.0.3, aproba@^1.1.1: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== -archy@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" - integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= - are-we-there-yet@~1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" @@ -4091,35 +4060,16 @@ arr-diff@^4.0.0: resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= -arr-filter@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/arr-filter/-/arr-filter-1.1.2.tgz#43fdddd091e8ef11aa4c45d9cdc18e2dff1711ee" - integrity sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4= - dependencies: - make-iterator "^1.0.0" - arr-flatten@^1.0.1, arr-flatten@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== -arr-map@^2.0.0, arr-map@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/arr-map/-/arr-map-2.0.2.tgz#3a77345ffc1cf35e2a91825601f9e58f2e24cac4" - integrity sha1-Onc0X/wc814qkYJWAfnljy4kysQ= - dependencies: - make-iterator "^1.0.0" - arr-union@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= -array-each@^1.0.0, array-each@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" - integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8= - array-equal@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" @@ -4143,35 +4093,6 @@ array-includes@^3.0.3: define-properties "^1.1.2" es-abstract "^1.7.0" -array-initial@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/array-initial/-/array-initial-1.1.0.tgz#2fa74b26739371c3947bd7a7adc73be334b3d795" - integrity sha1-L6dLJnOTccOUe9enrcc74zSz15U= - dependencies: - array-slice "^1.0.0" - is-number "^4.0.0" - -array-last@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/array-last/-/array-last-1.3.0.tgz#7aa77073fec565ddab2493f5f88185f404a9d336" - integrity sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg== - dependencies: - is-number "^4.0.0" - -array-slice@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" - integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== - -array-sort@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-sort/-/array-sort-1.0.0.tgz#e4c05356453f56f53512a7d1d6123f2c54c0a88a" - integrity sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg== - dependencies: - default-compare "^1.0.0" - get-value "^2.0.6" - kind-of "^5.0.2" - array-union@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" @@ -4291,16 +4212,6 @@ astral-regex@^1.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== -async-done@^1.2.0, async-done@^1.2.2: - version "1.3.2" - resolved "https://registry.yarnpkg.com/async-done/-/async-done-1.3.2.tgz#5e15aa729962a4b07414f528a88cdf18e0b290a2" - integrity sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.2" - process-nextick-args "^2.0.0" - stream-exhaust "^1.0.1" - async-each@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" @@ -4318,13 +4229,6 @@ async-limiter@^1.0.0, async-limiter@~1.0.0: resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== -async-settle@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/async-settle/-/async-settle-1.0.0.tgz#1d0a914bb02575bec8a8f3a74e5080f72b2c0c6b" - integrity sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs= - dependencies: - async-done "^1.2.2" - async@2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610" @@ -5324,21 +5228,6 @@ babylon@6.18.0, babylon@^6.18.0: resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== -bach@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/bach/-/bach-1.2.0.tgz#4b3ce96bf27134f79a1b414a51c14e34c3bd9880" - integrity sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA= - dependencies: - arr-filter "^1.1.1" - arr-flatten "^1.0.1" - arr-map "^2.0.0" - array-each "^1.0.0" - array-initial "^1.0.0" - array-last "^1.1.1" - async-done "^1.2.2" - async-settle "^1.0.0" - now-and-later "^2.0.0" - backoff@^2.5.0: version "2.5.0" resolved "https://registry.yarnpkg.com/backoff/-/backoff-2.5.0.tgz#f616eda9d3e4b66b8ca7fca79f695722c5f8e26f" @@ -5790,11 +5679,6 @@ buffer-crc32@~0.2.3: resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= -buffer-equal@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/buffer-equal/-/buffer-equal-1.0.0.tgz#59616b498304d556abd466966b22eeda3eca5fbe" - integrity sha1-WWFrSYME1Var1GaWayLu2j7KX74= - buffer-fill@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" @@ -6136,7 +6020,7 @@ cheerio@1.0.0-rc.2: lodash "^4.15.0" parse5 "^3.0.1" -chokidar@^2.0.0, chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.8: +chokidar@^2.0.2, chokidar@^2.0.4, chokidar@^2.1.8: version "2.1.8" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== @@ -6277,11 +6161,6 @@ cliui@^5.0.0: strip-ansi "^5.2.0" wrap-ansi "^5.1.0" -clone-buffer@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/clone-buffer/-/clone-buffer-1.0.0.tgz#e3e25b207ac4e701af721e2cb5a16792cac3dc58" - integrity sha1-4+JbIHrE5wGvch4staFnksrD3Fg= - clone-deep@^0.2.4: version "0.2.4" resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-0.2.4.tgz#4e73dd09e9fb971cc38670c5dced9c1896481cc6" @@ -6305,11 +6184,6 @@ clone-stats@^0.0.1: resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" integrity sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE= -clone-stats@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-1.0.0.tgz#b3782dff8bb5474e18b9b6bf0fdfe782f8777680" - integrity sha1-s3gt/4u1R04Yuba/D9/ngvh3doA= - clone@2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" @@ -6325,15 +6199,6 @@ clone@^1.0.0, clone@^1.0.2: resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= -cloneable-readable@^1.0.0: - version "1.1.3" - resolved "https://registry.yarnpkg.com/cloneable-readable/-/cloneable-readable-1.1.3.tgz#120a00cb053bfb63a222e709f9683ea2e11d8cec" - integrity sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ== - dependencies: - inherits "^2.0.1" - process-nextick-args "^2.0.0" - readable-stream "^2.3.5" - clsx@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/clsx/-/clsx-1.0.4.tgz#0c0171f6d5cb2fe83848463c15fcc26b4df8c2ec" @@ -6366,15 +6231,6 @@ coinstring@^2.0.0: bs58 "^2.0.1" create-hash "^1.1.1" -collection-map@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/collection-map/-/collection-map-1.0.0.tgz#aea0f06f8d26c780c2b75494385544b2255af18c" - integrity sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw= - dependencies: - arr-map "^2.0.2" - for-own "^1.0.0" - make-iterator "^1.0.0" - collection-visit@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" @@ -6418,11 +6274,6 @@ color-string@^1.5.2: color-name "^1.0.0" simple-swizzle "^0.2.2" -color-support@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - color@^3.0.0: version "3.1.2" resolved "https://registry.yarnpkg.com/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10" @@ -6539,7 +6390,7 @@ concat-stream@1.5.1: readable-stream "~2.0.0" typedarray "~0.0.5" -concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.5.1, concat-stream@^1.6.0: +concat-stream@^1.4.7, concat-stream@^1.5.0, concat-stream@^1.5.1: version "1.6.2" resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== @@ -6656,14 +6507,6 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= -copy-props@^2.0.1: - version "2.0.4" - resolved "https://registry.yarnpkg.com/copy-props/-/copy-props-2.0.4.tgz#93bb1cadfafd31da5bb8a9d4b41f471ec3a72dfe" - integrity sha512-7cjuUME+p+S3HZlbllgsn2CDwS+5eCCX16qBgNC4jgSTf49qR1VKy/Zhl400m0IQXl/bPGEVqncgUUMjrr4s8A== - dependencies: - each-props "^1.3.0" - is-plain-object "^2.0.1" - copy-to-clipboard@^3.0.8: version "3.2.0" resolved "https://registry.yarnpkg.com/copy-to-clipboard/-/copy-to-clipboard-3.2.0.tgz#d2724a3ccbfed89706fac8a894872c979ac74467" @@ -7274,13 +7117,6 @@ deep-object-diff@^1.1.0: resolved "https://registry.yarnpkg.com/deep-object-diff/-/deep-object-diff-1.1.0.tgz#d6fabf476c2ed1751fc94d5ca693d2ed8c18bc5a" integrity sha512-b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw== -default-compare@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/default-compare/-/default-compare-1.0.0.tgz#cb61131844ad84d84788fb68fd01681ca7781a2f" - integrity sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ== - dependencies: - kind-of "^5.0.2" - default-gateway@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-4.2.0.tgz#167104c7500c2115f6dd69b0a536bb8ed720552b" @@ -7289,11 +7125,6 @@ default-gateway@^4.2.0: execa "^1.0.0" ip-regex "^2.1.0" -default-resolution@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/default-resolution/-/default-resolution-2.0.0.tgz#bcb82baa72ad79b426a76732f1a81ad6df26d684" - integrity sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ= - defaults@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" @@ -7698,14 +7529,6 @@ duplexify@^3.2.0, duplexify@^3.4.2, duplexify@^3.6.0: readable-stream "^2.0.0" stream-shift "^1.0.0" -each-props@^1.3.0: - version "1.3.2" - resolved "https://registry.yarnpkg.com/each-props/-/each-props-1.3.2.tgz#ea45a414d16dd5cfa419b1a81720d5ca06892333" - integrity sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA== - dependencies: - is-plain-object "^2.0.1" - object.defaults "^1.1.0" - easy-stack@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/easy-stack/-/easy-stack-1.0.0.tgz#12c91b3085a37f0baa336e9486eac4bf94e3e788" @@ -7904,21 +7727,12 @@ es5-ext@^0.10.35, es5-ext@^0.10.50: es6-symbol "~3.1.2" next-tick "~1.0.0" -es5-ext@^0.10.46: - version "0.10.53" - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" - integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== - dependencies: - es6-iterator "~2.0.3" - es6-symbol "~3.1.3" - next-tick "~1.0.0" - es5-shim@^4.5.13: version "4.5.13" resolved "https://registry.yarnpkg.com/es5-shim/-/es5-shim-4.5.13.tgz#5d88062de049f8969f83783f4a4884395f21d28b" integrity sha512-xi6hh6gsvDE0MaW4Vp1lgNEBpVcCXRWfPXj5egDvtgLz4L9MEvNwYEMdJH+JJinWkwa8c3c3o5HduV7dB/e1Hw== -es6-iterator@^2.0.1, es6-iterator@^2.0.3, es6-iterator@~2.0.3: +es6-iterator@~2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= @@ -7932,7 +7746,7 @@ es6-shim@^0.35.5: resolved "https://registry.yarnpkg.com/es6-shim/-/es6-shim-0.35.5.tgz#46f59dc0a84a1c5029e8ff1166ca0a902077a9ab" integrity sha512-E9kK/bjtCQRpN1K28Xh4BlmP8egvZBGJJ+9GtnzOwt7mdqtrjHFuVGr7QJfdjBIKqrlU5duPf3pCBoDrkjVYFg== -es6-symbol@^3.1.1, es6-symbol@~3.1.2, es6-symbol@~3.1.3: +es6-symbol@^3.1.1, es6-symbol@~3.1.2: version "3.1.3" resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== @@ -7948,16 +7762,6 @@ es6-templates@^0.2.3: recast "~0.11.12" through "~2.3.6" -es6-weak-map@^2.0.1: - version "2.0.3" - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" - integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== - dependencies: - d "1" - es5-ext "^0.10.46" - es6-iterator "^2.0.3" - es6-symbol "^3.1.1" - escape-html@1.0.3, escape-html@^1.0.3, escape-html@~1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" @@ -9044,16 +8848,6 @@ fake-merkle-patricia-tree@^1.0.1: dependencies: checkpoint-store "^1.1.0" -fancy-log@^1.3.2: - version "1.3.3" - resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" - integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== - dependencies: - ansi-gray "^0.1.1" - color-support "^1.1.3" - parse-node-version "^1.0.0" - time-stamp "^1.0.0" - fast-deep-equal@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" @@ -9326,7 +9120,7 @@ find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" -findup-sync@3.0.0, findup-sync@^3.0.0: +findup-sync@3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== @@ -9336,37 +9130,11 @@ findup-sync@3.0.0, findup-sync@^3.0.0: micromatch "^3.0.4" resolve-dir "^1.0.1" -findup-sync@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" - integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw= - dependencies: - detect-file "^1.0.0" - is-glob "^3.1.0" - micromatch "^3.0.4" - resolve-dir "^1.0.1" - -fined@^1.0.1: - version "1.2.0" - resolved "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz#d00beccf1aa2b475d16d423b0238b713a2c4a37b" - integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng== - dependencies: - expand-tilde "^2.0.2" - is-plain-object "^2.0.3" - object.defaults "^1.1.0" - object.pick "^1.2.0" - parse-filepath "^1.0.1" - first-chunk-stream@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" integrity sha1-Wb+1DNkF9g18OUzT2ayqtOatk04= -flagged-respawn@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41" - integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q== - flat-cache@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" @@ -9391,7 +9159,7 @@ flow-stoplight@^1.0.0: resolved "https://registry.yarnpkg.com/flow-stoplight/-/flow-stoplight-1.0.0.tgz#4a292c5bcff8b39fa6cc0cb1a853d86f27eeff7b" integrity sha1-SiksW8/4s5+mzAyxqFPYbyfu/3s= -flush-write-stream@^1.0.0, flush-write-stream@^1.0.2: +flush-write-stream@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== @@ -9442,13 +9210,6 @@ for-own@^0.1.3, for-own@^0.1.4: dependencies: for-in "^1.0.1" -for-own@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" - integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= - dependencies: - for-in "^1.0.1" - foreach@^2.0.4: version "2.0.5" resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" @@ -9598,14 +9359,6 @@ fs-minipass@^1.2.5: dependencies: minipass "^2.6.0" -fs-mkdirp-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz#0b7815fc3201c6a69e14db98ce098c16935259eb" - integrity sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes= - dependencies: - graceful-fs "^4.1.11" - through2 "^2.0.3" - fs-readdir-recursive@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" @@ -9870,39 +9623,11 @@ glob-stream@^5.3.2: to-absolute-glob "^0.1.1" unique-stream "^2.0.2" -glob-stream@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-6.1.0.tgz#7045c99413b3eb94888d83ab46d0b404cc7bdde4" - integrity sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ= - dependencies: - extend "^3.0.0" - glob "^7.1.1" - glob-parent "^3.1.0" - is-negated-glob "^1.0.0" - ordered-read-streams "^1.0.0" - pumpify "^1.3.5" - readable-stream "^2.1.5" - remove-trailing-separator "^1.0.1" - to-absolute-glob "^2.0.0" - unique-stream "^2.0.2" - glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= -glob-watcher@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-5.0.3.tgz#88a8abf1c4d131eb93928994bc4a593c2e5dd626" - integrity sha512-8tWsULNEPHKQ2MR4zXuzSmqbdyV5PtwwCaWSGQ1WwHsJ07ilNeN1JB8ntxhckbnpSHaf9dXFUHzIWvm1I13dsg== - dependencies: - anymatch "^2.0.0" - async-done "^1.2.0" - chokidar "^2.0.0" - is-negated-glob "^1.0.0" - just-debounce "^1.0.0" - object.defaults "^1.1.0" - glob@7.1.2: version "7.1.2" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" @@ -10045,13 +9770,6 @@ globby@^6.1.0: pify "^2.0.0" pinkie-promise "^2.0.0" -glogg@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.2.tgz#2d7dd702beda22eb3bffadf880696da6d846313f" - integrity sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA== - dependencies: - sparkles "^1.0.0" - good-listener@^1.2.2: version "1.2.2" resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" @@ -10121,30 +9839,6 @@ gud@^1.0.0: resolved "https://registry.yarnpkg.com/gud/-/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0" integrity sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw== -gulp-cli@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/gulp-cli/-/gulp-cli-2.2.0.tgz#5533126eeb7fe415a7e3e84a297d334d5cf70ebc" - integrity sha512-rGs3bVYHdyJpLqR0TUBnlcZ1O5O++Zs4bA0ajm+zr3WFCfiSLjGwoCBqFs18wzN+ZxahT9DkOK5nDf26iDsWjA== - dependencies: - ansi-colors "^1.0.1" - archy "^1.0.0" - array-sort "^1.0.0" - color-support "^1.1.3" - concat-stream "^1.6.0" - copy-props "^2.0.1" - fancy-log "^1.3.2" - gulplog "^1.0.0" - interpret "^1.1.0" - isobject "^3.0.1" - liftoff "^3.1.0" - matchdep "^2.0.0" - mute-stdout "^1.0.0" - pretty-hrtime "^1.0.0" - replace-homedir "^1.0.0" - semver-greatest-satisfied-range "^1.1.0" - v8flags "^3.0.1" - yargs "^7.1.0" - gulp-sourcemaps@^1.5.2: version "1.12.1" resolved "https://registry.yarnpkg.com/gulp-sourcemaps/-/gulp-sourcemaps-1.12.1.tgz#b437d1f3d980cf26e81184823718ce15ae6597b6" @@ -10162,23 +9856,6 @@ gulp-sourcemaps@^1.5.2: through2 "2.X" vinyl "1.X" -gulp@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/gulp/-/gulp-4.0.2.tgz#543651070fd0f6ab0a0650c6a3e6ff5a7cb09caa" - integrity sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA== - dependencies: - glob-watcher "^5.0.3" - gulp-cli "^2.2.0" - undertaker "^1.2.1" - vinyl-fs "^3.0.0" - -gulplog@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" - integrity sha1-4oxNRdBey77YGDY86PnFkmIp/+U= - dependencies: - glogg "^1.0.0" - gzip-size@5.1.1, gzip-size@^5.0.0: version "5.1.1" resolved "https://registry.yarnpkg.com/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274" @@ -10902,7 +10579,7 @@ internal-ip@^4.3.0: default-gateway "^4.2.0" ipaddr.js "^1.9.0" -interpret@1.2.0, interpret@^1.0.0, interpret@^1.1.0, interpret@^1.2.0: +interpret@1.2.0, interpret@^1.0.0, interpret@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== @@ -10961,14 +10638,6 @@ is-absolute-url@^3.0.3: resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-3.0.3.tgz#96c6a22b6a23929b11ea0afb1836c36ad4a5d698" integrity sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q== -is-absolute@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" - integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== - dependencies: - is-relative "^1.0.0" - is-windows "^1.0.1" - is-accessor-descriptor@^0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" @@ -11221,11 +10890,6 @@ is-natural-number@^4.0.1: resolved "https://registry.yarnpkg.com/is-natural-number/-/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8" integrity sha1-q5124dtM7VHjXeDHLr7PCfc0zeg= -is-negated-glob@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-negated-glob/-/is-negated-glob-1.0.0.tgz#6910bca5da8c95e784b5751b976cf5a10fee36d2" - integrity sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI= - is-number@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" @@ -11334,13 +10998,6 @@ is-regex@^1.0.4: dependencies: has "^1.0.1" -is-relative@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" - integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== - dependencies: - is-unc-path "^1.0.0" - is-resolvable@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" @@ -11380,14 +11037,7 @@ is-typedarray@^1.0.0, is-typedarray@~1.0.0: resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= -is-unc-path@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" - integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== - dependencies: - unc-path-regex "^0.1.2" - -is-utf8@^0.2.0, is-utf8@^0.2.1: +is-utf8@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= @@ -11397,11 +11047,6 @@ is-valid-glob@^0.3.0: resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-0.3.0.tgz#d4b55c69f51886f9b65c70d6c2622d37e29f48fe" integrity sha1-1LVcafUYhvm2XHDWwmItN+KfSP4= -is-valid-glob@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-valid-glob/-/is-valid-glob-1.0.0.tgz#29bf3eff701be2d4d315dbacc39bc39fe8f601aa" - integrity sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao= - is-window@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-window/-/is-window-1.0.2.tgz#2c896ca53db97de45d3c33133a65d8c9f563480d" @@ -12248,11 +11893,6 @@ just-curry-it@^3.1.0: resolved "https://registry.yarnpkg.com/just-curry-it/-/just-curry-it-3.1.0.tgz#ab59daed308a58b847ada166edd0a2d40766fbc5" integrity sha512-mjzgSOFzlrurlURaHVjnQodyPNvrHrf1TbQP2XU9NSqBtHQPuHZ+Eb6TAJP7ASeJN9h9K0KXoRTs8u6ouHBKvg== -just-debounce@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/just-debounce/-/just-debounce-1.0.0.tgz#87fccfaeffc0b68cd19d55f6722943f929ea35ea" - integrity sha1-h/zPrv/AtozRnVX2cilD+SnqNeo= - keccak@^1.0.2: version "1.4.0" resolved "https://registry.yarnpkg.com/keccak/-/keccak-1.4.0.tgz#572f8a6dbee8e7b3aa421550f9e6408ca2186f80" @@ -12314,7 +11954,7 @@ kind-of@^4.0.0: dependencies: is-buffer "^1.1.5" -kind-of@^5.0.0, kind-of@^5.0.2: +kind-of@^5.0.0: version "5.1.0" resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== @@ -12344,14 +11984,6 @@ last-call-webpack-plugin@^3.0.0: lodash "^4.17.5" webpack-sources "^1.1.0" -last-run@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/last-run/-/last-run-1.1.1.tgz#45b96942c17b1c79c772198259ba943bebf8ca5b" - integrity sha1-RblpQsF7HHnHchmCWbqUO+v4yls= - dependencies: - default-resolution "^2.0.0" - es6-weak-map "^2.0.1" - lazy-cache@^0.2.3: version "0.2.7" resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-0.2.7.tgz#7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65" @@ -12399,13 +12031,6 @@ lcid@^2.0.0: dependencies: invert-kv "^2.0.0" -lead@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/lead/-/lead-1.0.0.tgz#6f14f99a37be3a9dd784f5495690e5903466ee42" - integrity sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI= - dependencies: - flush-write-stream "^1.0.2" - left-pad@^1.1.3, left-pad@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" @@ -12553,20 +12178,6 @@ levn@^0.3.0, levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -liftoff@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-3.1.0.tgz#c9ba6081f908670607ee79062d700df062c52ed3" - integrity sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog== - dependencies: - extend "^3.0.0" - findup-sync "^3.0.0" - fined "^1.0.1" - flagged-respawn "^1.0.0" - is-plain-object "^2.0.4" - object.map "^1.0.0" - rechoir "^0.6.2" - resolve "^1.1.7" - linked-list@0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/linked-list/-/linked-list-0.1.0.tgz#798b0ff97d1b92a4fd08480f55aea4e9d49d37bf" @@ -12898,13 +12509,6 @@ make-error@^1.3.4: resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.5.tgz#efe4e81f6db28cadd605c70f29c831b58ef776c8" integrity sha512-c3sIjNUow0+8swNwVpqoH4YCShKNFkMaw6oH1mNS2haDZQqkeZFlHS3dhoeEbKKmJB4vXpJucU6oH75aDYeE9g== -make-iterator@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" - integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw== - dependencies: - kind-of "^6.0.2" - make-plural@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-4.3.0.tgz#f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735" @@ -12931,7 +12535,7 @@ map-age-cleaner@^0.1.1: dependencies: p-defer "^1.0.0" -map-cache@^0.2.0, map-cache@^0.2.2: +map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= @@ -12971,16 +12575,6 @@ marked@0.3.19: resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.19.tgz#5d47f709c4c9fc3c216b6d46127280f40b39d790" integrity sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg== -matchdep@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/matchdep/-/matchdep-2.0.0.tgz#c6f34834a0d8dbc3b37c27ee8bbcb27c7775582e" - integrity sha1-xvNINKDY28OzfCfui7yyfHd1WC4= - dependencies: - findup-sync "^2.0.0" - micromatch "^3.0.4" - resolve "^1.4.0" - stack-trace "0.0.10" - material-colors@^1.2.1: version "1.2.6" resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.6.tgz#6d1958871126992ceecc72f4bcc4d8f010865f46" @@ -13457,11 +13051,6 @@ multicast-dns@^6.0.1: dns-packet "^1.3.1" thunky "^1.0.2" -mute-stdout@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mute-stdout/-/mute-stdout-1.0.1.tgz#acb0300eb4de23a7ddeec014e3e96044b3472331" - integrity sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg== - mute-stream@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" @@ -13738,13 +13327,6 @@ normalize-url@^4.1.0: prop-types "^15.7.2" react-is "^16.9.0" -now-and-later@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/now-and-later/-/now-and-later-2.0.1.tgz#8e579c8685764a7cc02cb680380e94f43ccb1f7c" - integrity sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ== - dependencies: - once "^1.3.2" - npm-bundled@^1.0.1: version "1.0.6" resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" @@ -13882,7 +13464,7 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" -object.assign@^4.0.4, object.assign@^4.1.0: +object.assign@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== @@ -13892,16 +13474,6 @@ object.assign@^4.0.4, object.assign@^4.1.0: has-symbols "^1.0.0" object-keys "^1.0.11" -object.defaults@^1.0.0, object.defaults@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" - integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8= - dependencies: - array-each "^1.0.1" - array-slice "^1.0.0" - for-own "^1.0.0" - isobject "^3.0.0" - object.entries@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" @@ -13930,14 +13502,6 @@ object.getownpropertydescriptors@^2.0.3: define-properties "^1.1.2" es-abstract "^1.5.1" -object.map@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" - integrity sha1-z4Plncj8wK1fQlDh94s7gb2AHTc= - dependencies: - for-own "^1.0.0" - make-iterator "^1.0.0" - object.omit@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" @@ -13946,21 +13510,13 @@ object.omit@^2.0.0: for-own "^0.1.4" is-extendable "^0.1.1" -object.pick@^1.2.0, object.pick@^1.3.0: +object.pick@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= dependencies: isobject "^3.0.1" -object.reduce@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object.reduce/-/object.reduce-1.0.1.tgz#6fe348f2ac7fa0f95ca621226599096825bb03ad" - integrity sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60= - dependencies: - for-own "^1.0.0" - make-iterator "^1.0.0" - object.values@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" @@ -14005,7 +13561,7 @@ on-headers@~1.0.2: resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== -once@^1.3.0, once@^1.3.1, once@^1.3.2, once@^1.4.0: +once@^1.3.0, once@^1.3.1, once@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= @@ -14098,13 +13654,6 @@ ordered-read-streams@^0.3.0: is-stream "^1.0.1" readable-stream "^2.0.1" -ordered-read-streams@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz#77c0cb37c41525d64166d990ffad7ec6a0e1363e" - integrity sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4= - dependencies: - readable-stream "^2.0.1" - original-require@1.0.1, original-require@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/original-require/-/original-require-1.0.1.tgz#0f130471584cd33511c5ec38c8d59213f9ac5e20" @@ -14323,15 +13872,6 @@ parse-entities@^1.1.2: is-decimal "^1.0.0" is-hexadecimal "^1.0.0" -parse-filepath@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" - integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= - dependencies: - is-absolute "^1.0.0" - map-cache "^0.2.0" - path-root "^0.1.1" - parse-glob@^3.0.4: version "3.0.4" resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" @@ -14365,11 +13905,6 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" -parse-node-version@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" - integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== - parse-passwd@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" @@ -14449,18 +13984,6 @@ path-parse@^1.0.6: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== -path-root-regex@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" - integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= - -path-root@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" - integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= - dependencies: - path-root-regex "^0.1.0" - path-to-regexp@0.1.7: version "0.1.7" resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" @@ -14618,7 +14141,7 @@ pocket-js-core@0.0.3: dependencies: axios "^0.18.0" -polished@^3.3.1: +polished@^3.3.1, polished@^3.4.2: version "3.4.2" resolved "https://registry.yarnpkg.com/polished/-/polished-3.4.2.tgz#b4780dad81d64df55615fbfc77acb52fd17d88cd" integrity sha512-9Rch6iMZckABr6EFCLPZsxodeBpXMo9H4fRlfR/9VjMEyy5xpo1/WgXlJGgSjPyVhEZNycbW7UmYMNyWS5MI0g== @@ -15145,7 +14668,7 @@ pretty-format@^24.0.0, pretty-format@^24.3.0, pretty-format@^24.9.0: ansi-styles "^3.2.0" react-is "^16.8.4" -pretty-hrtime@^1.0.0, pretty-hrtime@^1.0.3: +pretty-hrtime@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= @@ -15162,16 +14685,16 @@ private@^0.1.6, private@^0.1.8, private@~0.1.5: resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== -process-nextick-args@^2.0.0, process-nextick-args@~2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" - integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== - process-nextick-args@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + process@^0.11.10: version "0.11.10" resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" @@ -15348,7 +14871,7 @@ pump@^3.0.0: end-of-stream "^1.1.0" once "^1.3.1" -pumpify@^1.3.3, pumpify@^1.3.5: +pumpify@^1.3.3: version "1.5.1" resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== @@ -16340,24 +15863,7 @@ remotedev-serialize@^0.1.8: dependencies: jsan "^3.1.13" -remove-bom-buffer@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz#c2bf1e377520d324f623892e33c10cac2c252b53" - integrity sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ== - dependencies: - is-buffer "^1.1.5" - is-utf8 "^0.2.1" - -remove-bom-stream@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz#05f1a593f16e42e1fb90ebf59de8e569525f9523" - integrity sha1-BfGlk/FuQuH7kOv1nejlaVJflSM= - dependencies: - remove-bom-buffer "^3.0.0" - safe-buffer "^5.1.0" - through2 "^2.0.3" - -remove-trailing-separator@^1.0.1, remove-trailing-separator@^1.1.0: +remove-trailing-separator@^1.0.1: version "1.1.0" resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= @@ -16395,20 +15901,6 @@ replace-ext@0.0.1: resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" integrity sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ= -replace-ext@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" - integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs= - -replace-homedir@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/replace-homedir/-/replace-homedir-1.0.0.tgz#e87f6d513b928dde808260c12be7fec6ff6e798c" - integrity sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw= - dependencies: - homedir-polyfill "^1.0.1" - is-absolute "^1.0.0" - remove-trailing-separator "^1.1.0" - request-promise-core@1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.3.tgz#e9a3c081b51380dfea677336061fea879a829ee9" @@ -16542,13 +16034,6 @@ resolve-from@^5.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== -resolve-options@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/resolve-options/-/resolve-options-1.1.0.tgz#32bb9e39c06d67338dc9378c0d6d6074566ad131" - integrity sha1-MrueOcBtZzONyTeMDW1gdFZq0TE= - dependencies: - value-or-function "^3.0.0" - resolve-pathname@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/resolve-pathname/-/resolve-pathname-3.0.0.tgz#99d02224d3cf263689becbb393bc560313025dcd" @@ -16571,13 +16056,6 @@ resolve@^1.1.6, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.3. dependencies: path-parse "^1.0.6" -resolve@^1.1.7, resolve@^1.4.0: - version "1.13.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.13.1.tgz#be0aa4c06acd53083505abb35f4d66932ab35d16" - integrity sha512-CxqObCX8K8YtAhOBRg+lrcdn+LK+WYOS8tSjqSFbjtrI5PnS63QPhZl4+yKfrU9tdsbMu9Anr/amegT87M9Z6w== - dependencies: - path-parse "^1.0.6" - resolve@~1.11.1: version "1.11.1" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e" @@ -16943,13 +16421,6 @@ semaphore@>=1.0.1, semaphore@^1.0.3, semaphore@^1.1.0: resolved "https://registry.yarnpkg.com/semaphore/-/semaphore-1.1.0.tgz#aaad8b86b20fe8e9b32b16dc2ee682a8cd26a8aa" integrity sha512-O4OZEaNtkMd/K0i6js9SL+gqy0ZCBMgUvlSqHKi4IBdjhe7wB8pwztUk1BbZ1fmrvpwFrPbHzqd2w5pTcJH6LA== -semver-greatest-satisfied-range@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz#13e8c2658ab9691cb0cd71093240280d36f77a5b" - integrity sha1-E+jCZYq5aRywzXEJMkAoDTb3els= - dependencies: - sver-compat "^1.5.0" - "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: version "5.7.1" resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" @@ -17371,11 +16842,6 @@ space-separated-tokens@^1.0.0: resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.4.tgz#27910835ae00d0adfcdbd0ad7e611fb9544351fa" integrity sha512-UyhMSmeIqZrQn2UdjYpxEkwY9JUrn8pP+7L4f91zRzOQuI8MF1FGLfYU9DKCYeLdo7LXMxwrX5zKFy7eeeVHuA== -sparkles@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.1.tgz#008db65edce6c50eec0c5e228e1945061dd0437c" - integrity sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw== - spawn-args@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/spawn-args/-/spawn-args-0.1.0.tgz#3e0232a0571b387907f8b3f544aa531c6224848c" @@ -17518,11 +16984,6 @@ stable@^0.1.8: resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== -stack-trace@0.0.10: - version "0.0.10" - resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" - integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= - stack-utils@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-1.0.2.tgz#33eba3897788558bebfc2db059dc158ec36cebb8" @@ -17590,11 +17051,6 @@ stream-each@^1.1.0: end-of-stream "^1.1.0" stream-shift "^1.0.0" -stream-exhaust@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/stream-exhaust/-/stream-exhaust-1.0.2.tgz#acdac8da59ef2bc1e17a2c0ccf6c320d120e555d" - integrity sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw== - stream-http@^2.7.2: version "2.8.3" resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" @@ -17632,7 +17088,7 @@ string-length@^2.0.0: astral-regex "^1.0.0" strip-ansi "^4.0.0" -string-width@^1.0.1, string-width@^1.0.2: +string-width@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= @@ -17913,14 +17369,6 @@ supports-color@^5.3.0, supports-color@^5.5.0: dependencies: has-flag "^3.0.0" -sver-compat@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/sver-compat/-/sver-compat-1.5.0.tgz#3cf87dfeb4d07b4a3f14827bc186b3fd0c645cd8" - integrity sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg= - dependencies: - es6-iterator "^2.0.1" - es6-symbol "^3.1.1" - svg-parser@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.2.tgz#d134cc396fa2681dc64f518330784e98bd801ec8" @@ -18189,11 +17637,6 @@ tildify@1.2.0: dependencies: os-homedir "^1.0.0" -time-stamp@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" - integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= - timed-out@^4.0.0, timed-out@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" @@ -18257,14 +17700,6 @@ to-absolute-glob@^0.1.1: dependencies: extend-shallow "^2.0.1" -to-absolute-glob@^2.0.0: - version "2.0.2" - resolved "https://registry.yarnpkg.com/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz#1865f43d9e74b0822db9f145b78cff7d0f7c849b" - integrity sha1-GGX0PZ50sIItufFFt4z/fQ98hJs= - dependencies: - is-absolute "^1.0.0" - is-negated-glob "^1.0.0" - to-arraybuffer@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" @@ -18334,13 +17769,6 @@ to-space-case@^1.0.0: dependencies: to-no-case "^1.0.0" -to-through@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/to-through/-/to-through-2.0.0.tgz#fc92adaba072647bc0b67d6b03664aa195093af6" - integrity sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY= - dependencies: - through2 "^2.0.3" - toggle-selection@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/toggle-selection/-/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32" @@ -18912,36 +18340,11 @@ unbzip2-stream@^1.0.9: buffer "^5.2.1" through "^2.3.8" -unc-path-regex@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" - integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= - underscore@1.9.1, underscore@^1.8.3: version "1.9.1" resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961" integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg== -undertaker-registry@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/undertaker-registry/-/undertaker-registry-1.0.1.tgz#5e4bda308e4a8a2ae584f9b9a4359a499825cc50" - integrity sha1-XkvaMI5KiirlhPm5pDWaSZglzFA= - -undertaker@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/undertaker/-/undertaker-1.2.1.tgz#701662ff8ce358715324dfd492a4f036055dfe4b" - integrity sha512-71WxIzDkgYk9ZS+spIB8iZXchFhAdEo2YU8xYqBYJ39DIUIqziK78ftm26eecoIY49X0J2MLhG4hr18Yp6/CMA== - dependencies: - arr-flatten "^1.0.1" - arr-map "^2.0.0" - bach "^1.0.0" - collection-map "^1.0.0" - es6-weak-map "^2.0.1" - last-run "^1.1.0" - object.defaults "^1.0.0" - object.reduce "^1.0.0" - undertaker-registry "^1.0.0" - unfetch@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/unfetch/-/unfetch-4.1.0.tgz#6ec2dd0de887e58a4dee83a050ded80ffc4137db" @@ -19232,13 +18635,6 @@ v8-compile-cache@2.0.3: resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== -v8flags@^3.0.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-3.1.3.tgz#fc9dc23521ca20c5433f81cc4eb9b3033bb105d8" - integrity sha512-amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w== - dependencies: - homedir-polyfill "^1.0.1" - vali-date@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" @@ -19257,11 +18653,6 @@ value-equal@^1.0.1: resolved "https://registry.yarnpkg.com/value-equal/-/value-equal-1.0.1.tgz#1e0b794c734c5c0cade179c437d356d931a34d6c" integrity sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw== -value-or-function@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/value-or-function/-/value-or-function-3.0.0.tgz#1c243a50b595c1be54a754bfece8563b9ff8d813" - integrity sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM= - vary@^1, vary@~1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" @@ -19309,42 +18700,6 @@ vinyl-fs@2.4.3: vali-date "^1.0.0" vinyl "^1.0.0" -vinyl-fs@^3.0.0: - version "3.0.3" - resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-3.0.3.tgz#c85849405f67428feabbbd5c5dbdd64f47d31bc7" - integrity sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng== - dependencies: - fs-mkdirp-stream "^1.0.0" - glob-stream "^6.1.0" - graceful-fs "^4.0.0" - is-valid-glob "^1.0.0" - lazystream "^1.0.0" - lead "^1.0.0" - object.assign "^4.0.4" - pumpify "^1.3.5" - readable-stream "^2.3.3" - remove-bom-buffer "^3.0.0" - remove-bom-stream "^1.2.0" - resolve-options "^1.1.0" - through2 "^2.0.0" - to-through "^2.0.0" - value-or-function "^3.0.0" - vinyl "^2.0.0" - vinyl-sourcemap "^1.1.0" - -vinyl-sourcemap@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz#92a800593a38703a8cdb11d8b300ad4be63b3e16" - integrity sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY= - dependencies: - append-buffer "^1.0.2" - convert-source-map "^1.5.0" - graceful-fs "^4.1.6" - normalize-path "^2.1.1" - now-and-later "^2.0.0" - remove-bom-buffer "^3.0.0" - vinyl "^2.0.0" - vinyl@1.X, vinyl@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-1.2.0.tgz#5c88036cf565e5df05558bfc911f8656df218884" @@ -19354,18 +18709,6 @@ vinyl@1.X, vinyl@^1.0.0: clone-stats "^0.0.1" replace-ext "0.0.1" -vinyl@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-2.2.0.tgz#d85b07da96e458d25b2ffe19fece9f2caa13ed86" - integrity sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg== - dependencies: - clone "^2.1.1" - clone-buffer "^1.0.0" - clone-stats "^1.0.0" - cloneable-readable "^1.0.0" - remove-trailing-separator "^1.0.1" - replace-ext "^1.0.0" - vm-browserify@^1.0.1: version "1.1.2" resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" @@ -20543,11 +19886,6 @@ whatwg-url@^7.0.0: tr46 "^1.0.1" webidl-conversions "^4.0.2" -which-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" - integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= - which-module@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" @@ -20817,13 +20155,6 @@ yargs-parser@^2.4.0: camelcase "^3.0.0" lodash.assign "^4.0.6" -yargs-parser@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-5.0.0.tgz#275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a" - integrity sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo= - dependencies: - camelcase "^3.0.0" - yargs-parser@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" @@ -20900,25 +20231,6 @@ yargs@^13.2.0, yargs@^13.2.4, yargs@^13.3.0: y18n "^4.0.0" yargs-parser "^13.1.1" -yargs@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-7.1.0.tgz#6ba318eb16961727f5d284f8ea003e8d6154d0c8" - integrity sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg= - dependencies: - camelcase "^3.0.0" - cliui "^3.2.0" - decamelize "^1.1.1" - get-caller-file "^1.0.1" - os-locale "^1.4.0" - read-pkg-up "^1.0.1" - require-directory "^2.1.1" - require-main-filename "^1.0.1" - set-blocking "^2.0.0" - string-width "^1.0.2" - which-module "^1.0.0" - y18n "^3.2.1" - yargs-parser "^5.0.0" - yargs@^8.0.2: version "8.0.2" resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" From 4cf4ea33697d570efdfd8bcd6329c3991d62b144 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Mon, 2 Dec 2019 10:58:59 -0300 Subject: [PATCH 017/116] (update) removed polish flow type, added js-cookie flow type --- flow-typed/npm/js-cookie_v2.x.x.js | 30 +++++++++++++++++++ flow-typed/npm/polish_vx.x.x.js | 46 ------------------------------ 2 files changed, 30 insertions(+), 46 deletions(-) create mode 100644 flow-typed/npm/js-cookie_v2.x.x.js delete mode 100644 flow-typed/npm/polish_vx.x.x.js diff --git a/flow-typed/npm/js-cookie_v2.x.x.js b/flow-typed/npm/js-cookie_v2.x.x.js new file mode 100644 index 00000000..b854ffa4 --- /dev/null +++ b/flow-typed/npm/js-cookie_v2.x.x.js @@ -0,0 +1,30 @@ +// flow-typed signature: a23fa96dc9c75f8931650efff45badee +// flow-typed version: c6154227d1/js-cookie_v2.x.x/flow_>=v0.104.x + +declare module 'js-cookie' { + declare type CookieOptions = { + expires?: number | Date, + path?: string, + domain?: string, + secure?: boolean, + ... + } + declare type ConverterFunc = (value: string, name: string) => string; + declare type ConverterObj = { + read: ConverterFunc, + write: ConverterFunc, + ... + }; + declare class Cookie { + defaults: CookieOptions; + set(name: string, value: mixed, options?: CookieOptions): void; + get(...args: Array): { [key: string]: string, ... }; + get(name: string, ...args: Array): string | void; + remove(name: string, options?: CookieOptions): void; + getJSON(name: string): Object; + withConverter(converter: ConverterFunc | ConverterObj): this; + noConflict(): this; + } + + declare module.exports: Cookie; +} diff --git a/flow-typed/npm/polish_vx.x.x.js b/flow-typed/npm/polish_vx.x.x.js deleted file mode 100644 index ad8a27ed..00000000 --- a/flow-typed/npm/polish_vx.x.x.js +++ /dev/null @@ -1,46 +0,0 @@ -// flow-typed signature: e215c06fb9ec51e72b3ed908312ee496 -// flow-typed version: <>/polish_v^0.2.3/flow_v0.112.0 - -/** - * This is an autogenerated libdef stub for: - * - * 'polish' - * - * Fill this stub out by replacing all the `any` types. - * - * Once filled out, we encourage you to share your work with the - * community by sending a pull request to: - * https://github.com/flowtype/flow-typed - */ - -declare module 'polish' { - declare module.exports: any; -} - -/** - * We include stubs for each file inside this npm package in case you need to - * require those files directly. Feel free to delete any files that aren't - * needed. - */ -declare module 'polish/polish' { - declare module.exports: any; -} - -declare module 'polish/polish.min' { - declare module.exports: any; -} - -declare module 'polish/polish.spec' { - declare module.exports: any; -} - -// Filename aliases -declare module 'polish/polish.js' { - declare module.exports: $Exports<'polish/polish'>; -} -declare module 'polish/polish.min.js' { - declare module.exports: $Exports<'polish/polish.min'>; -} -declare module 'polish/polish.spec.js' { - declare module.exports: $Exports<'polish/polish.spec'>; -} From 4a6fc32d951f1e82e0020c09a8dd0338de58945f Mon Sep 17 00:00:00 2001 From: Mikhail Mikheev Date: Tue, 3 Dec 2019 15:31:31 +0400 Subject: [PATCH 018/116] Add link to cookie policy, use generic links for legal docs --- src/components/Sidebar/LegalLinks.jsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/components/Sidebar/LegalLinks.jsx b/src/components/Sidebar/LegalLinks.jsx index a3c79b5c..751fe7c5 100644 --- a/src/components/Sidebar/LegalLinks.jsx +++ b/src/components/Sidebar/LegalLinks.jsx @@ -18,16 +18,19 @@ const LegalLinks = () => { const classes = useStyles() return ( - + Terms - + + Cookies + + Privacy - + Licenses - + Imprint From dd3743e67f99c08ff479a6fdff163eb6acfed226 Mon Sep 17 00:00:00 2001 From: Mikhail Mikheev Date: Tue, 3 Dec 2019 15:56:07 +0400 Subject: [PATCH 019/116] Remove link to cookie policy from sidebar, link cookie policy in the banner --- src/components/CookiesBanner/index.jsx | 5 ++--- src/components/Sidebar/LegalLinks.jsx | 3 --- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index 5be3d9fe..f3c3c129 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -6,7 +6,6 @@ import IconButton from '@material-ui/core/IconButton' import React, { useEffect, useState } from 'react' import { makeStyles } from '@material-ui/core/styles' import Link from '~/components/layout/Link' -import { WELCOME_ADDRESS } from '~/routes/routes' import Button from '~/components/layout/Button' import { primary, mainFontFamily } from '~/theme/variables' import type { CookiesProps } from '~/logic/cookies/model/cookie' @@ -76,7 +75,7 @@ const CookiesBanner = () => { useEffect(() => { async function fetchCookiesFromStorage() { - const cookiesState: CookiesProps = await loadFromCookie(COOKIES_KEY) + const cookiesState: ?CookiesProps = await loadFromCookie(COOKIES_KEY) if (cookiesState) { const { acceptedNecessary, acceptedAnalytics } = cookiesState setLocalAnalytics(acceptedAnalytics) @@ -116,7 +115,7 @@ const CookiesBanner = () => {

We use cookies to give you the best experience and to help improve our website. Please read our {' '} - Cookie Policy + Cookie Policy {' '} for more information. By clicking "Accept all", you agree to the storing of cookies on your device to enhance site navigation, analyze site usage and provide customer support. diff --git a/src/components/Sidebar/LegalLinks.jsx b/src/components/Sidebar/LegalLinks.jsx index 751fe7c5..0b0ed30f 100644 --- a/src/components/Sidebar/LegalLinks.jsx +++ b/src/components/Sidebar/LegalLinks.jsx @@ -21,9 +21,6 @@ const LegalLinks = () => { Terms - - Cookies - Privacy From d2a7ff94cb701fd9108a154e534f82a555f214d0 Mon Sep 17 00:00:00 2001 From: apane Date: Tue, 3 Dec 2019 14:14:33 -0300 Subject: [PATCH 020/116] Let the user re-open the cookie banner --- src/components/CookiesBanner/index.jsx | 20 +++++++++------- src/components/Sidebar/LegalLinks.jsx | 11 +++++++++ src/logic/cookies/model/cookie.js | 1 + .../cookies/store/actions/openCookieBanner.js | 6 +++++ src/logic/cookies/store/reducer/cookies.js | 24 +++++++++++++++++++ src/logic/cookies/store/selectors/index.js | 5 ++++ src/store/index.js | 2 ++ 7 files changed, 61 insertions(+), 8 deletions(-) create mode 100644 src/logic/cookies/store/actions/openCookieBanner.js create mode 100644 src/logic/cookies/store/reducer/cookies.js create mode 100644 src/logic/cookies/store/selectors/index.js diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index f3c3c129..f8da614b 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -5,12 +5,15 @@ import FormControlLabel from '@material-ui/core/FormControlLabel' import IconButton from '@material-ui/core/IconButton' import React, { useEffect, useState } from 'react' import { makeStyles } from '@material-ui/core/styles' +import { useDispatch, useSelector } from 'react-redux' import Link from '~/components/layout/Link' import Button from '~/components/layout/Button' import { primary, mainFontFamily } from '~/theme/variables' import type { CookiesProps } from '~/logic/cookies/model/cookie' import { COOKIES_KEY } from '~/logic/cookies/model/cookie' import { loadFromCookie, saveCookie } from '~/utils/cookies' +import { cookieBannerOpen } from '~/logic/cookies/store/selectors' +import { openCookieBanner } from '~/logic/cookies/store/actions/openCookieBanner' const useStyles = makeStyles({ container: { @@ -68,10 +71,10 @@ const useStyles = makeStyles({ const CookiesBanner = () => { const classes = useStyles() - - const [showBanner, setShowBanner] = useState(false) + const dispatch = useDispatch() const [localNecessary, setLocalNecessary] = useState(true) const [localAnalytics, setLocalAnalytics] = useState(false) + const showBanner = useSelector(cookieBannerOpen) useEffect(() => { async function fetchCookiesFromStorage() { @@ -80,13 +83,14 @@ const CookiesBanner = () => { const { acceptedNecessary, acceptedAnalytics } = cookiesState setLocalAnalytics(acceptedAnalytics) setLocalNecessary(acceptedNecessary) - setShowBanner(acceptedNecessary === false) + const openBanner = acceptedNecessary === false || showBanner + dispatch(openCookieBanner(openBanner)) } else { - setShowBanner(true) + dispatch(openCookieBanner(true)) } } fetchCookiesFromStorage() - }, []) + }, [showBanner]) const acceptCookiesHandler = async () => { const newState = { @@ -94,7 +98,7 @@ const CookiesBanner = () => { acceptedAnalytics: true, } await saveCookie(COOKIES_KEY, newState, 365) - setShowBanner(false) + dispatch(openCookieBanner(false)) } const closeCookiesBannerHandler = async () => { @@ -104,7 +108,7 @@ const CookiesBanner = () => { } const expDays = localAnalytics ? 365 : 7 await saveCookie(COOKIES_KEY, newState, expDays) - setShowBanner(false) + dispatch(openCookieBanner(false)) } @@ -141,7 +145,7 @@ const CookiesBanner = () => { onChange={() => setLocalAnalytics((prev) => !prev)} value={localAnalytics} control={( - + )} />

diff --git a/src/components/Sidebar/LegalLinks.jsx b/src/components/Sidebar/LegalLinks.jsx index 0b0ed30f..e9bbe7e9 100644 --- a/src/components/Sidebar/LegalLinks.jsx +++ b/src/components/Sidebar/LegalLinks.jsx @@ -1,9 +1,12 @@ // @flow import React from 'react' import { makeStyles } from '@material-ui/core/styles' +import { useDispatch } from 'react-redux' import Block from '~/components/layout/Block' import Link from '~/components/layout/Link' import { sm, primary } from '~/theme/variables' +import { openCookieBanner } from '~/logic/cookies/store/actions/openCookieBanner' +import GnoButtonLink from '~/components/layout/ButtonLink' const useStyles = makeStyles({ container: { @@ -12,10 +15,15 @@ const useStyles = makeStyles({ link: { color: primary, }, + buttonLink: { + textDecoration: 'none', + color: primary, + }, }) const LegalLinks = () => { const classes = useStyles() + const dispatch = useDispatch() return ( @@ -30,6 +38,9 @@ const LegalLinks = () => { Imprint + dispatch(openCookieBanner(true))}> + Cookies + ) } diff --git a/src/logic/cookies/model/cookie.js b/src/logic/cookies/model/cookie.js index 23007489..3d8b144a 100644 --- a/src/logic/cookies/model/cookie.js +++ b/src/logic/cookies/model/cookie.js @@ -6,6 +6,7 @@ export const COOKIES_KEY = 'COOKIES' export type CookiesProps = { acceptedNecessary: boolean, acceptedAnalytics: boolean, + cookieBannerOpen: boolean, } export type Cookie = RecordOf diff --git a/src/logic/cookies/store/actions/openCookieBanner.js b/src/logic/cookies/store/actions/openCookieBanner.js new file mode 100644 index 00000000..2e158c42 --- /dev/null +++ b/src/logic/cookies/store/actions/openCookieBanner.js @@ -0,0 +1,6 @@ +// @flow +import { createAction } from 'redux-actions' + +export const OPEN_COOKIE_BANNER = 'OPEN_COOKIE_BANNER' + +export const openCookieBanner = createAction(OPEN_COOKIE_BANNER, (cookieBannerOpen: boolean) => ({ cookieBannerOpen })) diff --git a/src/logic/cookies/store/reducer/cookies.js b/src/logic/cookies/store/reducer/cookies.js new file mode 100644 index 00000000..3e2155c8 --- /dev/null +++ b/src/logic/cookies/store/reducer/cookies.js @@ -0,0 +1,24 @@ +// @flow +import { Map } from 'immutable' +import { handleActions, type ActionType } from 'redux-actions' +import type { Cookie } from '~/logic/cookies/model/cookie' +import { OPEN_COOKIE_BANNER } from '~/logic/cookies/store/actions/openCookieBanner' + +export const COOKIES_REDUCER_ID = 'cookies' + +export type State = Map> + +export default handleActions( + { + [OPEN_COOKIE_BANNER]: (state: State, action: ActionType): State => { + const { cookieBannerOpen } = action.payload + + const newState = state.withMutations((map) => { + map.set('cookieBannerOpen', cookieBannerOpen) + }) + + return newState + }, + }, + Map(), +) diff --git a/src/logic/cookies/store/selectors/index.js b/src/logic/cookies/store/selectors/index.js new file mode 100644 index 00000000..277053b8 --- /dev/null +++ b/src/logic/cookies/store/selectors/index.js @@ -0,0 +1,5 @@ +// @flow +import type { Provider } from '~/logic/wallets/store/model/provider' +import { COOKIES_REDUCER_ID } from '~/logic/cookies/store/reducer/cookies' + +export const cookieBannerOpen = (state: any): Provider => state[COOKIES_REDUCER_ID].get('cookieBannerOpen') diff --git a/src/store/index.js b/src/store/index.js index deeff088..f59be684 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -18,6 +18,7 @@ import notifications, { NOTIFICATIONS_REDUCER_ID, type NotificationReducerState as NotificationsState, } from '~/logic/notifications/store/reducer/notifications' +import cookies, { COOKIES_REDUCER_ID } from '~/logic/cookies/store/reducer/cookies' export const history = createBrowserHistory() @@ -45,6 +46,7 @@ const reducers: Reducer = combineReducers({ [TOKEN_REDUCER_ID]: tokens, [TRANSACTIONS_REDUCER_ID]: transactions, [NOTIFICATIONS_REDUCER_ID]: notifications, + [COOKIES_REDUCER_ID]: cookies, }) export const store: Store = createStore(reducers, finalCreateStore) From 639b2b0a23eec7e7f101d57cb0573c999ae982a7 Mon Sep 17 00:00:00 2001 From: Mikhail Mikheev Date: Wed, 4 Dec 2019 15:40:13 +0400 Subject: [PATCH 021/116] remove withMutations from cookies reducer, move utils/cookies to logic/cookies --- src/components/CookiesBanner/index.jsx | 2 +- src/logic/cookies/store/reducer/cookies.js | 6 +----- src/{utils/cookies => logic/cookies/utils}/index.js | 0 3 files changed, 2 insertions(+), 6 deletions(-) rename src/{utils/cookies => logic/cookies/utils}/index.js (100%) diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index f8da614b..1f088b94 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -11,7 +11,7 @@ import Button from '~/components/layout/Button' import { primary, mainFontFamily } from '~/theme/variables' import type { CookiesProps } from '~/logic/cookies/model/cookie' import { COOKIES_KEY } from '~/logic/cookies/model/cookie' -import { loadFromCookie, saveCookie } from '~/utils/cookies' +import { loadFromCookie, saveCookie } from '~/logic/cookies/utils' import { cookieBannerOpen } from '~/logic/cookies/store/selectors' import { openCookieBanner } from '~/logic/cookies/store/actions/openCookieBanner' diff --git a/src/logic/cookies/store/reducer/cookies.js b/src/logic/cookies/store/reducer/cookies.js index 3e2155c8..d3ad6f38 100644 --- a/src/logic/cookies/store/reducer/cookies.js +++ b/src/logic/cookies/store/reducer/cookies.js @@ -13,11 +13,7 @@ export default handleActions( [OPEN_COOKIE_BANNER]: (state: State, action: ActionType): State => { const { cookieBannerOpen } = action.payload - const newState = state.withMutations((map) => { - map.set('cookieBannerOpen', cookieBannerOpen) - }) - - return newState + return state.set('cookieBannerOpen', cookieBannerOpen) }, }, Map(), diff --git a/src/utils/cookies/index.js b/src/logic/cookies/utils/index.js similarity index 100% rename from src/utils/cookies/index.js rename to src/logic/cookies/utils/index.js From 2e1acb5758dbc7aca311d3f6bc3508eebc34d7f6 Mon Sep 17 00:00:00 2001 From: apane Date: Wed, 4 Dec 2019 09:19:07 -0300 Subject: [PATCH 022/116] Now the sidebar closes when the cookie banner is toggled --- src/components/Sidebar/LegalLinks.jsx | 14 ++++++++++++-- src/components/Sidebar/index.jsx | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/components/Sidebar/LegalLinks.jsx b/src/components/Sidebar/LegalLinks.jsx index e9bbe7e9..6f9a1a1a 100644 --- a/src/components/Sidebar/LegalLinks.jsx +++ b/src/components/Sidebar/LegalLinks.jsx @@ -21,9 +21,19 @@ const useStyles = makeStyles({ }, }) -const LegalLinks = () => { +type Props = { + toggleSidebar: Function, +} + +const LegalLinks = (props: Props) => { const classes = useStyles() const dispatch = useDispatch() + + const openCookiesHandler = () => { + dispatch(openCookieBanner(true)) + props.toggleSidebar() + } + return ( @@ -38,7 +48,7 @@ const LegalLinks = () => { Imprint - dispatch(openCookieBanner(true))}> + Cookies diff --git a/src/components/Sidebar/index.jsx b/src/components/Sidebar/index.jsx index 1c08bd4f..0ecfe17d 100644 --- a/src/components/Sidebar/index.jsx +++ b/src/components/Sidebar/index.jsx @@ -131,7 +131,7 @@ const Sidebar = ({ setDefaultSafe={setDefaultSafeAction} defaultSafe={defaultSafe} /> - + {children} From 434e12edd1de991562f660d2f2171bd5266b6c71 Mon Sep 17 00:00:00 2001 From: Agustin Pane Date: Wed, 4 Dec 2019 10:19:13 -0300 Subject: [PATCH 023/116] Feature #169: Intercom (#301) * Implements intercom Adds REACT_APP_INTERCOM_ID_MAINNET and REACT_APP_INTERCOM_ID_RINKEBY env vars * Adds .env.example * Adds intercom env vars * Updates env vars Replaces "rinkeby" and "mainnet" with "non-production" and "production" * Now loads intercom after the user accepted the analytics * Add env variable for production intercom id * Update .env.example * Removes react-intercom Fixs getIntercomId with default dev appID Now loads intercom as script * Renegerate flow-types --- .env.example | 11 +++++++++++ src/components/CookiesBanner/index.jsx | 23 +++++++++++++++++------ src/config/index.js | 2 ++ src/utils/intercom.js | 25 +++++++++++++++++++++++++ yarn.lock | 14 ++++++++++++++ 5 files changed, 69 insertions(+), 6 deletions(-) create mode 100644 .env.example create mode 100644 src/utils/intercom.js diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..07de1d01 --- /dev/null +++ b/.env.example @@ -0,0 +1,11 @@ +# You can leave this empty for rinkeby or use "mainnet" +REACT_APP_NETWORK= + +# For Rinkeby network +REACT_APP_GOOGLE_ANALYTICS_ID_RINKEBY= + +# For Mainnet network (no needed on dev mode) +REACT_APP_GOOGLE_ANALYTICS_ID_MAINNET= + +# For production environments +REACT_APP_INTERCOM_ID= diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index 1f088b94..74441bfe 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -14,6 +14,7 @@ import { COOKIES_KEY } from '~/logic/cookies/model/cookie' import { loadFromCookie, saveCookie } from '~/logic/cookies/utils' import { cookieBannerOpen } from '~/logic/cookies/store/selectors' import { openCookieBanner } from '~/logic/cookies/store/actions/openCookieBanner' +import { loadIntercom } from '~/utils/intercom' const useStyles = makeStyles({ container: { @@ -72,6 +73,8 @@ const useStyles = makeStyles({ const CookiesBanner = () => { const classes = useStyles() const dispatch = useDispatch() + + const [showAnalytics, setShowAnalytics] = useState(false) const [localNecessary, setLocalNecessary] = useState(true) const [localAnalytics, setLocalAnalytics] = useState(false) const showBanner = useSelector(cookieBannerOpen) @@ -85,6 +88,7 @@ const CookiesBanner = () => { setLocalNecessary(acceptedNecessary) const openBanner = acceptedNecessary === false || showBanner dispatch(openCookieBanner(openBanner)) + setShowAnalytics(acceptedAnalytics) } else { dispatch(openCookieBanner(true)) } @@ -99,6 +103,7 @@ const CookiesBanner = () => { } await saveCookie(COOKIES_KEY, newState, 365) dispatch(openCookieBanner(false)) + setShowAnalytics(true) } const closeCookiesBannerHandler = async () => { @@ -108,21 +113,21 @@ const CookiesBanner = () => { } const expDays = localAnalytics ? 365 : 7 await saveCookie(COOKIES_KEY, newState, expDays) + setShowAnalytics(localAnalytics) dispatch(openCookieBanner(false)) } - - return showBanner ? ( + const cookieBannerContent = (
closeCookiesBannerHandler()} className={classes.close}>

- We use cookies to give you the best experience and to help improve our website. Please read our + We use cookies to give you the best experience and to help improve our website. Please read our {' '} Cookie Policy {' '} - for more information. By clicking "Accept all", you agree to the storing of cookies on your device - to enhance site navigation, analyze site usage and provide customer support. + for more information. By clicking "Accept all", you agree to the storing of cookies on your device + to enhance site navigation, analyze site usage and provide customer support.

@@ -163,7 +168,13 @@ const CookiesBanner = () => {
- ) : null + ) + + if (showAnalytics) { + loadIntercom() + } + + return showBanner ? cookieBannerContent : null } export default CookiesBanner diff --git a/src/config/index.js b/src/config/index.js index 4c30f8c9..dd5d6741 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -45,3 +45,5 @@ export const signaturesViaMetamask = () => { return config[SIGNATURES_VIA_METAMASK] } + +export const getIntercomId = () => (process.env.REACT_APP_ENV === 'production' ? process.env.REACT_APP_INTERCOM_ID : 'plssl1fl') diff --git a/src/utils/intercom.js b/src/utils/intercom.js new file mode 100644 index 00000000..36a639b9 --- /dev/null +++ b/src/utils/intercom.js @@ -0,0 +1,25 @@ +// @flow +import { getIntercomId } from '~/config' + +// eslint-disable-next-line consistent-return +export const loadIntercom = () => { + const APP_ID = getIntercomId() + if (!APP_ID) { + console.error('[Intercom] - In order to use Intercom you need to add an appID') + return null + } + const d = document + const s = d.createElement('script') + s.type = 'text/javascript' + s.async = true + s.src = `https://widget.intercom.io/widget/${APP_ID}` + const x = d.getElementsByTagName('script')[0] + x.parentNode.insertBefore(s, x) + + s.onload = () => { + window.Intercom('boot', { + app_id: APP_ID, + consent: true, + }) + } +} diff --git a/yarn.lock b/yarn.lock index 0ba9bc40..66c2a37b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -14756,6 +14756,13 @@ prompts@^2.0.1: kleur "^3.0.3" sisteransi "^1.0.3" +prop-types@15.5.8: + version "15.5.8" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.5.8.tgz#6b7b2e141083be38c8595aa51fc55775c7199394" + integrity sha1-a3suFBCDvjjIWVqlH8VXdccZk5Q= + dependencies: + fbjs "^0.8.9" + prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.8, prop-types@^15.6.0, prop-types@^15.6.1, prop-types@^15.6.2, prop-types@^15.7.2: version "15.7.2" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5" @@ -15243,6 +15250,13 @@ react-inspector@^3.0.2: is-dom "^1.0.9" prop-types "^15.6.1" +react-intercom@^1.0.15: + version "1.0.15" + resolved "https://registry.yarnpkg.com/react-intercom/-/react-intercom-1.0.15.tgz#29180aca961a319eaab88a66126e484e1abd428b" + integrity sha512-e4NhmearKjdxmu6EjiA0d29FqEXJUvWtyxo4ioipNsKBD7gZgvtyJMty9UhNRSf9RoPqtSX2Fw4ooy6Ld86ddw== + dependencies: + prop-types "15.5.8" + react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1, react-is@^16.8.4, react-is@^16.8.6, react-is@^16.9.0: version "16.11.0" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa" From 1ff38bcbefab06fda1e40e80a5b1df061d23cf5c Mon Sep 17 00:00:00 2001 From: Mikhail Mikheev Date: Wed, 4 Dec 2019 17:48:12 +0400 Subject: [PATCH 024/116] Remove 'Hide zero balances' (#310) --- .../safe/components/Balances/dataFetcher.js | 2 -- src/routes/safe/components/Balances/index.jsx | 31 +++---------------- src/routes/safe/components/Balances/style.js | 6 +++- 3 files changed, 9 insertions(+), 30 deletions(-) diff --git a/src/routes/safe/components/Balances/dataFetcher.js b/src/routes/safe/components/Balances/dataFetcher.js index af3a146c..faaf2ffc 100644 --- a/src/routes/safe/components/Balances/dataFetcher.js +++ b/src/routes/safe/components/Balances/dataFetcher.js @@ -58,5 +58,3 @@ export const generateColumns = () => { return List([assetColumn, balanceColumn, actions]) } - -export const filterByZero = (data: List, hideZero: boolean): List => data.filter((row: BalanceRow) => (hideZero ? row[buildOrderFieldFrom(BALANCE_TABLE_BALANCE_ID)] !== 0 : true)) diff --git a/src/routes/safe/components/Balances/index.jsx b/src/routes/safe/components/Balances/index.jsx index 575f9e8a..63c0ab4c 100644 --- a/src/routes/safe/components/Balances/index.jsx +++ b/src/routes/safe/components/Balances/index.jsx @@ -2,7 +2,6 @@ import * as React from 'react' import { List } from 'immutable' import classNames from 'classnames/bind' -import Checkbox from '@material-ui/core/Checkbox' import TableRow from '@material-ui/core/TableRow' import TableCell from '@material-ui/core/TableCell' import { withStyles } from '@material-ui/core/styles' @@ -13,12 +12,11 @@ import Col from '~/components/layout/Col' import Row from '~/components/layout/Row' import Button from '~/components/layout/Button' import ButtonLink from '~/components/layout/ButtonLink' -import Paragraph from '~/components/layout/Paragraph' import Modal from '~/components/Modal' import { type Column, cellWidth } from '~/components/Table/TableHead' import Table from '~/components/Table' import { - getBalanceData, generateColumns, BALANCE_TABLE_ASSET_ID, type BalanceRow, filterByZero, + getBalanceData, generateColumns, BALANCE_TABLE_ASSET_ID, type BalanceRow, } from './dataFetcher' import AssetTableCell from './AssetTableCell' import Tokens from './Tokens' @@ -30,7 +28,6 @@ export const MANAGE_TOKENS_BUTTON_TEST_ID = 'manage-tokens-btn' export const BALANCE_ROW_TEST_ID = 'balance-row' type State = { - hideZero: boolean, showToken: boolean, showReceive: boolean, sendFunds: Object, @@ -53,7 +50,6 @@ class Balances extends React.Component { constructor(props) { super(props) this.state = { - hideZero: false, showToken: false, sendFunds: { isOpen: false, @@ -89,15 +85,9 @@ class Balances extends React.Component { }) } - handleChange = (e: SyntheticInputEvent) => { - const { checked } = e.target - - this.setState(() => ({ hideZero: checked })) - } - render() { const { - hideZero, showToken, showReceive, sendFunds, + showToken, showReceive, sendFunds, } = this.state const { classes, @@ -112,26 +102,13 @@ class Balances extends React.Component { const columns = generateColumns() const autoColumns = columns.filter((c) => !c.custom) - const checkboxClasses = { - root: classes.root, - } - const filteredData = filterByZero(getBalanceData(activeTokens), hideZero) + const filteredData = getBalanceData(activeTokens) return ( <> - - - Hide zero balances - - + Manage Tokens diff --git a/src/routes/safe/components/Balances/style.js b/src/routes/safe/components/Balances/style.js index 4ba8db58..d3113963 100644 --- a/src/routes/safe/components/Balances/style.js +++ b/src/routes/safe/components/Balances/style.js @@ -1,5 +1,5 @@ // @flow -import { sm } from '~/theme/variables' +import { sm, md } from '~/theme/variables' export const styles = (theme: Object) => ({ root: { @@ -8,6 +8,10 @@ export const styles = (theme: Object) => ({ }, message: { margin: `${sm} 0`, + padding: `${md} 0`, + maxHeight: '54px', + boxSizing: 'border-box', + justifyContent: 'flex-end', }, actionIcon: { marginRight: theme.spacing(1), From 932dcf7eb4db6162c9e13e390f0d7788878811ad Mon Sep 17 00:00:00 2001 From: Mikhail Mikheev Date: Wed, 4 Dec 2019 17:48:33 +0400 Subject: [PATCH 025/116] Use medium font size for 'select an asset' label (#312) --- .../SendModal/screens/SendFunds/TokenSelectField/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/safe/components/Balances/SendModal/screens/SendFunds/TokenSelectField/index.jsx b/src/routes/safe/components/Balances/SendModal/screens/SendFunds/TokenSelectField/index.jsx index b7d17e78..86bd0a94 100644 --- a/src/routes/safe/components/Balances/SendModal/screens/SendFunds/TokenSelectField/index.jsx +++ b/src/routes/safe/components/Balances/SendModal/screens/SendFunds/TokenSelectField/index.jsx @@ -44,7 +44,7 @@ const SelectedToken = ({ tokenAddress, tokens, classes }: SelectedTokenProps) => /> ) : ( - + Select an asset* )} From 85ff11796eb1aa7e251e4e075785ea9e431277a0 Mon Sep 17 00:00:00 2001 From: Agustin Pane Date: Thu, 5 Dec 2019 05:54:42 -0300 Subject: [PATCH 026/116] Feature #272: Google Analytics (#299) * Adds google analytics tracking for every route * Adds cookies acceptance check before tracking * Fix react-ga dependency * Fix cookieStore deletion * Merge with #189-cookie-banner * Fixs react ga version Refactored HOC with hooks * Fix TYPO * Fix path for cookies utils * Fix imports * remove flow type definition for polish * Add GA ID log * Fix load GA After cookies acceptance --- flow-typed/npm/react-ga_vx.x.x.js | 282 +++++++++++++++++++++++++ package.json | 3 +- src/components/CookiesBanner/index.jsx | 2 + src/config/index.js | 60 ++++-- src/routes/index.js | 11 +- src/utils/googleAnalytics.js | 64 ++++++ yarn.lock | 5 + 7 files changed, 402 insertions(+), 25 deletions(-) create mode 100644 flow-typed/npm/react-ga_vx.x.x.js create mode 100644 src/utils/googleAnalytics.js diff --git a/flow-typed/npm/react-ga_vx.x.x.js b/flow-typed/npm/react-ga_vx.x.x.js new file mode 100644 index 00000000..5d40089f --- /dev/null +++ b/flow-typed/npm/react-ga_vx.x.x.js @@ -0,0 +1,282 @@ +// flow-typed signature: 07c4a3f5d999e123126e4525eece89d8 +// flow-typed version: <>/react-ga_vlatest/flow_v0.112.0 + +/** + * This is an autogenerated libdef stub for: + * + * 'react-ga' + * + * Fill this stub out by replacing all the `any` types. + * + * Once filled out, we encourage you to share your work with the + * community by sending a pull request to: + * https://github.com/flowtype/flow-typed + */ + +declare module 'react-ga' { + declare module.exports: any; +} + +/** + * We include stubs for each file inside this npm package in case you need to + * require those files directly. Feel free to delete any files that aren't + * needed. + */ +declare module 'react-ga/core' { + declare module.exports: any; +} + +declare module 'react-ga/demo/app/Events' { + declare module.exports: any; +} + +declare module 'react-ga/demo/app' { + declare module.exports: any; +} + +declare module 'react-ga/demo/app/Router' { + declare module.exports: any; +} + +declare module 'react-ga/demo/app/withTracker' { + declare module.exports: any; +} + +declare module 'react-ga/demo' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/components/OutboundLink' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/core' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/utils/console/log' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/utils/console/warn' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/utils/format' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/utils/loadGA' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/utils/mightBeEmail' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/utils/removeLeadingSlash' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/utils/testModeAPI' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/utils/toTitleCase' { + declare module.exports: any; +} + +declare module 'react-ga/dist/esm/utils/trim' { + declare module.exports: any; +} + +declare module 'react-ga/dist/react-ga-core' { + declare module.exports: any; +} + +declare module 'react-ga/dist/react-ga-core.min' { + declare module.exports: any; +} + +declare module 'react-ga/dist/react-ga' { + declare module.exports: any; +} + +declare module 'react-ga/dist/react-ga.min' { + declare module.exports: any; +} + +declare module 'react-ga/src/components/OutboundLink' { + declare module.exports: any; +} + +declare module 'react-ga/src/core' { + declare module.exports: any; +} + +declare module 'react-ga/src' { + declare module.exports: any; +} + +declare module 'react-ga/src/utils/console/log' { + declare module.exports: any; +} + +declare module 'react-ga/src/utils/console/warn' { + declare module.exports: any; +} + +declare module 'react-ga/src/utils/format' { + declare module.exports: any; +} + +declare module 'react-ga/src/utils/loadGA' { + declare module.exports: any; +} + +declare module 'react-ga/src/utils/mightBeEmail' { + declare module.exports: any; +} + +declare module 'react-ga/src/utils/removeLeadingSlash' { + declare module.exports: any; +} + +declare module 'react-ga/src/utils/testModeAPI' { + declare module.exports: any; +} + +declare module 'react-ga/src/utils/toTitleCase' { + declare module.exports: any; +} + +declare module 'react-ga/src/utils/trim' { + declare module.exports: any; +} + +declare module 'react-ga/version-bower' { + declare module.exports: any; +} + +// Filename aliases +declare module 'react-ga/core.js' { + declare module.exports: $Exports<'react-ga/core'>; +} +declare module 'react-ga/demo/app/Events.jsx' { + declare module.exports: $Exports<'react-ga/demo/app/Events'>; +} +declare module 'react-ga/demo/app/index' { + declare module.exports: $Exports<'react-ga/demo/app'>; +} +declare module 'react-ga/demo/app/index.jsx' { + declare module.exports: $Exports<'react-ga/demo/app'>; +} +declare module 'react-ga/demo/app/Router.jsx' { + declare module.exports: $Exports<'react-ga/demo/app/Router'>; +} +declare module 'react-ga/demo/app/withTracker.jsx' { + declare module.exports: $Exports<'react-ga/demo/app/withTracker'>; +} +declare module 'react-ga/demo/index' { + declare module.exports: $Exports<'react-ga/demo'>; +} +declare module 'react-ga/demo/index.jsx' { + declare module.exports: $Exports<'react-ga/demo'>; +} +declare module 'react-ga/dist/esm/components/OutboundLink.js' { + declare module.exports: $Exports<'react-ga/dist/esm/components/OutboundLink'>; +} +declare module 'react-ga/dist/esm/core.js' { + declare module.exports: $Exports<'react-ga/dist/esm/core'>; +} +declare module 'react-ga/dist/esm/index' { + declare module.exports: $Exports<'react-ga/dist/esm'>; +} +declare module 'react-ga/dist/esm/index.js' { + declare module.exports: $Exports<'react-ga/dist/esm'>; +} +declare module 'react-ga/dist/esm/utils/console/log.js' { + declare module.exports: $Exports<'react-ga/dist/esm/utils/console/log'>; +} +declare module 'react-ga/dist/esm/utils/console/warn.js' { + declare module.exports: $Exports<'react-ga/dist/esm/utils/console/warn'>; +} +declare module 'react-ga/dist/esm/utils/format.js' { + declare module.exports: $Exports<'react-ga/dist/esm/utils/format'>; +} +declare module 'react-ga/dist/esm/utils/loadGA.js' { + declare module.exports: $Exports<'react-ga/dist/esm/utils/loadGA'>; +} +declare module 'react-ga/dist/esm/utils/mightBeEmail.js' { + declare module.exports: $Exports<'react-ga/dist/esm/utils/mightBeEmail'>; +} +declare module 'react-ga/dist/esm/utils/removeLeadingSlash.js' { + declare module.exports: $Exports<'react-ga/dist/esm/utils/removeLeadingSlash'>; +} +declare module 'react-ga/dist/esm/utils/testModeAPI.js' { + declare module.exports: $Exports<'react-ga/dist/esm/utils/testModeAPI'>; +} +declare module 'react-ga/dist/esm/utils/toTitleCase.js' { + declare module.exports: $Exports<'react-ga/dist/esm/utils/toTitleCase'>; +} +declare module 'react-ga/dist/esm/utils/trim.js' { + declare module.exports: $Exports<'react-ga/dist/esm/utils/trim'>; +} +declare module 'react-ga/dist/react-ga-core.js' { + declare module.exports: $Exports<'react-ga/dist/react-ga-core'>; +} +declare module 'react-ga/dist/react-ga-core.min.js' { + declare module.exports: $Exports<'react-ga/dist/react-ga-core.min'>; +} +declare module 'react-ga/dist/react-ga.js' { + declare module.exports: $Exports<'react-ga/dist/react-ga'>; +} +declare module 'react-ga/dist/react-ga.min.js' { + declare module.exports: $Exports<'react-ga/dist/react-ga.min'>; +} +declare module 'react-ga/src/components/OutboundLink.js' { + declare module.exports: $Exports<'react-ga/src/components/OutboundLink'>; +} +declare module 'react-ga/src/core.js' { + declare module.exports: $Exports<'react-ga/src/core'>; +} +declare module 'react-ga/src/index' { + declare module.exports: $Exports<'react-ga/src'>; +} +declare module 'react-ga/src/index.js' { + declare module.exports: $Exports<'react-ga/src'>; +} +declare module 'react-ga/src/utils/console/log.js' { + declare module.exports: $Exports<'react-ga/src/utils/console/log'>; +} +declare module 'react-ga/src/utils/console/warn.js' { + declare module.exports: $Exports<'react-ga/src/utils/console/warn'>; +} +declare module 'react-ga/src/utils/format.js' { + declare module.exports: $Exports<'react-ga/src/utils/format'>; +} +declare module 'react-ga/src/utils/loadGA.js' { + declare module.exports: $Exports<'react-ga/src/utils/loadGA'>; +} +declare module 'react-ga/src/utils/mightBeEmail.js' { + declare module.exports: $Exports<'react-ga/src/utils/mightBeEmail'>; +} +declare module 'react-ga/src/utils/removeLeadingSlash.js' { + declare module.exports: $Exports<'react-ga/src/utils/removeLeadingSlash'>; +} +declare module 'react-ga/src/utils/testModeAPI.js' { + declare module.exports: $Exports<'react-ga/src/utils/testModeAPI'>; +} +declare module 'react-ga/src/utils/toTitleCase.js' { + declare module.exports: $Exports<'react-ga/src/utils/toTitleCase'>; +} +declare module 'react-ga/src/utils/trim.js' { + declare module.exports: $Exports<'react-ga/src/utils/trim'>; +} +declare module 'react-ga/version-bower.js' { + declare module.exports: $Exports<'react-ga/version-bower'>; +} diff --git a/package.json b/package.json index 784c1698..055e2fb2 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,8 @@ "reselect": "^4.0.0", "squarelink": "^1.1.3", "web3": "1.2.4", - "web3connect": "^1.0.0-beta.23" + "web3connect": "^1.0.0-beta.23", + "react-ga": "^2.7.0" }, "devDependencies": { "@babel/cli": "7.7.4", diff --git a/src/components/CookiesBanner/index.jsx b/src/components/CookiesBanner/index.jsx index 74441bfe..0f82cac2 100644 --- a/src/components/CookiesBanner/index.jsx +++ b/src/components/CookiesBanner/index.jsx @@ -15,6 +15,7 @@ import { loadFromCookie, saveCookie } from '~/logic/cookies/utils' import { cookieBannerOpen } from '~/logic/cookies/store/selectors' import { openCookieBanner } from '~/logic/cookies/store/actions/openCookieBanner' import { loadIntercom } from '~/utils/intercom' +import { loadGoogleAnalytics } from '~/utils/googleAnalytics' const useStyles = makeStyles({ container: { @@ -172,6 +173,7 @@ const CookiesBanner = () => { if (showAnalytics) { loadIntercom() + loadGoogleAnalytics() } return showBanner ? cookieBannerContent : null diff --git a/src/config/index.js b/src/config/index.js index dd5d6741..51e49108 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -1,32 +1,45 @@ // @flow -import { ensureOnce } from '~/utils/singleton' -import { ETHEREUM_NETWORK } from '~/logic/wallets/getWeb3' -import { TX_SERVICE_HOST, SIGNATURES_VIA_METAMASK, RELAY_API_URL } from '~/config/names' -import devConfig from './development' -import testConfig from './testing' -import stagingConfig from './staging' -import prodConfig from './production' -import mainnetDevConfig from './development-mainnet' -import mainnetProdConfig from './production-mainnet' -import mainnetStagingConfig from './staging-mainnet' +import { ensureOnce } from "~/utils/singleton" +import { ETHEREUM_NETWORK } from "~/logic/wallets/getWeb3" +import { + RELAY_API_URL, + SIGNATURES_VIA_METAMASK, + TX_SERVICE_HOST +} from "~/config/names" +import devConfig from "./development" +import testConfig from "./testing" +import stagingConfig from "./staging" +import prodConfig from "./production" +import mainnetDevConfig from "./development-mainnet" +import mainnetProdConfig from "./production-mainnet" +import mainnetStagingConfig from "./staging-mainnet" const configuration = () => { - if (process.env.NODE_ENV === 'test') { + if (process.env.NODE_ENV === "test") { return testConfig } - if (process.env.NODE_ENV === 'production') { - if (process.env.REACT_APP_NETWORK === 'mainnet') { - return process.env.REACT_APP_ENV === 'production' ? mainnetProdConfig : mainnetStagingConfig + if (process.env.NODE_ENV === "production") { + if (process.env.REACT_APP_NETWORK === "mainnet") { + return process.env.REACT_APP_ENV === "production" + ? mainnetProdConfig + : mainnetStagingConfig } - return process.env.REACT_APP_ENV === 'production' ? prodConfig : stagingConfig + return process.env.REACT_APP_ENV === "production" + ? prodConfig + : stagingConfig } - return process.env.REACT_APP_NETWORK === 'mainnet' ? mainnetDevConfig : devConfig + return process.env.REACT_APP_NETWORK === "mainnet" + ? mainnetDevConfig + : devConfig } -export const getNetwork = () => (process.env.REACT_APP_NETWORK === 'mainnet' ? ETHEREUM_NETWORK.MAINNET : ETHEREUM_NETWORK.RINKEBY) +export const getNetwork = () => + process.env.REACT_APP_NETWORK === "mainnet" + ? ETHEREUM_NETWORK.MAINNET + : ETHEREUM_NETWORK.RINKEBY const getConfig = ensureOnce(configuration) @@ -36,7 +49,8 @@ export const getTxServiceHost = () => { return config[TX_SERVICE_HOST] } -export const getTxServiceUriFrom = (safeAddress: string) => `safes/${safeAddress}/transactions/` +export const getTxServiceUriFrom = (safeAddress: string) => + `safes/${safeAddress}/transactions/` export const getRelayUrl = () => getConfig()[RELAY_API_URL] @@ -46,4 +60,12 @@ export const signaturesViaMetamask = () => { return config[SIGNATURES_VIA_METAMASK] } -export const getIntercomId = () => (process.env.REACT_APP_ENV === 'production' ? process.env.REACT_APP_INTERCOM_ID : 'plssl1fl') +export const getGoogleAnalyticsTrackingID = () => + getNetwork() === ETHEREUM_NETWORK.MAINNET + ? process.env.REACT_APP_GOOGLE_ANALYTICS_ID_MAINNET + : process.env.REACT_APP_GOOGLE_ANALYTICS_ID_RINKEBY + +export const getIntercomId = () => + process.env.REACT_APP_ENV === "production" + ? process.env.REACT_APP_INTERCOM_ID + : "plssl1fl" diff --git a/src/routes/index.js b/src/routes/index.js index ff3d3271..1b25ee85 100644 --- a/src/routes/index.js +++ b/src/routes/index.js @@ -15,6 +15,7 @@ import { OPENING_ADDRESS, LOAD_ADDRESS, } from './routes' +import { withTracker } from '~/utils/googleAnalytics' const Safe = React.lazy(() => import('./safe/container')) @@ -62,11 +63,11 @@ const Routes = ({ defaultSafe, location }: RoutesProps) => { return }} /> - - - - - + + + + + ) diff --git a/src/utils/googleAnalytics.js b/src/utils/googleAnalytics.js new file mode 100644 index 00000000..4d888c6d --- /dev/null +++ b/src/utils/googleAnalytics.js @@ -0,0 +1,64 @@ +// @flow +import React, { useEffect, useState } from 'react' +import GoogleAnalytics from 'react-ga' +import { getGoogleAnalyticsTrackingID } from '~/config' +import { COOKIES_KEY } from '~/logic/cookies/model/cookie' +import type { CookiesProps } from '~/logic/cookies/model/cookie' +import type { RouterProps } from '~/routes/safe/store/selectors' +import { loadFromCookie } from '~/logic/cookies/utils' + + +let analyticsLoaded = false +export const loadGoogleAnalytics = () => { + if (analyticsLoaded) { + return + } + // eslint-disable-next-line no-console + console.log('Loading google analytics...') + const trackingID = getGoogleAnalyticsTrackingID() + if (!trackingID) { + console.error('[GoogleAnalytics] - In order to use google analytics you need to add an trackingID') + } else { + GoogleAnalytics.initialize(trackingID) + analyticsLoaded = true + } +} + + +export const withTracker = (WrappedComponent, options = {}) => { + const [useAnalytics, setUseAnalytics] = useState(false) + + useEffect(() => { + async function fetchCookiesFromStorage() { + const cookiesState: CookiesProps = await loadFromCookie(COOKIES_KEY) + if (cookiesState) { + const { acceptedAnalytics } = cookiesState + setUseAnalytics(acceptedAnalytics) + } + } + fetchCookiesFromStorage() + }, []) + + const trackPage = (page) => { + if (!useAnalytics || !analyticsLoaded) { + return + } + GoogleAnalytics.set({ + page, + ...options, + }) + GoogleAnalytics.pageview(page) + } + + const HOC = (props: RouterProps) => { + // eslint-disable-next-line react/prop-types + const { location } = props + useEffect(() => { + const page = location.pathname + location.search + trackPage(page) + }, [location.pathname]) + return + } + + return HOC +} diff --git a/yarn.lock b/yarn.lock index 66c2a37b..632d5266 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15186,6 +15186,11 @@ react-focus-lock@^1.18.3: prop-types "^15.6.2" react-clientside-effect "^1.2.0" +react-ga@^2.7.0: + version "2.7.0" + resolved "https://registry.yarnpkg.com/react-ga/-/react-ga-2.7.0.tgz#24328f157f31e8cffbf4de74a3396536679d8d7c" + integrity sha512-AjC7UOZMvygrWTc2hKxTDvlMXEtbmA0IgJjmkhgmQQ3RkXrWR11xEagLGFGaNyaPnmg24oaIiaNPnEoftUhfXA== + react-helmet-async@^1.0.2: version "1.0.4" resolved "https://registry.yarnpkg.com/react-helmet-async/-/react-helmet-async-1.0.4.tgz#079ef10b7fefcaee6240fefd150711e62463cc97" From 21b7a59f201f9b00ae317169f95c4674eda58efa Mon Sep 17 00:00:00 2001 From: Fernando Date: Thu, 5 Dec 2019 06:18:07 -0300 Subject: [PATCH 027/116] Feature #224: Activate tokens automatically (#300) * Replace 'Manage Tokens' with 'Manage List' * prevent 301 redirects * Add `BLACKLISTED_TOKENS` key to persist through immortal * Add store/action to extract _activate tokens by its balance_ - keeps already activated tokens - discards blacklisted tokens - adds tokens whose vales are bigger than zero and are not blacklisted * Add `blacklistedTokens` list to safe's store * Display activeTokensByBalance in 'Balances' screen * Enable token's blacklisting functionality in Tokens List * Retrieve balance from API * Rename action to `activateTokensByBalance` * Fix linting errors - line too long - required return * Do not persist a separate list into `BLACKLISTED_TOKENS` --- src/logic/tokens/api/fetchTokenBalanceList.js | 16 ++++++ src/logic/tokens/api/fetchTokenList.js | 2 +- .../store/actions/activateTokensByBalance.js | 49 +++++++++++++++++ src/logic/tokens/store/actions/removeToken.js | 2 +- .../components/Balances/Tokens/actions.js | 3 ++ .../safe/components/Balances/Tokens/index.jsx | 7 ++- .../Tokens/screens/TokenList/index.jsx | 53 ++++++++++++------- src/routes/safe/components/Balances/index.jsx | 21 +++++++- src/routes/safe/components/Layout.jsx | 6 +++ src/routes/safe/container/actions.js | 3 ++ src/routes/safe/container/index.jsx | 6 +++ src/routes/safe/container/selector.js | 3 ++ .../safe/store/actions/fetchTokenBalances.js | 3 +- .../store/actions/updateBlacklistedTokens.js | 13 +++++ .../safe/store/middleware/safeStorage.js | 10 ++-- src/routes/safe/store/models/safe.js | 2 + src/routes/safe/store/reducer/safe.js | 2 + src/routes/safe/store/selectors/index.js | 31 +++++++++++ 18 files changed, 202 insertions(+), 30 deletions(-) create mode 100644 src/logic/tokens/api/fetchTokenBalanceList.js create mode 100644 src/logic/tokens/store/actions/activateTokensByBalance.js create mode 100644 src/routes/safe/store/actions/updateBlacklistedTokens.js diff --git a/src/logic/tokens/api/fetchTokenBalanceList.js b/src/logic/tokens/api/fetchTokenBalanceList.js new file mode 100644 index 00000000..cc047a91 --- /dev/null +++ b/src/logic/tokens/api/fetchTokenBalanceList.js @@ -0,0 +1,16 @@ +// @flow +import axios from 'axios' +import { getTxServiceHost } from '~/config/index' + +const fetchTokenBalanceList = (safeAddress: string) => { + const apiUrl = getTxServiceHost() + const url = `${apiUrl}safes/${safeAddress}/balances/` + + return axios.get(url, { + params: { + limit: 300, + }, + }) +} + +export default fetchTokenBalanceList diff --git a/src/logic/tokens/api/fetchTokenList.js b/src/logic/tokens/api/fetchTokenList.js index 82cbb7ba..167e09a7 100644 --- a/src/logic/tokens/api/fetchTokenList.js +++ b/src/logic/tokens/api/fetchTokenList.js @@ -4,7 +4,7 @@ import { getRelayUrl } from '~/config/index' const fetchTokenList = () => { const apiUrl = getRelayUrl() - const url = `${apiUrl}/tokens` + const url = `${apiUrl}tokens/` return axios.get(url, { params: { diff --git a/src/logic/tokens/store/actions/activateTokensByBalance.js b/src/logic/tokens/store/actions/activateTokensByBalance.js new file mode 100644 index 00000000..a946535f --- /dev/null +++ b/src/logic/tokens/store/actions/activateTokensByBalance.js @@ -0,0 +1,49 @@ +// @flow +import type { Dispatch as ReduxDispatch } from 'redux' +import { Set } from 'immutable' +import { type GetState, type GlobalState } from '~/store' +import updateActiveTokens from '~/routes/safe/store/actions/updateActiveTokens' +import { + safeActiveTokensSelectorBySafe, + safeBlacklistedTokensSelectorBySafe, + safesMapSelector, +} from '~/routes/safe/store/selectors' +import fetchTokenBalanceList from '~/logic/tokens/api/fetchTokenBalanceList' +import updateSafe from '~/routes/safe/store/actions/updateSafe' + +const activateTokensByBalance = (safeAddress: string) => async ( + dispatch: ReduxDispatch, + getState: GetState, +) => { + try { + const result = await fetchTokenBalanceList(safeAddress) + const safes = safesMapSelector(getState()) + const alreadyActiveTokens = safeActiveTokensSelectorBySafe(safeAddress, safes) + const blacklistedTokens = safeBlacklistedTokensSelectorBySafe(safeAddress, safes) + + // addresses: potentially active tokens by balance + // balances: tokens' balance returned by the backend + const { addresses, balances } = result.data.reduce((acc, { tokenAddress, balance }) => ({ + addresses: [...acc.addresses, tokenAddress], + balances: [...acc.balances, balance], + }), { addresses: [], balances: [] }) + + // update balance list for the safe + dispatch(updateSafe({ address: safeAddress, balances: Set(balances) })) + + // active tokens by balance, excluding those already blacklisted and the `null` address + const activeByBalance = addresses.filter((address) => address !== null && !blacklistedTokens.includes(address)) + + // need to persist those already active tokens, despite its balances + const activeTokens = alreadyActiveTokens.toSet().union(activeByBalance) + + // update list of active tokens + dispatch(updateActiveTokens(safeAddress, activeTokens)) + } catch (err) { + console.error('Error fetching token list', err) + } + + return null +} + +export default activateTokensByBalance diff --git a/src/logic/tokens/store/actions/removeToken.js b/src/logic/tokens/store/actions/removeToken.js index 0dedb20a..91e1bc38 100644 --- a/src/logic/tokens/store/actions/removeToken.js +++ b/src/logic/tokens/store/actions/removeToken.js @@ -2,7 +2,7 @@ import { createAction } from 'redux-actions' import type { Dispatch as ReduxDispatch } from 'redux' import { type Token } from '~/logic/tokens/store/model/token' -import { removeTokenFromStorage, removeFromActiveTokens } from '~/logic/tokens/utils/tokensStorage' +import { removeFromActiveTokens, removeTokenFromStorage } from '~/logic/tokens/utils/tokensStorage' import { type GlobalState } from '~/store/index' export const REMOVE_TOKEN = 'REMOVE_TOKEN' diff --git a/src/routes/safe/components/Balances/Tokens/actions.js b/src/routes/safe/components/Balances/Tokens/actions.js index 06292b57..3f0dbc99 100644 --- a/src/routes/safe/components/Balances/Tokens/actions.js +++ b/src/routes/safe/components/Balances/Tokens/actions.js @@ -2,11 +2,13 @@ import fetchTokens from '~/logic/tokens/store/actions/fetchTokens' import { addToken } from '~/logic/tokens/store/actions/addToken' import updateActiveTokens from '~/routes/safe/store/actions/updateActiveTokens' +import updateBlacklistedTokens from '~/routes/safe/store/actions/updateBlacklistedTokens' import activateTokenForAllSafes from '~/routes/safe/store/actions/activateTokenForAllSafes' export type Actions = { fetchTokens: Function, updateActiveTokens: Function, + updateBlacklistedTokens: typeof updateBlacklistedTokens, addToken: Function, activateTokenForAllSafes: Function, } @@ -15,5 +17,6 @@ export default { fetchTokens, addToken, updateActiveTokens, + updateBlacklistedTokens, activateTokenForAllSafes, } diff --git a/src/routes/safe/components/Balances/Tokens/index.jsx b/src/routes/safe/components/Balances/Tokens/index.jsx index 18483d07..a23f0811 100644 --- a/src/routes/safe/components/Balances/Tokens/index.jsx +++ b/src/routes/safe/components/Balances/Tokens/index.jsx @@ -22,6 +22,7 @@ type Props = Actions & { tokens: List, safeAddress: string, activeTokens: List, + blacklistedTokens: List, } type ActiveScreen = 'tokenList' | 'addCustomToken' @@ -32,8 +33,10 @@ const Tokens = (props: Props) => { classes, tokens, activeTokens, + blacklistedTokens, fetchTokens, updateActiveTokens, + updateBlacklistedTokens, safeAddress, addToken, activateTokenForAllSafes, @@ -43,7 +46,7 @@ const Tokens = (props: Props) => { <> - Manage Tokens + Manage List @@ -54,8 +57,10 @@ const Tokens = (props: Props) => { diff --git a/src/routes/safe/components/Balances/Tokens/screens/TokenList/index.jsx b/src/routes/safe/components/Balances/Tokens/screens/TokenList/index.jsx index 8b13d3f6..8afba236 100644 --- a/src/routes/safe/components/Balances/Tokens/screens/TokenList/index.jsx +++ b/src/routes/safe/components/Balances/Tokens/screens/TokenList/index.jsx @@ -25,14 +25,17 @@ type Props = { tokens: List, safeAddress: string, activeTokens: List, - fetchTokens: Function, + blacklistedTokens: List, updateActiveTokens: Function, + updateBlacklistedTokens: Function, setActiveScreen: Function, } type State = { filter: string, activeTokensAddresses: Set, + initialActiveTokensAddresses: Set, + blacklistedTokensAddresses: Set, } const filterBy = (filter: string, tokens: List): List => tokens.filter( @@ -52,13 +55,10 @@ class Tokens extends React.Component { state = { filter: '', activeTokensAddresses: Set([]), + initialActiveTokensAddresses: Set([]), + blacklistedTokensAddresses: Set([]), activeTokensCalculated: false, - } - - componentDidMount() { - const { fetchTokens } = this.props - - fetchTokens() + blacklistedTokensCalculated: false, } static getDerivedStateFromProps(nextProps, prevState) { @@ -70,17 +70,29 @@ class Tokens extends React.Component { return { activeTokensAddresses: Set(activeTokens.map(({ address }) => address)), + initialActiveTokensAddresses: Set(activeTokens.map(({ address }) => address)), activeTokensCalculated: true, } } + + if (!prevState.blacklistedTokensCalculated) { + const { blacklistedTokens } = nextProps + + return { + blacklistedTokensAddresses: blacklistedTokens, + blacklistedTokensCalculated: true, + } + } + return null } componentWillUnmount() { - const { activeTokensAddresses } = this.state - const { updateActiveTokens, safeAddress } = this.props + const { activeTokensAddresses, blacklistedTokensAddresses } = this.state + const { updateActiveTokens, updateBlacklistedTokens, safeAddress } = this.props updateActiveTokens(safeAddress, activeTokensAddresses) + updateBlacklistedTokens(safeAddress, blacklistedTokensAddresses) } onCancelSearch = () => { @@ -92,17 +104,20 @@ class Tokens extends React.Component { } onSwitch = (token: Token) => () => { - const { activeTokensAddresses } = this.state + this.setState((prevState) => { + const activeTokensAddresses = prevState.activeTokensAddresses.has(token.address) + ? prevState.activeTokensAddresses.remove(token.address) + : prevState.activeTokensAddresses.add(token.address) - if (activeTokensAddresses.has(token.address)) { - this.setState({ - activeTokensAddresses: activeTokensAddresses.remove(token.address), - }) - } else { - this.setState({ - activeTokensAddresses: activeTokensAddresses.add(token.address), - }) - } + let { blacklistedTokensAddresses } = prevState + if (activeTokensAddresses.has(token.address)) { + blacklistedTokensAddresses = prevState.blacklistedTokensAddresses.remove(token.address) + } else if (prevState.initialActiveTokensAddresses.has(token.address)) { + blacklistedTokensAddresses = prevState.blacklistedTokensAddresses.add(token.address) + } + + return ({ ...prevState, activeTokensAddresses, blacklistedTokensAddresses }) + }) } createItemData = (tokens, activeTokensAddresses) => ({ diff --git a/src/routes/safe/components/Balances/index.jsx b/src/routes/safe/components/Balances/index.jsx index 63c0ab4c..85ea6d3d 100644 --- a/src/routes/safe/components/Balances/index.jsx +++ b/src/routes/safe/components/Balances/index.jsx @@ -38,6 +38,9 @@ type Props = { granted: boolean, tokens: List, activeTokens: List, + blacklistedTokens: List, + activateTokensByBalance: Function, + fetchTokens: Function, safeAddress: string, safeName: string, ethBalance: string, @@ -57,6 +60,7 @@ class Balances extends React.Component { }, showReceive: false, } + props.fetchTokens() } onShow = (action: Action) => () => { @@ -85,6 +89,17 @@ class Balances extends React.Component { }) } + handleChange = (e: SyntheticInputEvent) => { + const { checked } = e.target + + this.setState(() => ({ hideZero: checked })) + } + + componentDidMount(): void { + const { activateTokensByBalance, safeAddress } = this.props + activateTokensByBalance(safeAddress) + } + render() { const { showToken, showReceive, sendFunds, @@ -95,6 +110,7 @@ class Balances extends React.Component { tokens, safeAddress, activeTokens, + blacklistedTokens, safeName, ethBalance, createTransaction, @@ -110,10 +126,10 @@ class Balances extends React.Component { - Manage Tokens + Manage List { onClose={this.onHide('Token')} safeAddress={safeAddress} activeTokens={activeTokens} + blacklistedTokens={blacklistedTokens} /> diff --git a/src/routes/safe/components/Layout.jsx b/src/routes/safe/components/Layout.jsx index 9063c619..bb653fdc 100644 --- a/src/routes/safe/components/Layout.jsx +++ b/src/routes/safe/components/Layout.jsx @@ -60,9 +60,12 @@ const Layout = (props: Props) => { granted, tokens, activeTokens, + blacklistedTokens, createTransaction, processTransaction, fetchTransactions, + activateTokensByBalance, + fetchTokens, updateSafe, transactions, userAddress, @@ -156,8 +159,11 @@ const Layout = (props: Props) => { ethBalance={ethBalance} tokens={tokens} activeTokens={activeTokens} + blacklistedTokens={blacklistedTokens} granted={granted} safeAddress={address} + activateTokensByBalance={activateTokensByBalance} + fetchTokens={fetchTokens} safeName={name} createTransaction={createTransaction} /> diff --git a/src/routes/safe/container/actions.js b/src/routes/safe/container/actions.js index 03c49de9..19145afb 100644 --- a/src/routes/safe/container/actions.js +++ b/src/routes/safe/container/actions.js @@ -7,6 +7,7 @@ import processTransaction from '~/routes/safe/store/actions/processTransaction' import fetchTransactions from '~/routes/safe/store/actions/fetchTransactions' import updateSafe from '~/routes/safe/store/actions/updateSafe' import fetchTokens from '~/logic/tokens/store/actions/fetchTokens' +import activateTokensByBalance from '~/logic/tokens/store/actions/activateTokensByBalance' export type Actions = { fetchSafe: typeof fetchSafe, @@ -17,6 +18,7 @@ export type Actions = { fetchTokens: typeof fetchTokens, processTransaction: typeof processTransaction, fetchEtherBalance: typeof fetchEtherBalance, + activateTokensByBalance: typeof activateTokensByBalance } export default { @@ -26,6 +28,7 @@ export default { processTransaction, fetchTokens, fetchTransactions, + activateTokensByBalance, updateSafe, fetchEtherBalance, checkAndUpdateSafeOwners, diff --git a/src/routes/safe/container/index.jsx b/src/routes/safe/container/index.jsx index 7104ad3c..c194da21 100644 --- a/src/routes/safe/container/index.jsx +++ b/src/routes/safe/container/index.jsx @@ -102,6 +102,7 @@ class SafeView extends React.Component { safe, provider, activeTokens, + blacklistedTokens, granted, userAddress, network, @@ -109,6 +110,8 @@ class SafeView extends React.Component { createTransaction, processTransaction, fetchTransactions, + activateTokensByBalance, + fetchTokens, updateSafe, transactions, } = this.props @@ -117,6 +120,7 @@ class SafeView extends React.Component { { createTransaction={createTransaction} processTransaction={processTransaction} fetchTransactions={fetchTransactions} + activateTokensByBalance={activateTokensByBalance} + fetchTokens={fetchTokens} updateSafe={updateSafe} transactions={transactions} sendFunds={sendFunds} diff --git a/src/routes/safe/container/selector.js b/src/routes/safe/container/selector.js index d8254506..7fadf156 100644 --- a/src/routes/safe/container/selector.js +++ b/src/routes/safe/container/selector.js @@ -5,6 +5,7 @@ import { safeSelector, safeActiveTokensSelector, safeBalancesSelector, + safeBlacklistedTokensSelector, type RouterProps, type SafeSelectorProps, } from '~/routes/safe/store/selectors' @@ -25,6 +26,7 @@ export type SelectorProps = { provider: string, tokens: List, activeTokens: List, + blacklistedTokens: List, userAddress: string, network: string, safeUrl: string, @@ -135,6 +137,7 @@ export default createStructuredSelector({ provider: providerNameSelector, tokens: orderedTokenListSelector, activeTokens: extendedSafeTokensSelector, + blacklistedTokens: safeBlacklistedTokensSelector, granted: grantedSelector, userAddress: userAccountSelector, network: networkSelector, diff --git a/src/routes/safe/store/actions/fetchTokenBalances.js b/src/routes/safe/store/actions/fetchTokenBalances.js index ab69d87b..bf008cde 100644 --- a/src/routes/safe/store/actions/fetchTokenBalances.js +++ b/src/routes/safe/store/actions/fetchTokenBalances.js @@ -19,7 +19,7 @@ export const calculateBalanceOf = async (tokenAddress: string, safeAddress: stri const token = await erc20Token.at(tokenAddress) balance = await token.balanceOf(safeAddress) } catch (err) { - console.error('Failed to fetch token balances: ', err) + console.error('Failed to fetch token balances: ', tokenAddress, err) } return new BigNumber(balance).div(10 ** decimals).toString() @@ -50,7 +50,6 @@ const fetchTokenBalances = (safeAddress: string, tokens: List) => async ( dispatch(updateSafe({ address: safeAddress, balances })) } catch (err) { - // eslint-disable-next-line console.error('Error when fetching token balances:', err) } } diff --git a/src/routes/safe/store/actions/updateBlacklistedTokens.js b/src/routes/safe/store/actions/updateBlacklistedTokens.js new file mode 100644 index 00000000..2602cfe6 --- /dev/null +++ b/src/routes/safe/store/actions/updateBlacklistedTokens.js @@ -0,0 +1,13 @@ +// @flow +import { Set } from 'immutable' +import type { Dispatch as ReduxDispatch } from 'redux' +import { type GlobalState } from '~/store' +import updateSafe from './updateSafe' + +const updateBlacklistedTokens = (safeAddress: string, blacklistedTokens: Set) => async ( + dispatch: ReduxDispatch, +) => { + dispatch(updateSafe({ address: safeAddress, blacklistedTokens })) +} + +export default updateBlacklistedTokens diff --git a/src/routes/safe/store/middleware/safeStorage.js b/src/routes/safe/store/middleware/safeStorage.js index a58ed541..1bb7e4b0 100644 --- a/src/routes/safe/store/middleware/safeStorage.js +++ b/src/routes/safe/store/middleware/safeStorage.js @@ -1,5 +1,5 @@ // @flow -import type { Store, AnyAction } from 'redux' +import type { AnyAction, Store } from 'redux' import { List } from 'immutable' import { ADD_SAFE } from '~/routes/safe/store/actions/addSafe' import { UPDATE_SAFE } from '~/routes/safe/store/actions/updateSafe' @@ -10,10 +10,12 @@ import { REPLACE_SAFE_OWNER } from '~/routes/safe/store/actions/replaceSafeOwner import { EDIT_SAFE_OWNER } from '~/routes/safe/store/actions/editSafeOwner' import { type GlobalState } from '~/store/' import { - saveSafes, setOwners, removeOwners, saveDefaultSafe, + removeOwners, + saveDefaultSafe, + saveSafes, + setOwners, } from '~/logic/safe/utils' -import { safesMapSelector, getActiveTokensAddressesForAllSafes } from '~/routes/safe/store/selectors' - +import { getActiveTokensAddressesForAllSafes, safesMapSelector } from '~/routes/safe/store/selectors' import { tokensSelector } from '~/logic/tokens/store/selectors' import type { Token } from '~/logic/tokens/store/model/token' import { makeOwner } from '~/routes/safe/store/models/owner' diff --git a/src/routes/safe/store/models/safe.js b/src/routes/safe/store/models/safe.js index 2ef03995..4b1209d4 100644 --- a/src/routes/safe/store/models/safe.js +++ b/src/routes/safe/store/models/safe.js @@ -12,6 +12,7 @@ export type SafeProps = { owners: List, balances?: Map, activeTokens: Set, + blacklistedTokens: Set, ethBalance?: string, } @@ -22,6 +23,7 @@ const SafeRecord: RecordFactory = Record({ ethBalance: 0, owners: List([]), activeTokens: new Set(), + blacklistedTokens: new Set(), balances: Map({}), }) diff --git a/src/routes/safe/store/reducer/safe.js b/src/routes/safe/store/reducer/safe.js index bdb67ad8..df7fed82 100644 --- a/src/routes/safe/store/reducer/safe.js +++ b/src/routes/safe/store/reducer/safe.js @@ -22,6 +22,7 @@ export const buildSafe = (storedSafe: SafeProps) => { const addresses = storedSafe.owners.map((owner: OwnerProps) => owner.address) const owners = buildOwnersFrom(Array.from(names), Array.from(addresses)) const activeTokens = Set(storedSafe.activeTokens) + const blacklistedTokens = Set(storedSafe.blacklistedTokens) const balances = Map(storedSafe.balances) const safe: SafeProps = { @@ -29,6 +30,7 @@ export const buildSafe = (storedSafe: SafeProps) => { owners, balances, activeTokens, + blacklistedTokens, } return safe diff --git a/src/routes/safe/store/selectors/index.js b/src/routes/safe/store/selectors/index.js index 46574d4b..2155744c 100644 --- a/src/routes/safe/store/selectors/index.js +++ b/src/routes/safe/store/selectors/index.js @@ -106,6 +106,21 @@ export const safeActiveTokensSelector: Selector> = createSelector( + safeSelector, + (safe: Safe) => { + if (!safe) { + return List() + } + + return safe.blacklistedTokens + }, +) + +export const safeActiveTokensSelectorBySafe = (safeAddress: string, safes: Map): List => safes.get(safeAddress).get('activeTokens') + +export const safeBlacklistedTokensSelectorBySafe = (safeAddress: string, safes: Map): List => safes.get(safeAddress).get('blacklistedTokens') + export const safeBalancesSelector: Selector> = createSelector( safeSelector, (safe: Safe) => { @@ -132,7 +147,23 @@ export const getActiveTokensAddressesForAllSafes: Selector> = createSelector( + safesListSelector, + (safes: List) => { + const addresses = Set().withMutations((set) => { + safes.forEach((safe: Safe) => { + safe.blacklistedTokens.forEach((tokenAddress) => { + set.add(tokenAddress) + }) + }) + }) + + return addresses + }, +) + export default createStructuredSelector({ safe: safeSelector, tokens: safeActiveTokensSelector, + blacklistedTokens: safeBlacklistedTokensSelector, }) From 70fadd51ee07a04c1b1ff5ca418382aed965efbe Mon Sep 17 00:00:00 2001 From: Paul Cowgill Date: Mon, 9 Dec 2019 03:43:47 -0600 Subject: [PATCH 028/116] Typo fix (#326) --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 332cf634..1210c8bf 100644 --- a/readme.md +++ b/readme.md @@ -106,7 +106,7 @@ Add additional notes about how to deploy this on a live system * [React](https://reactjs.org/) - A JS library for building user interfaces * [Material UI 1.X](https://material-ui-next.com/) - React components that implement Google's Material Design * [redux, immutable, reselect, final-form](https://redux.js.org/) - React ecosystem libraries -* [Flow](https://flow.org/) - Sttic Type Checker +* [Flow](https://flow.org/) - Static Type Checker ## Contributing From 8382907b804dc6f7b7e5029483721320ef9f074b Mon Sep 17 00:00:00 2001 From: Mikhail Mikheev Date: Mon, 9 Dec 2019 16:19:30 +0400 Subject: [PATCH 029/116] Fix security vulnerability: Remove uglifyjs, use terser plugin (#327) * Remove uglifyjs, use terser plugin * fix css-loader config --- config/webpack.config.dev.js | 1 + config/webpack.config.prod.js | 156 +- package.json | 46 +- yarn.lock | 3293 +++++++++++++++++---------------- 4 files changed, 1767 insertions(+), 1729 deletions(-) diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js index 5dbbdeee..81b46c6f 100644 --- a/config/webpack.config.dev.js +++ b/config/webpack.config.dev.js @@ -134,6 +134,7 @@ module.exports = { loader: 'file-loader', options: { name: 'img/[hash].[ext]', + esModule: false }, }, ], diff --git a/config/webpack.config.prod.js b/config/webpack.config.prod.js index 93b6e68e..d0a8e7d1 100644 --- a/config/webpack.config.prod.js +++ b/config/webpack.config.prod.js @@ -1,43 +1,44 @@ /*eslint-disable*/ -const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin -const autoprefixer = require('autoprefixer') -const cssmixins = require('postcss-mixins') -const cssvars = require('postcss-simple-vars') -const webpack = require('webpack') +const BundleAnalyzerPlugin = require("webpack-bundle-analyzer") + .BundleAnalyzerPlugin +const autoprefixer = require("autoprefixer") +const cssmixins = require("postcss-mixins") +const cssvars = require("postcss-simple-vars") +const webpack = require("webpack") -const UglifyJSPlugin = require('uglifyjs-webpack-plugin') -const HtmlWebpackPlugin = require('html-webpack-plugin') -const ExtractTextPlugin = require('extract-text-webpack-plugin') -const ManifestPlugin = require('webpack-manifest-plugin') -const MiniCssExtractPlugin = require('mini-css-extract-plugin') -const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin') +const TerserPlugin = require("terser-webpack-plugin") +const HtmlWebpackPlugin = require("html-webpack-plugin") +const ExtractTextPlugin = require("extract-text-webpack-plugin") +const ManifestPlugin = require("webpack-manifest-plugin") +const MiniCssExtractPlugin = require("mini-css-extract-plugin") +const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin") -const url = require('url') -const paths = require('./paths') -const getClientEnvironment = require('./env') +const url = require("url") +const paths = require("./paths") +const getClientEnvironment = require("./env") const cssvariables = require(`${paths.appSrc}/theme/variables`) const postcssPlugins = [ autoprefixer({ overrideBrowserslist: [ - '>1%', - 'last 4 versions', - 'Firefox ESR', - 'not ie < 9', // React doesn't support IE8 anyway - ], + ">1%", + "last 4 versions", + "Firefox ESR", + "not ie < 9" // React doesn't support IE8 anyway + ] }), cssmixins, cssvars({ variables() { return Object.assign({}, cssvariables) }, - silent: true, - }), + silent: true + }) ] function ensureSlash(path, needsSlash) { - const hasSlash = path.endsWith('/') + const hasSlash = path.endsWith("/") if (hasSlash && !needsSlash) { return path.substr(path, path.length - 1) } else if (!hasSlash && needsSlash) { @@ -53,7 +54,7 @@ function ensureSlash(path, needsSlash) { // like /todos/42/static/js/bundle.7289d.js. We have to know the root. const homepagePath = require(paths.appPackageJson).homepage // var homepagePathname = homepagePath ? url.parse(homepagePath).pathname : '/'; -const homepagePathname = '/' +const homepagePathname = "/" // Webpack uses `publicPath` to determine where the app is being served from. // It requires a trailing slash, or the file assets will get an incorrect path. const publicPath = ensureSlash(homepagePathname, true) @@ -66,20 +67,20 @@ const env = getClientEnvironment(publicUrl) // Assert this just to be safe. // Development builds of React are slow and not intended for production. -if (env['process.env'].NODE_ENV !== '"production"') { - throw new Error('Production builds must have NODE_ENV=production.') +if (env["process.env"].NODE_ENV !== '"production"') { + throw new Error("Production builds must have NODE_ENV=production.") } // This is the production configuration. // It compiles slowly and is focused on producing a fast and minimal bundle. // The development configuration is different and lives in a separate file. module.exports = { - mode: 'production', + mode: "production", // Don't attempt to continue if there are any errors. bail: true, optimization: { splitChunks: { - chunks: 'all', + chunks: "all" /* https://stackoverflow.com/questions/48985780/webpack-4-create-vendor-chunk cacheGroups: { vendor: { @@ -92,31 +93,55 @@ module.exports = { }, */ }, - minimizer: [new OptimizeCSSAssetsPlugin({})], + minimize: true, + minimizer: [ + new TerserPlugin({ + terserOptions: { + parse: { + ecma: 8 + }, + compress: { + ecma: 5, + warnings: false, + comparisons: false, + inline: 2, + }, + mangle: { + safari10: true + }, + output: { + ecma: 5, + comments: false, + ascii_only: true + } + } + }), + new OptimizeCSSAssetsPlugin({}) + ] }, - entry: [require.resolve('./polyfills'), paths.appIndexJs], + entry: [require.resolve("./polyfills"), paths.appIndexJs], output: { // The build folder. path: paths.appBuild, // Generated JS file names (with nested folders). // There will be one main bundle, and one file per asynchronous chunk. // We don't currently advertise code splitting but Webpack supports it. - filename: 'static/js/[name].[chunkhash:8].js', - chunkFilename: 'static/js/[name].[chunkhash:8].chunk.js', + filename: "static/js/[name].[chunkhash:8].js", + chunkFilename: "static/js/[name].[chunkhash:8].chunk.js", // We inferred the "public path" (such as / or /my-project) from homepage. - publicPath, + publicPath }, resolve: { - modules: [paths.appSrc, 'node_modules', paths.appContracts], + modules: [paths.appSrc, "node_modules", paths.appContracts], // These are the reasonable defaults supported by the Node ecosystem. // We also include JSX as a common component filename extension to support // some tools, although we do not recommend using it, see: // https://github.com/facebookincubator/create-react-app/issues/290 - extensions: ['.js', '.json', '.jsx'], + extensions: [".js", ".json", ".jsx"], alias: { - '~': paths.appSrc, - '#': paths.appContracts, - }, + "~": paths.appSrc, + "#": paths.appContracts + } }, module: { @@ -125,43 +150,44 @@ module.exports = { test: /\.(js|jsx)$/, include: paths.appSrc, use: { - loader: 'babel-loader', - }, + loader: "babel-loader" + } }, { test: /\.(scss|css)$/, use: [ MiniCssExtractPlugin.loader, { - loader: 'css-loader', + loader: "css-loader", options: { importLoaders: 1, - modules: true, - }, + modules: true + } }, { - loader: 'postcss-loader', + loader: "postcss-loader", options: { sourceMap: true, - plugins: postcssPlugins, - }, - }, - ], + plugins: postcssPlugins + } + } + ] }, - { test: /\.(woff|woff2)$/, loader: 'url-loader?limit=100000' }, + { test: /\.(woff|woff2)$/, loader: "url-loader?limit=100000" }, { test: /\.(jpe?g|png|svg)$/i, exclude: /node_modules/, use: [ { - loader: 'file-loader', + loader: "file-loader", options: { - name: 'img/[hash].[ext]', - }, - }, - ], - }, - ], + name: "img/[hash].[ext]", + esModule: false + } + } + ] + } + ] }, plugins: [ // Generates an `index.html` file with the