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 header - The header slot. * @slot prefix - The prefix slot. * @slot subHeader - The subHeader slot. * @slot suffix - The suffix slot. * * @csspart heading - The heading part. * * @cssprop {String} --drawer-header-font-family - The header font family CSS custom property. * @cssprop {String} --drawer-header-font-letter-spacing - The header font letter spacing CSS custom property. * @cssprop {String} --drawer-header-font-line-height - The header font line height CSS custom property. * @cssprop {String} --drawer-header-font-size - The header font size CSS custom property. * @cssprop {String} --drawer-header-font-text-decoration - The header font text decoration CSS custom property. * @cssprop {String} --drawer-header-font-text-transform - The header font text transform CSS custom property. * @cssprop {String} --drawer-header-font-weight - The header font weight CSS custom property. * @cssprop {String} --drawer-header-gap - The header gap CSS custom property. * @cssprop {String} --drawer-header-padding-bottom - The header padding bottom CSS custom property. * @cssprop {String} --drawer-header-padding-left - The header padding left CSS custom property. * @cssprop {String} --drawer-header-padding-right - The header padding right CSS custom property. * @cssprop {String} --drawer-header-padding-top - The header padding top CSS custom property. * @cssprop {String} --drawer-header-shadow - The header shadow CSS custom property. * @cssprop {String} --drawer-header-shadow-blur - The header shadow blur CSS custom property. * @cssprop {String} --drawer-header-shadow-color - The header shadow color CSS custom property. * @cssprop {String} --drawer-header-shadow-offset-x - The header shadow offset x CSS custom property. * @cssprop {String} --drawer-header-shadow-offset-y - The header shadow offset y CSS custom property. * @cssprop {String} --drawer-header-shadow-spread - The header shadow spread CSS custom property. * @cssprop {String} --drawer-header-transition-duration - The header transition duration CSS custom property. * @cssprop {String} --drawer-header-transition-mode - The header transition mode CSS custom property. * @cssprop {String} --drawer-header-transition-property - The header transition property CSS custom property. * @cssprop {String} --drawer-header-translate - The header translate CSS custom property. * * @dependency mosaik-drawer-header-sub-text - The Drawer Header Sub Text element. * @dependency mosaik-drawer-header-text - The Drawer Header Text element. * * @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