import type { Meta, StoryObj } from '@storybook/react';
import { ThemeProvider } from './ThemeProvider';
/**
*
ThemeProvider is a wrapper of Material UI's ThemeProvider.
Wrap it around the root of your application to provide the theme settings to all the components underneath.
```javascript
import { ThemeProvider, CssBaseline, themeWeb, themeDesktop } from '@galaxy-ds/core';
import { StylesProvider } from '@material-ui/core/styles'
```
```html
```
*/
declare const meta: Meta;
export default meta;
type Story = StoryObj;
export declare const Desktop: Story;
/**
* Application now get the styles of web theme when `theme` argument set to `themeWeb`.
*/
export declare const Web: Story;