import { LitElement } from 'lit'; /** * @element nve-page * @description Provide a consistent page structure across the applications, ensuring a seamless user experience. * @entrypoint \@nvidia-elements/core/page * @since 1.15.0 * @slot - The central content area of the page, where the primary focus of the user's attention should be. * @slot header - The topmost section of the page, typically containing navigation, branding, or other global elements. * @slot subheader - A secondary section below the header, often used for breadcrumbs, filters, or other contextual information. * @slot left-aside - A narrow section on the left side of the page, commonly used for navigation, filters, or other secondary content. * @slot left - The main content area on the left side of the page, typically containing primary navigation or features. * @slot bottom - A section for extra tooling outputs such as console outputs. * @slot right - The main content area on the right side of the page, typically containing secondary navigation or features. * @slot right-aside - A narrow section on the right side of the page, commonly used for navigation, filters, or other secondary content. * @slot subfooter - A secondary section below the main content area, often used for more information or calls to action. * @slot footer - The bottommost section of the page, typically containing global elements, such as copyright information. * @cssprop --padding * @cssprop --background * @cssprop --color * @cssprop --border * @cssprop --border-radius * @cssprop --box-shadow * @cssprop --min-height * @aria https://www.w3.org/WAI/ARIA/apg/patterns/landmarks/ * @responsive false * */ export declare class Page extends LitElement { static styles: import('lit').CSSResult[]; static readonly metadata: { tag: string; version: string; }; static elementDefinitions: {}; /** * Enables the page to use the document content scroll rather than its internal fixed scroll. */ documentScroll: boolean; /** @private */ _internals: ElementInternals; render(): import('lit').TemplateResult<1>; connectedCallback(): void; }