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