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