import { CssLength } from '@breadstone/mosaik-themes'; import { CustomElement } from '../../Abstracts/CustomElement'; import type { IAbsoluteItemElementProps } from './IAbsoluteItemElementProps'; declare const AbsoluteItemElement_base: (abstract new (...args: Array) => import("../../../Behaviors/Themeable").IThemeableProps) & typeof CustomElement & import("../../../Behaviors/Themeable").IThemeableCtor; /** * The `AbsoluteItemElement` element. * * @slot - The default slot for placing child elements. * * @example * ```html * *
Positioned content
*
* ``` * * @public */ export declare class AbsoluteItemElement extends AbsoluteItemElement_base implements IAbsoluteItemElementProps { private _left; private _top; private _bottom; private _right; /** * @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 `left` property. * * @public * @attr */ get left(): CssLength | null | undefined; set left(value: CssLength | null | undefined); /** * Gets or sets the `top` property. * * @public * @attr */ get top(): CssLength | null | undefined; set top(value: CssLength | null | undefined); /** * Gets or sets the `bottom` property. * * @public * @attr */ get bottom(): CssLength | null | undefined; set bottom(value: CssLength | null | undefined); /** * Gets or sets the `right` property. * * @public * @attr */ get right(): CssLength | null | undefined; set right(value: CssLength | null | undefined); /** * The onLeftPropertyChanged will be called when the `left` property changes. * * @protected */ protected onLeftPropertyChanged(prev?: CssLength | null, next?: CssLength | null): void; /** * The property change callback for the `top` property. * * @protected */ protected onTopPropertyChanged(prev?: CssLength | null, next?: CssLength | null): void; /** * The property change callback for the `bottom` property. * * @protected */ protected onBottomPropertyChanged(prev?: CssLength | null, next?: CssLength | null): void; /** * The property change callback for the `right` property. * * @protected */ protected onRightPropertyChanged(prev?: CssLength | null, next?: CssLength | null): void; } /** * @public */ export declare namespace AbsoluteItemElement { type Props = IAbsoluteItemElementProps; } /** * @public */ declare global { interface HTMLElementTagNameMap { 'mosaik-absolute-item': AbsoluteItemElement; } } export {}; //# sourceMappingURL=AbsoluteItemElement.d.ts.map