import { LayoutElement } from '../Abstracts/LayoutElement'; import type { IAbsoluteElementProps } from './IAbsoluteElementProps'; declare const AbsoluteElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & (abstract new (...args: Array) => import("../../../Behaviors/Fitable").IFitableProps) & typeof LayoutElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * Absolute - A layout container for absolute positioning of child elements with precise coordinate control. * * @description * The Absolute layout component provides a container where child elements can be positioned using absolute * coordinates relative to the container boundaries. It establishes a positioning context for child elements * that use absolute positioning, allowing for precise pixel-level placement and layering control. This * component is essential for complex layouts requiring exact positioning, overlays, tooltips, custom UI * arrangements, and scenarios where CSS positioning alone is insufficient. The container maintains its * own coordinate system and provides a stable reference point for absolutely positioned children. * Perfect for dashboard layouts, image annotations, drag-and-drop interfaces, and custom positioning scenarios. * * @name Absolute * @element mosaik-absolute * @category Layouts * * @slot - The default slot for placing absolutely positioned child elements. * * @example * ```html * * *
Positioned at (50, 100)
*
* *
Positioned at (200, 50)
*
*
* ``` * * @public */ export declare class AbsoluteElement extends AbsoluteElement_base implements IAbsoluteElementProps { /** * @public */ constructor(); /** * Returns the `is` property. * The `is` property represents natural name of this element. * * @public * @static * @override * @readonly */ static get is(): string; } /** * @public */ export declare namespace AbsoluteElement { type Props = IAbsoluteElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-absolute': AbsoluteElement; } } export {}; //# sourceMappingURL=AbsoluteElement.d.ts.map