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 * * @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