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. * * @cssprop {String} --page-content-font-family - The content font family CSS custom property. * @cssprop {String} --page-content-font-letter-spacing - The content font letter spacing CSS custom property. * @cssprop {String} --page-content-font-line-height - The content font line height CSS custom property. * @cssprop {String} --page-content-font-size - The content font size CSS custom property. * @cssprop {String} --page-content-font-text-decoration - The content font text decoration CSS custom property. * @cssprop {String} --page-content-font-text-transform - The content font text transform CSS custom property. * @cssprop {String} --page-content-font-weight - The content font weight CSS custom property. * @cssprop {String} --page-content-gap - The content gap CSS custom property. * @cssprop {String} --page-content-inset - The content inset CSS custom property. * @cssprop {String} --page-content-padding-bottom - The content padding bottom CSS custom property. * @cssprop {String} --page-content-padding-left - The content padding left CSS custom property. * @cssprop {String} --page-content-padding-right - The content padding right CSS custom property. * @cssprop {String} --page-content-padding-top - The content padding top CSS custom property. * @cssprop {String} --page-content-shadow - The content shadow CSS custom property. * @cssprop {String} --page-content-shadow-blur - The content shadow blur CSS custom property. * @cssprop {String} --page-content-shadow-color - The content shadow color CSS custom property. * @cssprop {String} --page-content-shadow-offset-x - The content shadow offset x CSS custom property. * @cssprop {String} --page-content-shadow-offset-y - The content shadow offset y CSS custom property. * @cssprop {String} --page-content-shadow-spread - The content shadow spread CSS custom property. * @cssprop {String} --page-content-transition-duration - The content transition duration CSS custom property. * @cssprop {String} --page-content-transition-mode - The content transition mode CSS custom property. * @cssprop {String} --page-content-transition-property - The content transition property CSS custom property. * @cssprop {String} --page-content-translate - The content translate CSS custom property. * * @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