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