UNPKG

igniteui-webcomponents

Version:

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.

20 lines (19 loc) 540 B
import { LitElement } from 'lit'; /** * Represents a header item in an igc-select component. * * @element igc-select-header * * @slot - Renders the header. */ export default class IgcSelectHeaderComponent extends LitElement { static readonly tagName = "igc-select-header"; static styles: import("lit").CSSResult[]; static register(): void; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-select-header': IgcSelectHeaderComponent; } }