import { LitElement } from 'lit'; /** * @element nve-dialog-header * @description Displays the title and contextual information at the top of a dialog to orient users to the dialog's purpose. * @since 0.6.0 * @entrypoint \@nvidia-elements/core/dialog * @slot - default slot for the dialog header * @cssprop --border-bottom * @cssprop --padding * @aria https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/ */ export declare class DialogHeader extends LitElement { static styles: import('lit').CSSResult[]; static readonly metadata: { tag: string; version: string; parents: string[]; }; render(): import('lit').TemplateResult<1>; connectedCallback(): void; }