import { CustomElement } from '../../Abstracts/CustomElement'; import type { IPageContentElementProps } from './IPageContentElementProps'; declare const PageContentElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Insetable").IInsetableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Alignable").IAlignableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Page Content - The main content area of a page where the primary information or functionality is presented. * * @element mosaik-page-content * * @slot - The default slot for placing child elements. * * @example * ```html * *

Main page content goes here.

*
* ``` * * @public */ export declare class PageContentElement extends PageContentElement_base implements IPageContentElementProps { private _fullWidth; /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * Gets or sets the `fullWidth` property. * When true, the content expands to fill the full viewport width, * breaking out of the page's max-width constraint. * * The actual sizing is handled via CSS custom properties set by the parent PageElement. * * @public * @attr */ get fullWidth(): boolean; set fullWidth(value: boolean); } /** * @public */ export declare namespace PageContentElement { type Props = IPageContentElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-page-content': PageContentElement; } } export {}; //# sourceMappingURL=PageContentElement.d.ts.map