import { LitElement } from 'lit'; /** * @element nve-page-panel-footer * @description Provides a fixed action area at the bottom of a page panel for persistent controls or status information. * @documentation https://nvidia.github.io/elements/docs/elements/page/ * @entrypoint \@nvidia-elements/core/page * @since 1.15.0 * @slot - default slot for the page-panel footer * @cssprop --border-top * @cssprop --padding * @cssprop --gap * @cssprop --min-height * @aria https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/region_role * */ export declare class PagePanelFooter extends LitElement { static styles: import("lit").CSSResult[]; static readonly metadata: { tag: string; version: string; }; /** @private */ slot: string; render(): import("lit").TemplateResult<1>; }