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