import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { IDialogHeaderElementProps } from './IDialogHeaderElementProps'; declare const DialogHeaderElement_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; /** * DialogHeader - The header section within a dialog containing title and sub-title. * * @description * Renders the dialog title and optional subtitle. Text and subText must be set via * JavaScript since they are @Property (not HTML attributes). Alternatively, place * `mosaik-dialog-header-text` and `mosaik-dialog-header-sub-text` children directly. * Place this element in the `header` slot of `mosaik-dialog`. * * @name DialogHeader * @element mosaik-dialog-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 * Dialog header with slotted title elements: * ```html * * * * * ``` * * @public */ export declare class DialogHeaderElement extends DialogHeaderElement_base implements IDialogHeaderElementProps, ISlottable { /** * Controller for inheriting properties from parent DialogElement. * Note: DialogElement only provides closeable state, not header/subHeader properties. */ 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 DialogHeaderElement { type Props = IDialogHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-dialog-header': DialogHeaderElement; } } export {}; //# sourceMappingURL=DialogHeaderElement.d.ts.map