import { CustomElement } from '../../Abstracts/CustomElement'; import type { IPagePreContentElementProps } from './IPagePreContentElementProps'; declare const PagePreContentElement_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 Content - An optional secondary content area within a page, often used to display additional details, features, or related information. * * @element mosaik-page-pre-content * * @slot - The default slot. * * @cssprop {String} --page-pre-content-font-family - The pre content font family CSS custom property. * @cssprop {String} --page-pre-content-font-letter-spacing - The pre content font letter spacing CSS custom property. * @cssprop {String} --page-pre-content-font-line-height - The pre content font line height CSS custom property. * @cssprop {String} --page-pre-content-font-size - The pre content font size CSS custom property. * @cssprop {String} --page-pre-content-font-text-decoration - The pre content font text decoration CSS custom property. * @cssprop {String} --page-pre-content-font-text-transform - The pre content font text transform CSS custom property. * @cssprop {String} --page-pre-content-font-weight - The pre content font weight CSS custom property. * @cssprop {String} --page-pre-content-gap - The pre content gap CSS custom property. * @cssprop {String} --page-pre-content-inset - The pre content inset CSS custom property. * @cssprop {String} --page-pre-content-padding-bottom - The pre content padding bottom CSS custom property. * @cssprop {String} --page-pre-content-padding-left - The pre content padding left CSS custom property. * @cssprop {String} --page-pre-content-padding-right - The pre content padding right CSS custom property. * @cssprop {String} --page-pre-content-padding-top - The pre content padding top CSS custom property. * @cssprop {String} --page-pre-content-shadow - The pre content shadow CSS custom property. * @cssprop {String} --page-pre-content-shadow-blur - The pre content shadow blur CSS custom property. * @cssprop {String} --page-pre-content-shadow-color - The pre content shadow color CSS custom property. * @cssprop {String} --page-pre-content-shadow-offset-x - The pre content shadow offset x CSS custom property. * @cssprop {String} --page-pre-content-shadow-offset-y - The pre content shadow offset y CSS custom property. * @cssprop {String} --page-pre-content-shadow-spread - The pre content shadow spread CSS custom property. * @cssprop {String} --page-pre-content-transition-duration - The pre content transition duration CSS custom property. * @cssprop {String} --page-pre-content-transition-mode - The pre content transition mode CSS custom property. * @cssprop {String} --page-pre-content-transition-property - The pre content transition property CSS custom property. * @cssprop {String} --page-pre-content-translate - The pre content translate CSS custom property. * * @example * ```html * * * * ``` * * @public */ export declare class PagePreContentElement extends PagePreContentElement_base implements IPagePreContentElementProps { /** * @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 PagePreContentElement { type Props = IPagePreContentElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-page-pre-content': PagePreContentElement; } } export {}; //# sourceMappingURL=PagePreContentElement.d.ts.map