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