import { CustomElement } from '../../Abstracts/CustomElement'; import type { IDialogHeaderTextElementProps } from './IDialogHeaderTextElementProps'; declare const DialogHeaderTextElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/TextFormattable").ITextFormattableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * DialogHeaderText - The main heading within a dialog header. * * @description * Displays the primary title text of a dialog. * Text must be set via JavaScript (the `text` property is not an HTML attribute). * Place this element inside `mosaik-dialog-header` using the `header` slot. * * @name DialogHeaderText * @element mosaik-dialog-header-text * @category Overlays * * @example * Title text inside dialog header: * ```html * * * * * ``` * * @public */ export declare class DialogHeaderTextElement extends DialogHeaderTextElement_base implements IDialogHeaderTextElementProps { 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 DialogHeaderTextElement { type Props = IDialogHeaderTextElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-dialog-header-text': DialogHeaderTextElement; } } export {}; //# sourceMappingURL=DialogHeaderTextElement.d.ts.map