/** @typedef {typeof __propDef.props} InvertModeProps */ /** @typedef {typeof __propDef.events} InvertModeEvents */ /** @typedef {typeof __propDef.slots} InvertModeSlots */ export default class InvertMode extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type InvertModeProps = typeof __propDef.props export type InvertModeEvents = typeof __propDef.events export type InvertModeSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}