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