import '@shoelace-style/shoelace/dist/components/input/input'; import '@shoelace-style/shoelace/dist/components/icon/icon'; import { type EventEmitter } from '../../internal/decorators'; import EhrElement from '../EhrElement'; export default class MbCount extends EhrElement { data: number; label: string; placeholder: string; id: string; required: boolean; autocomplete: boolean; disabled: boolean; max: number | string | null; min: number | string | null; _mbInput: EventEmitter; handleInput(e: CustomEvent): void; reportValidity(): boolean; render(): import("lit-element").TemplateResult; }