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