import { CustomElement } from '../../Abstracts/CustomElement'; import type { IDrawerHeaderTextElementProps } from './IDrawerHeaderTextElementProps'; declare const DrawerHeaderTextElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/TextFormattable").ITextFormattableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * DrawerHeaderText - The main heading within a drawer header. * * @description * Displays the primary title text of a drawer. * Text must be set via JavaScript (the `text` property is not an HTML attribute). * * @name DrawerHeaderText * @element mosaik-drawer-header-text * @category Overlays * * @example * Title inside a drawer header: * ```html * * * * * ``` * * @public */ export declare class DrawerHeaderTextElement extends DrawerHeaderTextElement_base implements IDrawerHeaderTextElementProps { private _text; /** * @public */ constructor(); /** * Returns the `is` property. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `text` property. * * @public */ get text(): string; set text(value: string); /** * @protected * @override */ protected onApplyTemplate(): void; } /** * @public */ export declare namespace DrawerHeaderTextElement { type Props = IDrawerHeaderTextElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-drawer-header-text': DrawerHeaderTextElement; } } export {}; //# sourceMappingURL=DrawerHeaderTextElement.d.ts.map