import { SvelteComponentTyped } from "svelte";
import type { ComponentProps } from 'svelte';
import Switch from './Switch.svelte';
declare const __propDef: {
    props: {
        [x: string]: any;
        classes?: ({
            icon?: string;
        } & ComponentProps<Switch>["classes"]) | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ThemeSwitchProps = typeof __propDef.props;
export type ThemeSwitchEvents = typeof __propDef.events;
export type ThemeSwitchSlots = typeof __propDef.slots;
export default class ThemeSwitch extends SvelteComponentTyped<ThemeSwitchProps, ThemeSwitchEvents, ThemeSwitchSlots> {
}
export {};
