import { LitElement } from 'lit'; /** * @element nve-drawer-footer * @description Provides a fixed action area at the bottom of a drawer for primary actions such as save or cancel. * @since 0.16.0 * @entrypoint \@nvidia-elements/core/drawer * @slot - default slot for the drawer footer * @cssprop --border-top * @cssprop --padding * @cssprop --gap * @cssprop --min-height * @aria https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/ */ export declare class DrawerFooter extends LitElement { static styles: import('lit').CSSResult[]; static readonly metadata: { tag: string; version: string; parents: string[]; }; render(): import('lit').TemplateResult<1>; connectedCallback(): void; }