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