import { Meta, StoryObj } from '@storybook/web-components';
import { IThemeConfig } from '../../providers/theme/theme.types';
interface ThemeSwitcherArgs {
    'custom-class'?: string;
    'initial-theme'?: Partial<IThemeConfig>;
}
declare const meta: Meta<ThemeSwitcherArgs>;
export default meta;
type Story = StoryObj<ThemeSwitcherArgs>;
export declare const Default: Story;
export declare const ThemeTest: Story;
export declare const ShadowDomParent: Story;
