import { CustomElement } from '../../Abstracts/CustomElement'; import type { IExpanderSubHeaderElementProps } from './IExpanderSubHeaderElementProps'; declare const ExpanderSubHeaderElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Expander Sub Header - A component that represents a sub-header within an expander element. * * @description This element is used as a sub-header within an expander component, allowing for additional contextual information or styling. * * @name ExpanderSubHeader * @element mosaik-expander-sub-header * @category Grouping * * @slot text - The slot for placing sub-header content. * * @cssprop {Color} --expander-sub-header-background-color - The background-color property for the sub header. * @cssprop {Color} --expander-sub-header-border-color - The border-color property for the sub header. * @cssprop {String} --expander-sub-header-font-family - The font-family property for the sub header text. * @cssprop {String} --expander-sub-header-font-letter-spacing - The letter-spacing property for the sub header text. * @cssprop {String} --expander-sub-header-font-line-height - The line-height property for the sub header text. * @cssprop {String} --expander-sub-header-font-size - The font-size property for the sub header text. * @cssprop {String} --expander-sub-header-font-text-decoration - The text-decoration property for the sub header text. * @cssprop {String} --expander-sub-header-font-text-transform - The text-transform property for the sub header text. * @cssprop {String} --expander-sub-header-font-weight - The font-weight property for the sub header text. * @cssprop {Color} --expander-sub-header-foreground-color - The foreground-color property for the sub header. * @cssprop {String} --expander-sub-header-gap - The sub header gap CSS custom property. * @cssprop {String} --expander-sub-header-padding-bottom - The sub header padding bottom CSS custom property. * @cssprop {String} --expander-sub-header-padding-left - The sub header padding left CSS custom property. * @cssprop {String} --expander-sub-header-padding-right - The sub header padding right CSS custom property. * @cssprop {String} --expander-sub-header-padding-top - The sub header padding top CSS custom property. * @cssprop {String} --expander-sub-header-shadow - The sub header shadow CSS custom property. * @cssprop {String} --expander-sub-header-shadow-blur - The sub header shadow blur CSS custom property. * @cssprop {String} --expander-sub-header-shadow-color - The sub header shadow color CSS custom property. * @cssprop {String} --expander-sub-header-shadow-offset-x - The sub header shadow offset x CSS custom property. * @cssprop {String} --expander-sub-header-shadow-offset-y - The sub header shadow offset y CSS custom property. * @cssprop {String} --expander-sub-header-shadow-spread - The sub header shadow spread CSS custom property. * @cssprop {String} --expander-sub-header-transition-duration - The sub header transition duration CSS custom property. * @cssprop {String} --expander-sub-header-transition-mode - The sub header transition mode CSS custom property. * @cssprop {String} --expander-sub-header-transition-property - The sub header transition property CSS custom property. * @cssprop {String} --expander-sub-header-translate - The sub header translate CSS custom property. * * @dependency mosaik-text - The Text element. * * @example * Using the text attribute: * ```html * * ``` * * @example * With custom slotted content: * ```html * * * * ``` * * @public */ export declare class ExpanderSubHeaderElement extends ExpanderSubHeaderElement_base implements IExpanderSubHeaderElementProps { private _text; /** * @public */ constructor(); /** * Returns the `is` property. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `text` property. * * @public * @attr */ get text(): string; set text(value: string); } /** * @public */ export declare namespace ExpanderSubHeaderElement { type Props = IExpanderSubHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-expander-sub-header': ExpanderSubHeaderElement; } } export {}; //# sourceMappingURL=ExpanderSubHeaderElement.d.ts.map