import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type LightSwitchProps = typeof __propDef.props; export declare type LightSwitchEvents = typeof __propDef.events; export declare type LightSwitchSlots = typeof __propDef.slots; export default class LightSwitch extends SvelteComponentTyped { } export {};