/** * Wrapper element for auro-counter elements in an application to provide layout structure for multiple counters. * * @slot Default - Slot for counter elements. */ export class AuroCounterWrapper extends LitElement { static get styles(): import("lit").CSSResult[]; /** * Registers the custom element with the browser. * @param {string} [name="auro-counter-wrapper"] - Custom element name to register. * @example * AuroCounterWrapper.register("custom-counter-wrapper") // registers */ static register(name?: string): void; render(): import("lit-html").TemplateResult; } import { LitElement } from "lit";