import { CustomElement } from '../../Abstracts/CustomElement'; import { IExpanderHeaderElementProps } from './IExpanderHeaderElementProps'; declare const ExpanderHeaderElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * ExpanderHeader - A component that represents a header within an expander element. * * @description * This element is used as a header within an expander component, allowing for the display of titles or key information. * * @name ExpanderHeader * @element mosaik-expander-header * @category Grouping * * @slot text - The slot for placing header content. * * @cssprop {Color} --expander-header-background-color - The background-color property for the header. * @cssprop {Color} --expander-header-border-color - The border-color property for the header. * @cssprop {String} --expander-header-font-family - The font-family property for the header text. * @cssprop {String} --expander-header-font-letter-spacing - The letter-spacing property for the header text. * @cssprop {String} --expander-header-font-line-height - The line-height property for the header text. * @cssprop {String} --expander-header-font-size - The font-size property for the header text. * @cssprop {String} --expander-header-font-text-decoration - The text-decoration property for the header text. * @cssprop {String} --expander-header-font-text-transform - The text-transform property for the header text. * @cssprop {String} --expander-header-font-weight - The font-weight property for the header text. * @cssprop {Color} --expander-header-foreground-color - The foreground-color property for the header. * @cssprop {String} --expander-header-gap - The header gap CSS custom property. * @cssprop {String} --expander-header-padding-bottom - The header padding bottom CSS custom property. * @cssprop {String} --expander-header-padding-left - The header padding left CSS custom property. * @cssprop {String} --expander-header-padding-right - The header padding right CSS custom property. * @cssprop {String} --expander-header-padding-top - The header padding top CSS custom property. * @cssprop {String} --expander-header-shadow - The header shadow CSS custom property. * @cssprop {String} --expander-header-shadow-blur - The header shadow blur CSS custom property. * @cssprop {String} --expander-header-shadow-color - The header shadow color CSS custom property. * @cssprop {String} --expander-header-shadow-offset-x - The header shadow offset x CSS custom property. * @cssprop {String} --expander-header-shadow-offset-y - The header shadow offset y CSS custom property. * @cssprop {String} --expander-header-shadow-spread - The header shadow spread CSS custom property. * @cssprop {String} --expander-header-transition-duration - The header transition duration CSS custom property. * @cssprop {String} --expander-header-transition-mode - The header transition mode CSS custom property. * @cssprop {String} --expander-header-transition-property - The header transition property CSS custom property. * @cssprop {String} --expander-header-translate - The 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 ExpanderHeaderElement extends ExpanderHeaderElement_base implements IExpanderHeaderElementProps { 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 ExpanderHeaderElement { type Props = IExpanderHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-expander-header': ExpanderHeaderElement; } } export {}; //# sourceMappingURL=ExpanderHeaderElement.d.ts.map