import { LitElement, type TemplateResult } from 'lit'; /** * Represents a group of items for a dropdown component. * @slot * Content for the group of dropdown items */ export declare class PfV5DropdownGroup extends LitElement { static readonly styles: CSSStyleSheet[]; static readonly shadowRootOptions: ShadowRootInit; /** * The label for the group of dropdown items. */ label?: string; render(): TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'pf-v5-dropdown-group': PfV5DropdownGroup; } }