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