@patternfly/elements
Version:
PatternFly Elements
21 lines (20 loc) • 564 B
TypeScript
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 PfDropdownGroup 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-dropdown-group': PfDropdownGroup;
}
}