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 start - The start slot. * @slot - The default slot. * @slot end - The end slot. * * @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