import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { ISheetHeaderElementProps } from './ISheetHeaderElementProps'; declare const SheetHeaderElement_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; /** * SheetHeader - The header section within a bottom sheet. * * @description * Renders the sheet title and optional subtitle. Text and subText must be set * via JavaScript since they are @Property (not HTML attributes). * * @name SheetHeader * @element mosaik-sheet-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 * Sheet header with slotted title: * ```html * * * * ``` * * @public */ export declare class SheetHeaderElement extends SheetHeaderElement_base implements ISheetHeaderElementProps, ISlottable { /** * Controller for inheriting properties from parent SheetElement. */ 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. * * @public */ get text(): string; set text(value: string); /** * Gets or sets the `subText` property. * * @public */ get subText(): string; set subText(value: string); onApplyTemplate(): void; } /** * @public */ export declare namespace SheetHeaderElement { type Props = ISheetHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-sheet-header': SheetHeaderElement; } } export {}; //# sourceMappingURL=SheetHeaderElement.d.ts.map