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.

21 lines (20 loc) 559 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; constructor(); protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'igc-select-header': IgcSelectHeaderComponent; } }