import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { IDrawerHeaderElementProps } from './IDrawerHeaderElementProps'; declare const DrawerHeaderElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/TextFormattable").ITextFormattableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * DrawerHeader - The header section within a drawer containing title and sub-title. * * @description * Renders the drawer title and optional subtitle. Text and subText must be set * via JavaScript since they are @Property (not HTML attributes). * * @name DrawerHeader * @element mosaik-drawer-header * @category Overlays * * @slot - The default slot. * @slot prefix - The prefix slot. * @slot header - The header slot. * @slot subHeader - The subHeader slot. * @slot suffix - The suffix slot. * * @example * Drawer header with slotted title: * ```html * * * * * ``` * * @public */ export declare class DrawerHeaderElement extends DrawerHeaderElement_base implements IDrawerHeaderElementProps, ISlottable { private readonly _inheritance; private _text; private _subText; /** * @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. * When used inside a Drawer, inherits the drawer's header unless explicitly set. * * @public */ get text(): string; set text(value: string); /** * Gets or sets the `subText` property. * When used inside a Drawer, inherits the drawer's subHeader unless explicitly set. * * @public */ get subText(): string; set subText(value: string); onApplyTemplate(): void; } /** * @public */ export declare namespace DrawerHeaderElement { type Props = IDrawerHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-drawer-header': DrawerHeaderElement; } } export {}; //# sourceMappingURL=DrawerHeaderElement.d.ts.map