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