/** * Copyright Aquera Inc 2023 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { CSSResultArray, TemplateResult } from 'lit'; import NileElement from '../internal/nile-element'; /** * Nile title component. * * @tag nile-title * */ export declare class NileTitle extends NileElement { headerText: string; pageTitle: string; /** * The styles for nile-title * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; /** * Called when the component is updated */ protected updated(_changedProperties: Map): void; /** * Updates the document title based on pageTitle or headerText */ private updateDocumentTitle; /** * Render method * @slot This is a slot test */ render(): TemplateResult; } export default NileTitle; declare global { interface HTMLElementTagNameMap { 'nile-title': NileTitle; } }