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