import { LitElement } from 'lit'; /** * @element nve-dropdown-header * @description Displays a title or contextual label at the top of a dropdown menu to categorize its contents. * @since 0.36.0 * @entrypoint \@nvidia-elements/core/dropdown * @slot - default slot for the dropdown header * @cssprop --border-bottom * @cssprop --padding * @aria https://www.w3.org/WAI/ARIA/apg/patterns/menubar/ */ export declare class DropdownHeader extends LitElement { static styles: import('lit').CSSResult[]; static readonly metadata: { tag: string; version: string; parents: string[]; }; render(): import('lit').TemplateResult<1>; connectedCallback(): void; }