/** * The `auro-counter-button` element provides the increment and decrement control button used within an `auro-counter`. * @customElement auro-counter-button */ export class AuroCounterButton { static get styles(): import("lit").CSSResult[]; /** * This will register this element with the browser. * @param {string} [name="auro-counter-button"] - The name of element that you want to register to. * * @example * AuroCounterButton.register("custom-counter-button") // this will register this element to * */ static register(name?: string): void; size: string; shape: string; }