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