import { SvelteComponentTyped } from "svelte"; import '@unocss/reset/tailwind.css'; import './Theme.css'; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type ThemeProps = typeof __propDef.props; export type ThemeEvents = typeof __propDef.events; export type ThemeSlots = typeof __propDef.slots; export default class Theme extends SvelteComponentTyped { } export {};