import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type ThemeSwitcherProps = typeof __propDef.props; export type ThemeSwitcherEvents = typeof __propDef.events; export type ThemeSwitcherSlots = typeof __propDef.slots; export default class ThemeSwitcher extends SvelteComponentTyped { } export {};