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