import { LitElement } from 'lit'; /** * @element nve-dropdown-footer * @description Provides a fixed area at the bottom of a dropdown menu for extra actions or supplementary controls. * @since 0.36.0 * @entrypoint \@nvidia-elements/core/dropdown * @slot - default slot for the dropdown footer * @cssprop --border-top * @cssprop --padding * @cssprop --gap * @aria https://www.w3.org/WAI/ARIA/apg/patterns/menubar/ */ export declare class DropdownFooter extends LitElement { static styles: import('lit').CSSResult[]; static readonly metadata: { tag: string; version: string; parents: string[]; }; render(): import('lit').TemplateResult<1>; connectedCallback(): void; }