import { CustomElement } from "../../internal/custom-element.js"; import { PropertyValues, TemplateResult } from "lit"; declare global { interface HTMLElementTagNameMap { 'odx-page-header-title': OdxPageHeaderTitle; } } /** * @summary The page header title component is used to display the logo and title of the page header. * @status rc * @since 1.0 * * @dependency odx-logo * * @slot - The content of the page header title. */ declare class OdxPageHeaderTitle extends CustomElement { #private; static tagName: string; static styles: import("lit").CSSResult[]; /** * Indicates whether the page header title uses the compact logo type. */ compact: boolean; /** * Indicates whether the page header title is interactive (focusable and clickable). * When `true`, the page header title will have the ARIA role `button` and respond to keyboard events. */ interactive: boolean; /** * The URL that the element links to. * @see The {@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement/href | `href`} attribute */ href: string; connectedCallback(): void; click(): void; protected willUpdate(props: PropertyValues): void; protected updated(props: PropertyValues): void; protected render(): TemplateResult; } export { OdxPageHeaderTitle };