import { CustomElement } from '../../Abstracts/CustomElement'; import type { IPagePreHeaderElementProps } from './IPagePreHeaderElementProps'; declare const PagePreHeaderElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Insetable").IInsetableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Page Pre Header - An optional secondary header area within a page, often used to display additional details, features, or related information. * * @element mosaik-page-pre-header * * @slot - The default slot. * * @cssprop {String} --page-pre-header-font-family - The pre header font family CSS custom property. * @cssprop {String} --page-pre-header-font-letter-spacing - The pre header font letter spacing CSS custom property. * @cssprop {String} --page-pre-header-font-line-height - The pre header font line height CSS custom property. * @cssprop {String} --page-pre-header-font-size - The pre header font size CSS custom property. * @cssprop {String} --page-pre-header-font-text-decoration - The pre header font text decoration CSS custom property. * @cssprop {String} --page-pre-header-font-text-transform - The pre header font text transform CSS custom property. * @cssprop {String} --page-pre-header-font-weight - The pre header font weight CSS custom property. * @cssprop {String} --page-pre-header-gap - The pre header gap CSS custom property. * @cssprop {String} --page-pre-header-inset - The pre header inset CSS custom property. * @cssprop {String} --page-pre-header-padding-bottom - The pre header padding bottom CSS custom property. * @cssprop {String} --page-pre-header-padding-left - The pre header padding left CSS custom property. * @cssprop {String} --page-pre-header-padding-right - The pre header padding right CSS custom property. * @cssprop {String} --page-pre-header-padding-top - The pre header padding top CSS custom property. * @cssprop {String} --page-pre-header-shadow - The pre header shadow CSS custom property. * @cssprop {String} --page-pre-header-shadow-blur - The pre header shadow blur CSS custom property. * @cssprop {String} --page-pre-header-shadow-color - The pre header shadow color CSS custom property. * @cssprop {String} --page-pre-header-shadow-offset-x - The pre header shadow offset x CSS custom property. * @cssprop {String} --page-pre-header-shadow-offset-y - The pre header shadow offset y CSS custom property. * @cssprop {String} --page-pre-header-shadow-spread - The pre header shadow spread CSS custom property. * @cssprop {String} --page-pre-header-transition-duration - The pre header transition duration CSS custom property. * @cssprop {String} --page-pre-header-transition-mode - The pre header transition mode CSS custom property. * @cssprop {String} --page-pre-header-transition-property - The pre header transition property CSS custom property. * @cssprop {String} --page-pre-header-translate - The pre header translate CSS custom property. * * @example * ```html * *
Alert: System maintenance scheduled tonight.
*
* ``` * * @public */ export declare class PagePreHeaderElement extends PagePreHeaderElement_base implements IPagePreHeaderElementProps { /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; } /** * @public */ export declare namespace PagePreHeaderElement { type Props = IPagePreHeaderElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-page-pre-header': PagePreHeaderElement; } } export {}; //# sourceMappingURL=PagePreHeaderElement.d.ts.map