import { CSSResultGroup } from "lit"; import { SigveloElement } from "@mcp-b/wc-support/base/sigvelo-element"; //#region src/components/selection-summary/selection-summary.d.ts /** * * * @summary Announces how many items are selected using configurable singular and plural labels. * @tag sigvelo-selection-summary * @documentation https://design-system.sigvelo.com/docs/components/selection-summary * @status stable * @since 1.0 * * @csspart text - The live status text. */ declare class SigveloSelectionSummary extends SigveloElement { static styles: CSSResultGroup; /** Number of selected items. */ count: number; /** Message shown when no items are selected. */ emptyLabel: string; /** Label used when exactly one item is selected. */ singularLabel: string; /** Label used when multiple items are selected. */ pluralLabel: string; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "sigvelo-selection-summary": SigveloSelectionSummary; } } //#endregion export { SigveloSelectionSummary as t };