import { CustomElement } from '../../Abstracts/CustomElement'; import type { IPageHeaderElementProps } from './IPageHeaderElementProps'; declare const PageHeaderElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Insetable").IInsetableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Page Header - The header section of a page that typically contains a title, navigation, and other relevant information. * * @element mosaik-page-header * * @slot header - The header content. * * @dependency {TextElement} - The Text element. * * @example * ```html * * My Application * * ``` * * @public */ export declare class PageHeaderElement extends PageHeaderElement_base implements IPageHeaderElementProps { private _text; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `text` property. * * @public */ get text(): string; set text(value: string); } /** * @public */ export declare namespace PageHeaderElement { type Props = IPageHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-page-header': PageHeaderElement; } } export {}; //# sourceMappingURL=PageHeaderElement.d.ts.map