import { ISlottable } from '../../../Behaviors/Slottable'; import { CustomElement } from '../../Abstracts/CustomElement'; import { ITitleLayoutElementProps } from './ITitleLayoutElementProps'; declare const TitleLayoutElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Slottable").ISlottableProps & ISlottable) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * The `TitleLayoutElement` element. * * @element mosaik-title-layout * @category Layout * * @slot - The default slot. * @slot end - The end slot. * @slot start - The start slot. * * @csspart end - The end part. * @csspart main - The main part. * @csspart root - The root part. * @csspart start - The start part. * * @cssprop {String} --title-layout-background-color - The layout background color CSS custom property. * @cssprop {String} --title-layout-font-family - The layout font family CSS custom property. * @cssprop {String} --title-layout-font-letter-spacing - The layout font letter spacing CSS custom property. * @cssprop {String} --title-layout-font-line-height - The layout font line height CSS custom property. * @cssprop {String} --title-layout-font-size - The layout font size CSS custom property. * @cssprop {String} --title-layout-font-text-decoration - The layout font text decoration CSS custom property. * @cssprop {String} --title-layout-font-text-transform - The layout font text transform CSS custom property. * @cssprop {String} --title-layout-font-weight - The layout font weight CSS custom property. * @cssprop {String} --title-layout-gap - The layout gap CSS custom property. * @cssprop {String} --title-layout-padding-bottom - The layout padding bottom CSS custom property. * @cssprop {String} --title-layout-padding-left - The layout padding left CSS custom property. * @cssprop {String} --title-layout-padding-right - The layout padding right CSS custom property. * @cssprop {String} --title-layout-padding-top - The layout padding top CSS custom property. * @cssprop {String} --title-layout-shadow - The layout shadow CSS custom property. * @cssprop {String} --title-layout-shadow-blur - The layout shadow blur CSS custom property. * @cssprop {String} --title-layout-shadow-color - The layout shadow color CSS custom property. * @cssprop {String} --title-layout-shadow-offset-x - The layout shadow offset x CSS custom property. * @cssprop {String} --title-layout-shadow-offset-y - The layout shadow offset y CSS custom property. * @cssprop {String} --title-layout-shadow-spread - The layout shadow spread CSS custom property. * @cssprop {String} --title-layout-transition-duration - The layout transition duration CSS custom property. * @cssprop {String} --title-layout-transition-mode - The layout transition mode CSS custom property. * @cssprop {String} --title-layout-transition-property - The layout transition property CSS custom property. * @cssprop {String} --title-layout-translate - The layout translate CSS custom property. * * @example * Title layout with slotted start, center, and end content: * ```html * * * Page Title * * * ``` * * @public */ export declare class TitleLayoutElement extends TitleLayoutElement_base implements ITitleLayoutElementProps, ISlottable { /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @readonly */ static get is(): string; /** * @public * @override */ onSlotChanges(slotName?: string): void; /** * @private */ private adjustSizes; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-title-layout': TitleLayoutElement; } } export {}; //# sourceMappingURL=TitleLayoutElement.d.ts.map